aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/fusefs-ntfs/Makefile
blob: 60f439656f10500f13c05b3d3148a9d2784da636 (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
# Created by: Max Khon
# $FreeBSD$

PORTNAME=   ntfs
PORTVERSION=    2012.1.15
CATEGORIES= sysutils
MASTER_SITES=   http://tuxera.com/opensource/
PKGNAMEPREFIX=  fusefs-
DISTNAME=   ${PORTNAME}-3g_ntfsprogs-${PORTVERSION}
EXTRACT_SUFX=   .tgz

MAINTAINER= ports@FreeBSD.org
COMMENT=    Mount NTFS partitions (read/write) and disk images

LICENSE=    GPLv2

CONFLICTS_BUILD=    bonobo-1.*
CONFLICTS_INSTALL=  ntfsprogs-*
USES=       fuse pkgconfig
USE_LDCONFIG=   yes
USE_AUTOTOOLS=  libtool
USE_ICONV=  yes
CONFIGURE_ARGS= --exec-prefix=${PREFIX} --disable-mount-helper \
        --disable-mtab --with-fuse=external
CPPFLAGS+=  -I${WRKSRC}/include/ntfs-3g/ -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib

OPTIONS_DEFINE= LOCK UBLIO
OPTIONS_DEFAULT=LOCK UBLIO
LOCK_DESC=  Lock the device when mounting (avoids access)
UBLIO_DESC= Enable user space cache for improved speed

SUB_FILES=  pkg-message
DOCSDIR=    ${PREFIX}/share/doc/ntfs-3g

MAN8=       mkntfs.8 ntfs-3g.8 ntfs-3g.probe.8 \
        ntfs-3g.secaudit.8 ntfs-3g.usermap.8 ntfscat.8 ntfsclone.8 \
        ntfscluster.8 ntfscmp.8 ntfscp.8 ntfsfix.8 ntfsinfo.8 \
        ntfslabel.8 ntfsls.8 ntfsprogs.8 ntfsresize.8 ntfsundelete.8

.include <bsd.port.pre.mk>

.if ${PORT_OPTIONS:MLOCK}
CFLAGS+=    -DUSE_LOCK
.endif

.if ${PORT_OPTIONS:MUBLIO}
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-ublio
LIB_DEPENDS+=   ublio:${PORTSDIR}/devel/libublio
CFLAGS+=    -DUSE_UBLIO
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|ENODATA|ENOATTR|' \
        ${WRKSRC}/libntfs-3g/object_id.c \
        ${WRKSRC}/libntfs-3g/reparse.c \
        ${WRKSRC}/libntfs-3g/security.c
    @${REINPLACE_CMD} -e 's|\($$(AM_CFLAGS)\) \(-I$$(top_srcdir)/include/ntfs-3g\)|\2 \1|' \
        ${WRKSRC}/libntfs-3g/Makefile.in
.if defined(NOPORTDOCS)
    @${REINPLACE_CMD} -Ee 's|^(install-data-am:) .*|\1|' \
        ${WRKSRC}/Makefile.in
.endif

post-install:
.if !defined(NOPORTDOCS)
    ${INSTALL_DATA} ${FILESDIR}/README.FreeBSD ${DOCSDIR}
.endif
    @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD}

.include <bsd.port.post.mk>