summaryrefslogtreecommitdiff
path: root/sysutils/ntfsprogs/Makefile
blob: e3569d984513e771a33d52ac1d876612a23c29eb (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
85
86
87
88
89
90
91
92
93
94
95
96
# $FreeBSD$

PORTNAME=	ntfsprogs
PORTVERSION=	2.0.0
PORTREVISION=	3
CATEGORIES=	sysutils
MASTER_SITES=	SF/linux-ntfs/NTFS%20Tools%20and%20Library/${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Utilities and library to manipulate NTFS partitions

LICENSE=	GPLv2

CONFLICTS_INSTALL=	fusefs-ntfs-*

USE_PKGCONFIG=	build
USE_BZIP2=	yes
USES=		fuse
USE_LDCONFIG=	yes
GNU_CONFIGURE=	yes
CPPFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-L${LOCALBASE}/lib

OPTIONS_DEFINE=	GNOMEVFS2 LOCK UBLIO UUID
OPTIONS_DEFAULT=LOCK UBLIO

GNOMEVFS2_DESC=	Install GnomeVFS 2.0 libntfs interface
LOCK_DESC=	Lock the device when mounting (avoids access)
UBLIO_DESC=	Enable user space cache for improved speed
UUID_DESC=	Generate DCE compliant UUIDs

MAN8=	libntfs.8 libntfs-gnomevfs.8 mkntfs.8 \
	ntfscat.8 ntfsclone.8 ntfscluster.8 ntfscmp.8 \
	ntfscp.8 ntfsfix.8 ntfsinfo.8 ntfslabel.8 ntfsls.8 ntfsmount.8 \
	ntfsprogs.8 ntfsresize.8 ntfsundelete.8
MLINKS=	ntfsmount.8 mount_ntfs-fuse.8

SUB_FILES=	pkg-message

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MGNOMEVFS2}
WANT_GNOME=	yes
.endif

.include <bsd.port.pre.mk>

.if ${ARCH} == "i386"
CFLAGS:=	${CFLAGS:C/-O.?/-O0/g}
.endif

.if ${PORT_OPTIONS:MGNOMEVFS2}
CONFIGURE_ARGS+=--enable-gnome-vfs
USE_GNOME=	gnomevfs2
PLIST_SUB+=	GNOMEVFS2=""
.else
CONFIGURE_ARGS+=--disable-gnome-vfs
PLIST_SUB+=	GNOMEVFS2="@comment "
.endif

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

.if ${PORT_OPTIONS:MUUID}
LIB_DEPENDS+=	uuid:${PORTSDIR}/misc/e2fsprogs-libuuid
CONFIGURE_ARGS+=--enable-uuid
.else
CONFIGURE_ARGS+=--disable-uuid
.endif

.if ${PORT_OPTIONS:MUBLIO}
LIB_DEPENDS+=	ublio:${PORTSDIR}/devel/libublio
CFLAGS+=	-DUSE_UBLIO
.else
pre-everything::
	@${ECHO_MSG}
	@${ECHO_MSG} "WARNING: FreeBSD does not have cache support for block devices. This will considerably reduce the performance of this application, please consider enabling the UBLIO option and following the indications in the post-installation message." | ${FMT}
	@${ECHO_MSG}
.endif

.if ${PORT_OPTIONS:MUBLIO}
post-patch:
	@${REINPLACE_CMD} -e 's|^libntfs_la_LIBADD =|& -lublio|' \
		${WRKSRC}/libntfs/Makefile.in
.endif

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

.include <bsd.port.post.mk>