mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2026-05-06 07:27:03 -04:00
5bb2f6ef1c
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> Reference: https://github.com/cgsecurity/testdisk/pull/202 Closes: https://bugs.gentoo.org/957176
106 lines
2.7 KiB
Bash
106 lines
2.7 KiB
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools flag-o-matic 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 ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
|
|
IUSE="jpeg ntfs gui reiserfs static +sudo zlib"
|
|
REQUIRED_USE="static? ( !gui )"
|
|
|
|
QA_CONFIG_IMPL_DECL_SKIP=(
|
|
'ntfs_mbstoucs' # configure script checking NTFS, has fallbacks
|
|
)
|
|
|
|
# WARNING: reiserfs support does NOT work with reiserfsprogs
|
|
# you MUST use progsreiserfs-0.3.1_rc8 (the last version ever released).
|
|
# sudo is detected during configure for extra functionality, see bug #892904
|
|
DEPEND="
|
|
sudo? ( app-admin/sudo )
|
|
static? (
|
|
sys-apps/util-linux[static-libs]
|
|
sys-fs/e2fsprogs[static-libs]
|
|
sys-libs/ncurses:0[static-libs]
|
|
jpeg? ( media-libs/libjpeg-turbo:=[static-libs] )
|
|
ntfs? ( sys-fs/ntfs3g[static-libs] )
|
|
reiserfs? ( >=sys-fs/progsreiserfs-0.3.1_rc8[static-libs] )
|
|
zlib? ( virtual/zlib:=[static-libs] )
|
|
)
|
|
!static? (
|
|
sys-apps/util-linux
|
|
sys-fs/e2fsprogs
|
|
sys-libs/ncurses:0=
|
|
jpeg? ( media-libs/libjpeg-turbo:= )
|
|
ntfs? ( sys-fs/ntfs3g:= )
|
|
gui? (
|
|
dev-qt/qtbase:6
|
|
)
|
|
reiserfs? ( >=sys-fs/progsreiserfs-0.3.1_rc8 )
|
|
zlib? ( virtual/zlib:= )
|
|
)
|
|
"
|
|
RDEPEND="
|
|
sudo? ( app-admin/sudo )
|
|
!static? ( ${DEPEND} )
|
|
"
|
|
BDEPEND="gui? ( dev-qt/qttools:6 )"
|
|
|
|
DOCS=()
|
|
|
|
PATCHES=(
|
|
# https://github.com/cgsecurity/testdisk/commit/2c6780ca1edd0b0ba2e5e86b12634e3cc8475872
|
|
"${FILESDIR}/${P}-musl.patch"
|
|
# https://github.com/cgsecurity/testdisk/pull/202
|
|
"${FILESDIR}/testdisk-7.3-qt6.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
local myconf=(
|
|
--without-ntfs # old NTFS implementation, use ntfs-3g instead.
|
|
--without-ewf # app-forensics/libewf removed from ::gentoo
|
|
$(use_with jpeg)
|
|
$(use_with ntfs ntfs3g)
|
|
$(use_enable gui qt)
|
|
$(use_enable sudo)
|
|
$(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 && ! grep -E -q '^#define HAVE_LIBNTFS(3G)? 1$' "${S}"/config.h ; then
|
|
die "Failed to find either NTFS or NTFS-3G library."
|
|
fi
|
|
if use reiserfs && grep -E -q 'undef HAVE_LIBREISERFS\>' "${S}"/config.h ; then
|
|
die "Failed to find reiserfs library."
|
|
fi
|
|
if use jpeg && grep -E -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
|
|
}
|