forked from Lainports/freebsd-ports
The filesystems category houses file systems and file system utilities. It is added mainly to turn the sysutils/fusefs-* pseudo-category into a proper one, but is also useful for the sundry of other file systems related ports found in the tree. Ports that seem like they belong there are moved to the new category. Two ports, sysutils/fusefs-funionfs and sysutils/fusefs-fusepak are not moved as they currently don't fetch and don't have TIMESTAMP set in their distinfo, but that is required to be able to push a rename of the port by the pre-receive hook. Approved by: portmgr (rene) Reviewed by: mat Pull Request: https://github.com/freebsd/freebsd-ports/pull/302 PR: 281988
36 lines
866 B
Makefile
36 lines
866 B
Makefile
PORTNAME= testdisk
|
|
DISTVERSION= 7.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.cgsecurity.org/
|
|
|
|
MAINTAINER= eduardo@FreeBSD.org
|
|
COMMENT= Tool to check and undelete partitions
|
|
WWW= https://www.cgsecurity.org/wiki/TestDisk
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= jpeg localbase:ldflags ncurses tar:bzip2
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-qt \
|
|
--without-ewf
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS ICONV NTFS PROGSREISERFS
|
|
OPTIONS_DEFAULT= ICONV
|
|
|
|
NTFS_DESC= Support NTFS via fuse-ntfs extensions
|
|
PROGSREISERFS_DESC= Use reiserfs extensions
|
|
|
|
ICONV_USES= iconv
|
|
ICONV_CONFIGURE_OFF= --without-iconv
|
|
|
|
NTFS_LIB_DEPENDS= libntfs-3g.so:filesystems/ntfs
|
|
NTFS_CONFIGURE_OFF= --without-ntfs3g
|
|
|
|
PROGSREISERFS_LIB_DEPENDS= libreiserfs-0.3.so.0:filesystems/progsreiserfs
|
|
PROGSREISERFS_CONFIGURE_OFF= --without-reiserfs
|
|
|
|
.include <bsd.port.mk>
|