diff options
author | David Seifert <soap@gentoo.org> | 2022-07-10 12:38:28 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-07-10 12:38:28 +0200 |
commit | 05fa203575b693aa1e250e5071dfa5f2b812741a (patch) | |
tree | 11a70bd89ef0136fa3e8b2d761ca08f3e15ed16e /app-arch/unadf/unadf-0.7.12-r2.ebuild | |
parent | app-arch/zpaq: update EAPI 6 -> 8 (diff) | |
download | gentoo-05fa203575b693aa1e250e5071dfa5f2b812741a.tar.gz gentoo-05fa203575b693aa1e250e5071dfa5f2b812741a.tar.bz2 gentoo-05fa203575b693aa1e250e5071dfa5f2b812741a.zip |
app-arch/unadf: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-arch/unadf/unadf-0.7.12-r2.ebuild')
-rw-r--r-- | app-arch/unadf/unadf-0.7.12-r2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app-arch/unadf/unadf-0.7.12-r2.ebuild b/app-arch/unadf/unadf-0.7.12-r2.ebuild new file mode 100644 index 000000000000..2c73f6a4a614 --- /dev/null +++ b/app-arch/unadf/unadf-0.7.12-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +MY_PN="adflib" + +DESCRIPTION="Extract files from Amiga adf disk images" +HOMEPAGE="http://lclevy.free.fr/adflib/" +SRC_URI="http://lclevy.free.fr/${MY_PN}/${MY_PN}-${PV}.tar.bz2" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~hppa ppc x86 ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" + +PATCHES=( "${FILESDIR}"/${PN}-0.7.12-CVE-2016-1243_CVE-2016-1244.patch ) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +} |