diff options
author | 2017-09-24 12:33:54 +0200 | |
---|---|---|
committer | 2017-09-24 21:20:50 +0200 | |
commit | 8523ba111ef0b942f241ccc0b95958632c5341e9 (patch) | |
tree | a38fe51a695fed676cd25613b52e21a3868cee32 /app-forensics/dfxml/dfxml-20170921-r1.ebuild | |
parent | profi;es/updates: pkgmove dev-libs/dfxml to app-forensics/dfxml. (diff) | |
download | gentoo-8523ba111ef0b942f241ccc0b95958632c5341e9.tar.gz gentoo-8523ba111ef0b942f241ccc0b95958632c5341e9.tar.bz2 gentoo-8523ba111ef0b942f241ccc0b95958632c5341e9.zip |
app-forensics/dfxml: Do not install autotools helper.
Package-Manager: Portage-2.3.10, Repoman-2.3.3
Diffstat (limited to 'app-forensics/dfxml/dfxml-20170921-r1.ebuild')
-rw-r--r-- | app-forensics/dfxml/dfxml-20170921-r1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-forensics/dfxml/dfxml-20170921-r1.ebuild b/app-forensics/dfxml/dfxml-20170921-r1.ebuild new file mode 100644 index 000000000000..d291bbf43c4d --- /dev/null +++ b/app-forensics/dfxml/dfxml-20170921-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +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" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + dev-libs/expat +" +RDEPEND=" + ${DEPEND} +" + +S=${WORKDIR}/${P}/src + +src_unpack() { + unpack ${A} + mv simsong-dfxml-* ${P} || die +} + +src_prepare() { + default + + eautoreconf +} |