diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2018-01-01 17:51:06 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2018-01-01 17:51:06 +0100 |
commit | 8ba8be5678f4b1ba27006bd2b6fcc60470cbd6af (patch) | |
tree | dcb88f843f5cb9f9abfcac6986c151be0e4bb4aa /net-misc/aget | |
parent | net-dns/ldns-utils: Drop old, bug 605728 (diff) | |
download | gentoo-8ba8be5678f4b1ba27006bd2b6fcc60470cbd6af.tar.gz gentoo-8ba8be5678f4b1ba27006bd2b6fcc60470cbd6af.tar.bz2 gentoo-8ba8be5678f4b1ba27006bd2b6fcc60470cbd6af.zip |
net-misc/aget: EAPI bump, bug 605728
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'net-misc/aget')
-rw-r--r-- | net-misc/aget/aget-0.4.1-r2.ebuild (renamed from net-misc/aget/aget-0.4.1-r1.ebuild) | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/net-misc/aget/aget-0.4.1-r1.ebuild b/net-misc/aget/aget-0.4.1-r2.ebuild index 98a946337d3f..ed4438eb35fd 100644 --- a/net-misc/aget/aget-0.4.1-r1.ebuild +++ b/net-misc/aget/aget-0.4.1-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=3 +EAPI=6 -inherit eutils toolchain-funcs +inherit toolchain-funcs DESCRIPTION="multithreaded HTTP download accelerator" HOMEPAGE="http://www.enderunix.org/aget/" @@ -14,15 +14,15 @@ SLOT="0" KEYWORDS="amd64 ~arm ~mips ~ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux" IUSE="" -src_prepare() { - epatch "${FILESDIR}"/${PF}.patch -} +PATCHES=( + "${FILESDIR}"/aget-0.4.1-r1.patch +) src_compile() { - emake CC="$(tc-getCC)" || die + emake CC="$(tc-getCC)" } src_install() { - emake DESTDIR="${ED}" install || die - dodoc AUTHORS ChangeLog README* THANKS TODO || die + emake DESTDIR="${ED}" install + dodoc AUTHORS ChangeLog README* THANKS TODO } |