diff options
author | 2009-03-06 15:08:33 +0000 | |
---|---|---|
committer | 2009-03-06 15:08:33 +0000 | |
commit | aede30aa26f6076657b3fe2e48b1c9d714148156 (patch) | |
tree | 7d2de91373e61ba710f8e86ab7f3b244f1ea8a6c /dev-cpp/cppcsp2/cppcsp2-2.0.5.ebuild | |
parent | Version bump. Dropped old. (diff) | |
download | gentoo-2-aede30aa26f6076657b3fe2e48b1c9d714148156.tar.gz gentoo-2-aede30aa26f6076657b3fe2e48b1c9d714148156.tar.bz2 gentoo-2-aede30aa26f6076657b3fe2e48b1c9d714148156.zip |
Version bump, added boost-dep (bug #227471). Dropped old version which doesn't compile with >=gcc-4.3 anyway (also bug #227471).
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Diffstat (limited to 'dev-cpp/cppcsp2/cppcsp2-2.0.5.ebuild')
-rw-r--r-- | dev-cpp/cppcsp2/cppcsp2-2.0.5.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-cpp/cppcsp2/cppcsp2-2.0.5.ebuild b/dev-cpp/cppcsp2/cppcsp2-2.0.5.ebuild new file mode 100644 index 000000000000..68589cf8a9cd --- /dev/null +++ b/dev-cpp/cppcsp2/cppcsp2-2.0.5.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/cppcsp2/cppcsp2-2.0.5.ebuild,v 1.1 2009/03/06 15:08:33 dev-zero Exp $ + +EAPI="2" + +DESCRIPTION="C++CSP2 provides easy concurrency for C++" +HOMEPAGE="http://www.cs.kent.ac.uk/projects/ofa/c++csp/" +SRC_URI="http://www.cs.kent.ac.uk/projects/ofa/c++csp/${P}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="doc" + +RDEPEND="dev-libs/boost" +DEPEND="doc? ( app-doc/doxygen ) + ${RDEPEND}" + +src_compile() { + default + if use doc ; then + emake docs || die "emake docs failed" + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc AUTHORS ChangeLog NEWS README + + use doc && dohtml docs/html/* +} |