diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-09-23 08:14:03 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-09-23 08:14:03 +0200 |
commit | 59a3811b073cee80e2571633d2318fc2e7afd7b2 (patch) | |
tree | 04bec37ef62aa5bfaeda695c2931d338251e55e4 /sci-mathematics/ent/ent-101202.ebuild | |
parent | net-analyzer/rrdtool: Remove <1.3 advice (bug #561228). (diff) | |
download | gentoo-59a3811b073cee80e2571633d2318fc2e7afd7b2.tar.gz gentoo-59a3811b073cee80e2571633d2318fc2e7afd7b2.tar.bz2 gentoo-59a3811b073cee80e2571633d2318fc2e7afd7b2.zip |
sci-mathematics/ent: Bump to EAPI=5
Package-Manager: portage-2.2.21
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'sci-mathematics/ent/ent-101202.ebuild')
-rw-r--r-- | sci-mathematics/ent/ent-101202.ebuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sci-mathematics/ent/ent-101202.ebuild b/sci-mathematics/ent/ent-101202.ebuild index fa8a0eb052a3..9932349d9bc4 100644 --- a/sci-mathematics/ent/ent-101202.ebuild +++ b/sci-mathematics/ent/ent-101202.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="3" +EAPI=5 inherit eutils toolchain-funcs @@ -11,19 +11,21 @@ HOMEPAGE="http://www.fourmilab.ch/random/" SRC_URI="mirror://gentoo/random-${PV}.zip" SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" LICENSE="public-domain" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="" RDEPEND="" DEPEND="app-arch/unzip" +S="${WORKDIR}" + src_prepare() { epatch "${FILESDIR}"/${PV}-gentoo.patch tc-export CC } src_install() { - dobin ${PN} || die - dohtml ${PN}.html ${PN}itle.gif || die + dobin ${PN} + dohtml ${PN}.html ${PN}itle.gif } |