mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
97 lines
2.3 KiB
Makefile
97 lines
2.3 KiB
Makefile
# $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_BZIP2= yes
|
|
USES= fuse pkgconfig
|
|
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
|
|
|
|
NO_STAGE= yes
|
|
.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>
|