aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/testdisk/Makefile
blob: 385b7d649a80a5fed3c6264e8cef253226b81ba7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# New ports collection makefile for:    testdisk
# Date created:             Feb 28 2004
# Whom:                 Florent Thoumie <flz@xbsd.org>
#
# $FreeBSD$
#

PORTNAME=   testdisk
PORTVERSION=    6.12
CATEGORIES= sysutils
MASTER_SITES=   http://www.cgsecurity.org/
DISTFILES=  ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}

MAINTAINER= flz@FreeBSD.org
COMMENT=    Tool to check and undelete partitions

LIB_DEPENDS=    jpeg.11:${PORTSDIR}/graphics/jpeg

USE_BZIP2=  yes
GNU_CONFIGURE=  yes
CPPFLAGS+=  -I${PREFIX}/include
LDFLAGS+=   -L${PREFIX}/lib
CONFIGURE_ARGS= --without-ewf

MAN8=       fidentify.8 testdisk.8 photorec.8
PLIST_FILES=    bin/fidentify bin/testdisk bin/photorec
PORTDOCS=   *

OPTIONS=    ICONV "Use iconv extensions" on \
        NTFS3G "Use fusefs-ntfs extensions" off \
        NTFSPROGS "Use ntfsprogs extensions" off \
        PROGSREISERFS "Use reiserfs extensions" off
#       E2FSPROGS "Use ext2fs extensions" off \

.include <bsd.port.pre.mk>

#.if !defined(NOPORTDOCS)
#DISTFILES+=    ${PORTNAME}-doc-${PORTVERSION}${EXTRACT_SUFX}
#.endif

.if !defined(WITHOUT_ICONV)
LIB_DEPENDS+=   iconv.3:${PORTSDIR}/converters/libiconv
.else
CONFIGURE_ARGS+=--without-iconv
.endif

# e2fsprogs does not provide ext2fs.so any more
# since it does not do 'make install-libs'
#.if defined(WITH_E2FSPROGS)
#LIB_DEPENDS+=  ext2fs.2:${PORTSDIR}/sysutils/e2fsprogs
#.else
#CONFIGURE_ARGS+=--without-ext2fs
#.endif

.if defined(WITH_NTFS3G)
LIB_DEPENDS+=   ntfs-3g.81:${PORTSDIR}/sysutils/fusefs-ntfs
.else
CONFIGURE_ARGS+=--without-ntfs3g
.endif

.if defined(WITH_NTFSPROGS)
.if defined(WITH_NTFS3G)
IGNORE= WITH_NTFSPROGS does not work if WITH_NTFS3G is defined
.endif
LIB_DEPENDS+=   ntfs.10:${PORTSDIR}/sysutils/ntfsprogs
.else
CONFIGURE_ARGS+=--without-ntfs
.endif

.if defined(WITH_PROGSREISERFS)
LIB_DEPENDS+=   reiserfs-0.3.0:${PORTSDIR}/sysutils/progsreiserfs
.else
CONFIGURE_ARGS+=--without-reiserfs
.endif

post-patch:
.if !defined(NOPORTDOCS)
    @${REINPLACE_CMD} -e 's|/doc/.(PACKAGE)-.(VERSION)|/doc/${PORTNAME}|' ${WRKSRC}/Makefile.in
    @${REINPLACE_CMD} -e '/doc\/testdisk\/html/d' ${WRKSRC}/Makefile.in
.else
    @${REINPLACE_CMD} -e '/\/doc\/$$(PACKAGE)-$$(VERSION)/d' ${WRKSRC}/Makefile.in
.endif

.include <bsd.port.post.mk>