Files

40 lines
899 B
Makefile
Raw Permalink Normal View History

COMMENT = data recovery software
2024-03-30 10:35:38 +00:00
VERSION = 7.2
DISTNAME = testdisk-${VERSION}
CATEGORIES = sysutils
HOMEPAGE = https://www.cgsecurity.org/
2023-09-27 17:16:22 +00:00
SITES = ${HOMEPAGE}
EXTRACT_SUFX = .tar.bz2
2013-08-12 15:05:27 +00:00
MAINTAINER = Landry Breuil <landry@openbsd.org>
# GPLv2
PERMIT_PACKAGE = Yes
COMPILER = base-clang ports-gcc
COMPILER_LANGS = c
WANTLIB += c com_err curses ext2fs iconv jpeg ntfs-3g uuid z
SUBST_VARS += VERSION
CONFIGURE_STYLE = gnu
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
2024-03-30 10:35:38 +00:00
LDFLAGS="-L${LOCALBASE}/lib -luuid"
CONFIGURE_ARGS = --disable-qt
2016-09-13 18:52:05 +00:00
LIB_DEPENDS = converters/libiconv \
sysutils/e2fsprogs>=1.42.7 \
2014-04-22 10:11:02 +00:00
sysutils/ntfs-3g \
2010-11-20 17:22:40 +00:00
graphics/jpeg
2013-01-30 17:19:24 +00:00
post-install:
${INSTALL_DATA} ${WRKSRC}/documentation.html ${PREFIX}/share/doc/testdisk/
# we disable qt, no need for those
rm -Rf ${PREFIX}/share/icons/ ${PREFIX}/man/man8/qphotorec.8 ${PREFIX}/man/zh_CN/
2013-01-30 17:19:24 +00:00
.include <bsd.port.mk>