diff options
author | Alejandro Pulver <alepulver@FreeBSD.org> | 2007-10-30 03:22:04 +0000 |
---|---|---|
committer | Alejandro Pulver <alepulver@FreeBSD.org> | 2007-10-30 03:22:04 +0000 |
commit | cf9758e30f7959f1f1b7627500276d3eaf2990ae (patch) | |
tree | 82ca3b72ed42f5d8e9a9ad64ce4891d5142af653 /sysutils/ntfsprogs/files/patch-ntfsprogs-Makefile.in | |
parent | - Update to 0.2.7 (diff) |
- Bump PORTREVISION.
- Remove FreeBSD 4.x code (USE_GCC=3.4+, USE_GETOPT_LONG and BROKEN).
- Use ARCH instead of MACHINE_ARCH for possible future cross-compilation
support.
- Add UBLIO option, which uses devel/libublio for greatly improved speed (when
reading an NTFS volume). Also print a warning when disabling UBLIO.
- Add pkg-message mentioning UBLIO and this port's limitations.
- Change mount.ntfs-fuse -> mount_ntfs-fuse manpage link and symlink to the
binary in /usr/sbin to allow using with 'mount -t ntfs-fuse' and in
/etc/fstab after mounting /usr.
- Add a note in pkg-descr about the fusefs driver and ntfs-3g split project.
- Add LOCK option to avoid access to the device while it's mounted.
PR: ports/116287
Submitted by: alepulver (myself)
Approved by: miwi, farrokhi (implicitly to miwi)
Diffstat (limited to 'sysutils/ntfsprogs/files/patch-ntfsprogs-Makefile.in')
-rw-r--r-- | sysutils/ntfsprogs/files/patch-ntfsprogs-Makefile.in | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sysutils/ntfsprogs/files/patch-ntfsprogs-Makefile.in b/sysutils/ntfsprogs/files/patch-ntfsprogs-Makefile.in new file mode 100644 index 000000000000..30d5a3d5d44c --- /dev/null +++ b/sysutils/ntfsprogs/files/patch-ntfsprogs-Makefile.in @@ -0,0 +1,19 @@ +--- ntfsprogs/Makefile.in.orig Wed Jun 21 05:41:46 2006 ++++ ntfsprogs/Makefile.in Mon Sep 10 15:47:08 2007 +@@ -914,13 +914,14 @@ + + install-exec-hook: + $(INSTALL) -d $(DESTDIR)/sbin ++ $(INSTALL) -d $(DESTDIR)/usr/sbin + $(LN_S) -f $(sbindir)/mkntfs $(DESTDIR)/sbin/mkfs.ntfs +-@ENABLE_FUSE_MODULE_TRUE@ $(LN_S) -f $(bindir)/ntfsmount $(DESTDIR)/sbin/mount.ntfs-fuse ++@ENABLE_FUSE_MODULE_TRUE@ $(LN_S) -f $(bindir)/ntfsmount $(DESTDIR)/usr/sbin/mount_ntfs-fuse + + install-data-hook: + $(INSTALL) -d $(DESTDIR)$(man8dir) + $(LN_S) -f mkntfs.8 $(DESTDIR)$(man8dir)/mkfs.ntfs.8 +-@ENABLE_FUSE_MODULE_TRUE@ $(LN_S) -f ntfsmount.8 $(DESTDIR)$(man8dir)/mount.ntfs-fuse.8 ++@ENABLE_FUSE_MODULE_TRUE@ $(LN_S) -f ntfsmount.8 $(DESTDIR)$(man8dir)/mount_ntfs-fuse.8 + + uninstall-local: + $(RM) -f $(DESTDIR)/sbin/mkfs.ntfs |