diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-02-14 14:45:02 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-02-14 14:47:27 -0500 |
commit | f16b2c2fd7ef413e13510d9ab7c33b296b3fadcd (patch) | |
tree | 01e22c70de4a80705ed6691eb7dd219a4647a4a7 /app-arch/cpio | |
parent | dev-ruby/ruby-progressbar: add 1.7.5 (diff) | |
download | gentoo-f16b2c2fd7ef413e13510d9ab7c33b296b3fadcd.tar.gz gentoo-f16b2c2fd7ef413e13510d9ab7c33b296b3fadcd.tar.bz2 gentoo-f16b2c2fd7ef413e13510d9ab7c33b296b3fadcd.zip |
app-arch/cpio: drop autotools usage
Looks like a copy & paste holdover from the previous ebuild.
Diffstat (limited to 'app-arch/cpio')
-rw-r--r-- | app-arch/cpio/cpio-2.12.ebuild | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/app-arch/cpio/cpio-2.12.ebuild b/app-arch/cpio/cpio-2.12.ebuild index 559b65be7390..3f1baaa21b08 100644 --- a/app-arch/cpio/cpio-2.12.ebuild +++ b/app-arch/cpio/cpio-2.12.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI="5" -inherit autotools eutils +inherit eutils DESCRIPTION="A file archival tool which can also read and write tar files" HOMEPAGE="https://www.gnu.org/software/cpio/cpio.html" @@ -17,7 +17,6 @@ IUSE="nls" src_prepare() { epatch "${FILESDIR}"/${PN}-2.12-non-gnu-compilers.patch #275295 - eautoreconf } src_configure() { @@ -26,7 +25,3 @@ src_configure() { --bindir="${EPREFIX}"/bin \ --with-rmt="${EPREFIX}"/usr/sbin/rmt } - -src_install() { - default -} |