diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-03-17 14:14:01 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-03-22 14:07:23 +0100 |
commit | 6597e61e1ab587f96357adc7367dd6125c6ede9f (patch) | |
tree | f104ff301b768169b193eaaa185b320da5f602c5 /app-admin/testdisk | |
parent | app-admin/testdisk: Add 7.1_pre20180322 Qt5-based snapshot (diff) | |
download | gentoo-6597e61e1ab587f96357adc7367dd6125c6ede9f.tar.gz gentoo-6597e61e1ab587f96357adc7367dd6125c6ede9f.tar.bz2 gentoo-6597e61e1ab587f96357adc7367dd6125c6ede9f.zip |
app-admin/testdisk: EAPI 6 bump
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'app-admin/testdisk')
-rw-r--r-- | app-admin/testdisk/testdisk-7.1_pre20180322.ebuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/app-admin/testdisk/testdisk-7.1_pre20180322.ebuild b/app-admin/testdisk/testdisk-7.1_pre20180322.ebuild index 7ea7b9df550d..f0091bc8cff8 100644 --- a/app-admin/testdisk/testdisk-7.1_pre20180322.ebuild +++ b/app-admin/testdisk/testdisk-7.1_pre20180322.ebuild @@ -1,11 +1,10 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -AUTOTOOLS_AUTORECONF=1 COMMIT=9eb2aa12ce051d8d3d31e6b440389d5abf5efaf1 -inherit autotools-utils flag-o-matic +inherit autotools flag-o-matic DESCRIPTION="Checks and undeletes partitions + PhotoRec, signature based recovery tool" HOMEPAGE="https://www.cgsecurity.org/wiki/TestDisk" @@ -52,15 +51,18 @@ DEPEND="${COMMON_DEPEND} " RDEPEND="!static? ( ${COMMON_DEPEND} )" -AUTOTOOLS_IN_SOURCE_BUILD=1 DOCS=( ) S="${WORKDIR}/${PN}-${COMMIT}" +src_prepare() { + default + eautoreconf +} + src_configure() { local myeconfargs=( --enable-sudo - --docdir="${ROOT}/usr/share/doc/${P}" $(use_with ewf) $(use_with jpeg) $(use_with ntfs) |