From fb8dd48e81fdee6d6f982aa66b9ac84fc401846d Mon Sep 17 00:00:00 2001 From: David Seifert Date: Wed, 1 Sep 2021 11:38:16 +0200 Subject: app-admin/testdisk: fix subslot op on sys-fs/ntfs3g Signed-off-by: David Seifert --- app-admin/testdisk/testdisk-7.1-r1.ebuild | 93 +++++++++++++++++++++++++++++++ app-admin/testdisk/testdisk-7.1.ebuild | 93 ------------------------------- 2 files changed, 93 insertions(+), 93 deletions(-) create mode 100644 app-admin/testdisk/testdisk-7.1-r1.ebuild delete mode 100644 app-admin/testdisk/testdisk-7.1.ebuild (limited to 'app-admin/testdisk') diff --git a/app-admin/testdisk/testdisk-7.1-r1.ebuild b/app-admin/testdisk/testdisk-7.1-r1.ebuild new file mode 100644 index 000000000000..5dc76cce23a2 --- /dev/null +++ b/app-admin/testdisk/testdisk-7.1-r1.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools flag-o-matic qmake-utils xdg-utils + +DESCRIPTION="Checks and undeletes partitions + PhotoRec, signature based recovery tool" +HOMEPAGE="https://www.cgsecurity.org/wiki/TestDisk" +SRC_URI="https://www.cgsecurity.org/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86" +IUSE="ewf jpeg ntfs qt5 reiserfs static zlib" + +REQUIRED_USE="static? ( !qt5 )" + +# WARNING: reiserfs support does NOT work with reiserfsprogs +# you MUST use progsreiserfs-0.3.1_rc8 (the last version ever released). +COMMON_DEPEND=" + static? ( + sys-apps/util-linux[static-libs] + sys-fs/e2fsprogs[static-libs] + sys-libs/ncurses:0[static-libs] + jpeg? ( virtual/jpeg:0[static-libs] ) + ntfs? ( sys-fs/ntfs3g[static-libs] ) + reiserfs? ( >=sys-fs/progsreiserfs-0.3.1_rc8[static-libs] ) + zlib? ( sys-libs/zlib[static-libs] ) + !arm? ( ewf? ( app-forensics/libewf[static-libs] ) ) + ) + !static? ( + sys-apps/util-linux + sys-fs/e2fsprogs + sys-libs/ncurses:0= + jpeg? ( virtual/jpeg:0 ) + ntfs? ( sys-fs/ntfs3g:= ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + ) + reiserfs? ( >=sys-fs/progsreiserfs-0.3.1_rc8 ) + zlib? ( sys-libs/zlib ) + !arm? ( ewf? ( app-forensics/libewf:= ) ) + ) +" +DEPEND="${COMMON_DEPEND} + qt5? ( dev-qt/linguist-tools:5 ) +" +RDEPEND="!static? ( ${COMMON_DEPEND} )" + +DOCS=() + +src_configure() { + export PATH="$(qt5_get_bindir):${PATH}" + + local myconf=( + --enable-sudo + --without-ntfs + $(use_with ewf) + $(use_with jpeg) + $(use_with ntfs ntfs3g) + $(use_enable qt5 qt) + $(use_with reiserfs) + $(use_with zlib) + ) + + # this static method is the same used by upstream for their 'static' make + # target, but better, as it doesn't break. + use static && append-ldflags -static + + econf "${myconf[@]}" + + # perform safety checks for NTFS, REISERFS and JPEG + if use ntfs && ! egrep -q '^#define HAVE_LIBNTFS(3G)? 1$' "${S}"/config.h ; then + die "Failed to find either NTFS or NTFS-3G library." + fi + if use reiserfs && egrep -q 'undef HAVE_LIBREISERFS\>' "${S}"/config.h ; then + die "Failed to find reiserfs library." + fi + if use jpeg && egrep -q 'undef HAVE_LIBJPEG\>' "${S}"/config.h ; then + die "Failed to find jpeg library." + fi +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} diff --git a/app-admin/testdisk/testdisk-7.1.ebuild b/app-admin/testdisk/testdisk-7.1.ebuild deleted file mode 100644 index 07e3dfe84f2b..000000000000 --- a/app-admin/testdisk/testdisk-7.1.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic qmake-utils xdg-utils - -DESCRIPTION="Checks and undeletes partitions + PhotoRec, signature based recovery tool" -HOMEPAGE="https://www.cgsecurity.org/wiki/TestDisk" -SRC_URI="https://www.cgsecurity.org/${P}.tar.bz2" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86" -IUSE="ewf jpeg ntfs qt5 reiserfs static zlib" - -REQUIRED_USE="static? ( !qt5 )" - -# WARNING: reiserfs support does NOT work with reiserfsprogs -# you MUST use progsreiserfs-0.3.1_rc8 (the last version ever released). -COMMON_DEPEND=" - static? ( - sys-apps/util-linux[static-libs] - sys-fs/e2fsprogs[static-libs] - sys-libs/ncurses:0[static-libs] - jpeg? ( virtual/jpeg:0[static-libs] ) - ntfs? ( sys-fs/ntfs3g:=[static-libs] ) - reiserfs? ( >=sys-fs/progsreiserfs-0.3.1_rc8[static-libs] ) - zlib? ( sys-libs/zlib[static-libs] ) - !arm? ( ewf? ( app-forensics/libewf:=[static-libs] ) ) - ) - !static? ( - sys-apps/util-linux - sys-fs/e2fsprogs - sys-libs/ncurses:0= - jpeg? ( virtual/jpeg:0 ) - ntfs? ( sys-fs/ntfs3g ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - ) - reiserfs? ( >=sys-fs/progsreiserfs-0.3.1_rc8 ) - zlib? ( sys-libs/zlib ) - !arm? ( ewf? ( app-forensics/libewf:= ) ) - ) -" -DEPEND="${COMMON_DEPEND} - qt5? ( dev-qt/linguist-tools:5 ) -" -RDEPEND="!static? ( ${COMMON_DEPEND} )" - -DOCS=() - -src_configure() { - export PATH="$(qt5_get_bindir):${PATH}" - - local myconf=( - --enable-sudo - --without-ntfs - $(use_with ewf) - $(use_with jpeg) - $(use_with ntfs ntfs3g) - $(use_enable qt5 qt) - $(use_with reiserfs) - $(use_with zlib) - ) - - # this static method is the same used by upstream for their 'static' make - # target, but better, as it doesn't break. - use static && append-ldflags -static - - econf "${myconf[@]}" - - # perform safety checks for NTFS, REISERFS and JPEG - if use ntfs && ! egrep -q '^#define HAVE_LIBNTFS(3G)? 1$' "${S}"/config.h ; then - die "Failed to find either NTFS or NTFS-3G library." - fi - if use reiserfs && egrep -q 'undef HAVE_LIBREISERFS\>' "${S}"/config.h ; then - die "Failed to find reiserfs library." - fi - if use jpeg && egrep -q 'undef HAVE_LIBJPEG\>' "${S}"/config.h ; then - die "Failed to find jpeg library." - fi -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -} -- cgit v1.2.3-65-gdbad