diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-06-26 22:15:07 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-06-26 22:15:07 +0000 |
commit | 471863316063162a7200a6436be2e3e24f32eeb3 (patch) | |
tree | e6c387892bf777d174615ddbc111b012f2a86ae4 /sci-mathematics/rngstreams | |
parent | keyword ~amd64-linux ~x86-linux (diff) | |
download | gentoo-2-471863316063162a7200a6436be2e3e24f32eeb3.tar.gz gentoo-2-471863316063162a7200a6436be2e3e24f32eeb3.tar.bz2 gentoo-2-471863316063162a7200a6436be2e3e24f32eeb3.zip |
keyword ~amd64-linux and x86-linux. switch to EAPI4
(Portage version: 2.2.01.20430-prefix/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics/rngstreams')
-rw-r--r-- | sci-mathematics/rngstreams/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/rngstreams/rngstreams-1.0.1.ebuild | 18 |
2 files changed, 12 insertions, 13 deletions
diff --git a/sci-mathematics/rngstreams/ChangeLog b/sci-mathematics/rngstreams/ChangeLog index 8e992428d9e9..2fd99dedd7dd 100644 --- a/sci-mathematics/rngstreams/ChangeLog +++ b/sci-mathematics/rngstreams/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/rngstreams -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/rngstreams/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/rngstreams/ChangeLog,v 1.2 2012/06/26 22:15:07 bicatali Exp $ + + 26 Jun 2012; Sebastien Fabbro <fabbros@gentoo.org> rngstreams-1.0.1.ebuild: + keyword ~amd64-linux and x86-linux. switch to EAPI4 17 Dec 2010; Sébastien Fabbro <bicatali@gentoo.org> +rngstreams-1.0.1.ebuild, +metadata.xml: diff --git a/sci-mathematics/rngstreams/rngstreams-1.0.1.ebuild b/sci-mathematics/rngstreams/rngstreams-1.0.1.ebuild index d23c084fedaf..42384837c7d6 100644 --- a/sci-mathematics/rngstreams/rngstreams-1.0.1.ebuild +++ b/sci-mathematics/rngstreams/rngstreams-1.0.1.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/rngstreams/rngstreams-1.0.1.ebuild,v 1.1 2010/12/17 22:36:07 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/rngstreams/rngstreams-1.0.1.ebuild,v 1.2 2012/06/26 22:15:07 bicatali Exp $ -EAPI=2 +EAPI=4 DESCRIPTION="Multiple independent streams of pseudo-random numbers" HOMEPAGE="http://statmath.wu.ac.at/software/RngStreams/" @@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}${P}.tar.gz" LICENSE="GPL-3" SLOT=0 -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="doc examples static-libs" DEPEND="" RDEPEND="" @@ -23,16 +23,12 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS README NEWS - insinto /usr/share/doc/${PF} - if use doc; then - dohtml -r doc/rngstreams.html/* || die - doins doc/${PN}.pdf || die - fi + default + use doc && dohtml -r doc/rngstreams.html/* && dodoc doc/${PN}.pdf if use examples; then emake distclean -C examples rm -f examples/Makefile* + insinto /usr/share/doc/${PF} doins -r examples fi } |