f42f931c43
Changes to NTFS-3G: ------------------- Fixed inserting a new ACL after wiping out by chkdsk Fixed Windows-type inheritance Fixed ignoring the umask mount option when permissions are used Fixed checking permissions when Posix ACLs are compiled in but not enabled Disabled option remove_hiberfile on read-only mounts Implemented an extended attribute to get/set EAs Avoid full runlist updating in more situations Update ctime after setting an ACL Use MFT record 15 for the first extent to MFT:DATA Ignore the sloppy mount option (-s) Implemented FITRIM (fstrim) ioctl Reengineered the compression algorithm Changes to ntfsprogs: --------------------- Return success from ntfsprogs utilities with options –version and the like Implemented configure option –enable-quarantined for non functional utilities Added manuals for ntfsdecrypt, ntfswipe, ntfstruncate and ntfsfallocate
32 lines
816 B
Makefile
32 lines
816 B
Makefile
# $NetBSD: Makefile,v 1.19 2015/11/10 17:45:22 adam Exp $
|
|
|
|
.include "../../filesystems/libntfs/Makefile.common"
|
|
|
|
PKGNAME= fuse-${DISTNAME:S/_ntfsprogs//}
|
|
CATEGORIES= filesystems
|
|
|
|
COMMENT= NTFS driver with read and write support
|
|
|
|
CONFIGURE_ARGS+= --disable-ntfsprogs
|
|
CONFIGURE_ARGS+= --enable-mount-helper
|
|
|
|
BUILD_DIRS= src
|
|
|
|
USE_TOOLS+= pkg-config
|
|
|
|
PLIST_VARS+= lowntfs
|
|
.include "../../mk/bsd.prefs.mk"
|
|
SUBST_CLASSES+= lowntfs
|
|
SUBST_MESSAGE.lowntfs= Dealing with lowntfs.
|
|
SUBST_STAGE.lowntfs= pre-configure
|
|
SUBST_FILES.lowntfs= src/Makefile.in
|
|
.if ${OPSYS} == "NetBSD"
|
|
SUBST_SED.lowntfs= -e 's,@ENABLE_LOWNTFS@,\#,'
|
|
.else
|
|
SUBST_SED.lowntfs= -e 's,@ENABLE_LOWNTFS@,,'
|
|
PLIST.lowntfs= yes
|
|
.endif
|
|
|
|
.include "../../filesystems/libntfs/buildlink3.mk"
|
|
.include "../../mk/fuse.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|