diff options
author | David Seifert <soap@gentoo.org> | 2023-10-08 20:32:24 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-10-08 20:32:24 +0200 |
commit | 38c1341fb4449782827efd6414ae094c85946e42 (patch) | |
tree | 8569a7614cab406e1191158d9de2bca19315aeef /app-forensics | |
parent | app-forensics/dfxml: drop 99999999 (diff) | |
download | gentoo-38c1341fb4449782827efd6414ae094c85946e42.tar.gz gentoo-38c1341fb4449782827efd6414ae094c85946e42.tar.bz2 gentoo-38c1341fb4449782827efd6414ae094c85946e42.zip |
app-forensics/dfxml: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-forensics')
-rw-r--r-- | app-forensics/dfxml/dfxml-20170921-r2.ebuild (renamed from app-forensics/dfxml/dfxml-20170921-r1.ebuild) | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/app-forensics/dfxml/dfxml-20170921-r1.ebuild b/app-forensics/dfxml/dfxml-20170921-r2.ebuild index d291bbf43c4d..2cd2be159d72 100644 --- a/app-forensics/dfxml/dfxml-20170921-r1.ebuild +++ b/app-forensics/dfxml/dfxml-20170921-r2.ebuild @@ -1,33 +1,28 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 + inherit autotools DESCRIPTION="Digital Forensics XML" HOMEPAGE="https://github.com/simsong/dfxml" SRC_URI="https://api.github.com/repos/simsong/${PN}/tarball/7d11eaa7da8d31f588ce8aecb4b4f5e7e8169ba6 -> ${P}.tar.gz" +S="${WORKDIR}/${P}/src" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64" -DEPEND=" - dev-libs/expat -" -RDEPEND=" - ${DEPEND} -" - -S=${WORKDIR}/${P}/src +DEPEND="dev-libs/expat:=" +RDEPEND="${DEPEND}" src_unpack() { - unpack ${A} + default mv simsong-dfxml-* ${P} || die } src_prepare() { default - eautoreconf } |