34 lines
1,014 B
Makefile
34 lines
1,014 B
Makefile
# $NetBSD: Makefile,v 1.13 2018/02/02 14:08:27 jperkin Exp $
|
|
|
|
DISTNAME= testdisk-7.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://www.cgsecurity.org/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pancake@phreaker.net
|
|
HOMEPAGE= https://www.cgsecurity.org/wiki/TestDisk
|
|
COMMENT= Tool to check and undelete partitions
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "Linux"
|
|
.include "../../devel/libuuid/buildlink3.mk"
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+= --disable-qt
|
|
CONFIGURE_ARGS+= --disable-stack-protector
|
|
|
|
# testdisk uses either ntfsprogs or fuse-ntfs-3g, but not both, and prefers
|
|
# fuse-ntfs-3g. Ignore configure-time warnings that the ntfs library is
|
|
# disabled.
|
|
.include "../../filesystems/libntfs/buildlink3.mk"
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
|
.include "../../mk/curses.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|