diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-06-26 21:52:15 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-06-26 21:52:15 +0000 |
commit | 83e2be1bc6b9644d3d020db49d4398c4872b1db5 (patch) | |
tree | dc54ff4270c31a771613a1d29ba6dc78079ac391 /sci-mathematics/prng | |
parent | Version bump, patch to remove possible sandbox violation (diff) | |
download | gentoo-2-83e2be1bc6b9644d3d020db49d4398c4872b1db5.tar.gz gentoo-2-83e2be1bc6b9644d3d020db49d4398c4872b1db5.tar.bz2 gentoo-2-83e2be1bc6b9644d3d020db49d4398c4872b1db5.zip |
keyword ~amd64-linux ~x86-linux
(Portage version: 2.2.01.20430-prefix/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics/prng')
-rw-r--r-- | sci-mathematics/prng/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/prng/prng-3.0.2.ebuild | 17 |
2 files changed, 12 insertions, 12 deletions
diff --git a/sci-mathematics/prng/ChangeLog b/sci-mathematics/prng/ChangeLog index 5651de4bd364..6a7fc20f0b11 100644 --- a/sci-mathematics/prng/ChangeLog +++ b/sci-mathematics/prng/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/prng -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/prng/ChangeLog,v 1.1 2010/12/17 22:36:07 bicatali Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/prng/ChangeLog,v 1.2 2012/06/26 21:52:15 bicatali Exp $ + + 26 Jun 2012; Sebastien Fabbro <fabbros@gentoo.org> prng-3.0.2.ebuild: + keyword ~amd64-linux ~x86-linux 17 Dec 2010; Sébastien Fabbro <bicatali@gentoo.org> +prng-3.0.2.ebuild, +files/prng-3.0.2-shared.patch, +metadata.xml: diff --git a/sci-mathematics/prng/prng-3.0.2.ebuild b/sci-mathematics/prng/prng-3.0.2.ebuild index e2a77121fa0b..30cbd52bb3af 100644 --- a/sci-mathematics/prng/prng-3.0.2.ebuild +++ b/sci-mathematics/prng/prng-3.0.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/prng/prng-3.0.2.ebuild,v 1.1 2010/12/17 22:36:07 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/prng/prng-3.0.2.ebuild,v 1.2 2012/06/26 21:52:15 bicatali Exp $ -EAPI=2 +EAPI=4 inherit eutils autotools DESCRIPTION="Pseudo-Random Number Generator library" @@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}${P}.tar.gz" LICENSE="GPL-2" SLOT=0 -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="doc examples static-libs" DEPEND="" RDEPEND="${DEPEND}" @@ -28,15 +28,12 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS README NEWS ChangeLog KNOWN-PROBLEMS - insinto /usr/share/doc/${PF} - if use doc; then - doins doc/${PN}.pdf || die - fi + default + use doc && doins doc/${PN}.pdf if use examples; then emake distclean -C examples rm -f examples/Makefile* + insinto /usr/share/doc/${PF} doins -r examples fi } |