summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2018-05-31 16:49:32 -0400
committerAaron Bauman <bman@gentoo.org>2018-06-01 10:05:14 -0400
commit1ee631bc2a821312256180e311f58761fa42800b (patch)
treea98dbf4a1f2321950358fec261fdb291041dde62 /net-misc/aggregate/aggregate-1.6.ebuild
parentdev-util/cmake: Removed old. (diff)
downloadgentoo-1ee631bc2a821312256180e311f58761fa42800b.tar.gz
gentoo-1ee631bc2a821312256180e311f58761fa42800b.tar.bz2
gentoo-1ee631bc2a821312256180e311f58761fa42800b.zip
net-misc/aggregate: bump EAPI and drop eutils
Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8660
Diffstat (limited to 'net-misc/aggregate/aggregate-1.6.ebuild')
-rw-r--r--net-misc/aggregate/aggregate-1.6.ebuild15
1 files changed, 7 insertions, 8 deletions
diff --git a/net-misc/aggregate/aggregate-1.6.ebuild b/net-misc/aggregate/aggregate-1.6.ebuild
index a8700cfabbd5..8df22ac51199 100644
--- a/net-misc/aggregate/aggregate-1.6.ebuild
+++ b/net-misc/aggregate/aggregate-1.6.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=2
-inherit eutils toolchain-funcs
+EAPI=6
+
+inherit toolchain-funcs
DESCRIPTION="Take a list of prefixes and perform two optimisations to reduce the length of the prefix list"
HOMEPAGE="http://dist.automagic.org/"
@@ -16,9 +17,7 @@ IUSE=""
RDEPEND="dev-lang/perl"
DEPEND=""
-src_prepare() {
- epatch "${FILESDIR}"/${P}-build-fixup.patch
-}
+PATCHES=( "${FILESDIR}/${P}-build-fixup.patch" )
src_configure() {
tc-export CC
@@ -26,7 +25,7 @@ src_configure() {
}
src_install() {
- dobin aggregate aggregate-ios || die
+ dobin aggregate{,-ios}
doman aggregate{,-ios}.1
- dodoc HISTORY
+ einstalldocs
}