diff options
author | David Seifert <soap@gentoo.org> | 2017-12-29 12:41:47 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-29 14:16:39 +0100 |
commit | 18df312eac67f443f5e62dc6c65634aad0ff7908 (patch) | |
tree | 286287b5796476df1f61b8f1cf82ae8c1488f9fa /app-arch/unadf | |
parent | app-arch/rzip: Revbump for CVE-2017-8364 (diff) | |
download | gentoo-18df312eac67f443f5e62dc6c65634aad0ff7908.tar.gz gentoo-18df312eac67f443f5e62dc6c65634aad0ff7908.tar.bz2 gentoo-18df312eac67f443f5e62dc6c65634aad0ff7908.zip |
app-arch/unadf: Port to EAPI 6
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-arch/unadf')
-rw-r--r-- | app-arch/unadf/unadf-0.7.12.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app-arch/unadf/unadf-0.7.12.ebuild b/app-arch/unadf/unadf-0.7.12.ebuild index 8250209a1c24..d2c414ac385d 100644 --- a/app-arch/unadf/unadf-0.7.12.ebuild +++ b/app-arch/unadf/unadf-0.7.12.ebuild @@ -1,25 +1,25 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -inherit autotools eutils +inherit autotools MY_PN="adflib" DESCRIPTION="Extract files from Amiga adf disk images" -SRC_URI="http://lclevy.free.fr/${MY_PN}/${MY_PN}-${PV}.tar.bz2" HOMEPAGE="http://lclevy.free.fr/adflib/" +SRC_URI="http://lclevy.free.fr/${MY_PN}/${MY_PN}-${PV}.tar.bz2" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" IUSE="static-libs" -DEPEND="" -RDEPEND="" S="${WORKDIR}/${MY_PN}-${PV}" src_prepare() { + default eautoreconf } @@ -29,5 +29,5 @@ src_configure() { src_install() { default - prune_libtool_files + find "${D}" -name '*.la' -delete || die } |