mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
- Update to version 1.2216.
- Add note in README.FreeBSD about mount(8) workarounds (symlink/patch) for using from /etc/fstab in FreeBSD >= 7.x, as external types are hard coded in mount.c.
This commit is contained in:
parent
e970564723
commit
f23d879b77
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=207604
@ -5,7 +5,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= ntfs
|
||||
PORTVERSION= 1.2129
|
||||
PORTVERSION= 1.2216
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= http://www.ntfs-3g.org/
|
||||
PKGNAMEPREFIX= fusefs-
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (ntfs-3g-1.2129.tgz) = 8dc058841779feb2ec2588c30fb28ad2
|
||||
SHA256 (ntfs-3g-1.2129.tgz) = 3101309eb31fec2cad160cbf67be181e3da3fcad5d6bfda621d1d752d378d801
|
||||
SIZE (ntfs-3g-1.2129.tgz) = 647786
|
||||
MD5 (ntfs-3g-1.2216.tgz) = d1664636d38e4ce8eb2af1f09bc5a15d
|
||||
SHA256 (ntfs-3g-1.2216.tgz) = b5669bc43840497f1b4d5e1038f9018bf840ce7af4afc18a9fec0467958acd92
|
||||
SIZE (ntfs-3g-1.2216.tgz) = 646352
|
||||
|
@ -52,6 +52,19 @@ instead of "ntfs", and the additional "late" parameter is required. Example:
|
||||
|
||||
/dev/ad4s1 /wxp ntfs-3g rw,late 0 0
|
||||
|
||||
Note that in FreeBSD 7.x, mount(8) has a fixed (hard coded) list of external
|
||||
mount_XXX programs that can be called, so to make this work you have to do one
|
||||
of the following:
|
||||
|
||||
1. Rename /sbin/mount_ntfs, symlink ntfs-3g as the former, and use just "ntfs"
|
||||
as the type in /etc/fstab.
|
||||
$ mv /sbin/mount_ntfs /sbin/mount_ntfs-kern
|
||||
$ ln -s /usr/sbin/mount_ntfs-3g /usr/sbin/mount_ntfs
|
||||
2. Apply a patch to src/sbin/mount/mount.c to add "ntfs-3g" as a valid type.
|
||||
3. Apply a patch to src/sbin/mount/mount.c to make it work like in 6.x (better
|
||||
than the previous one as will allow any external type). It can be found at:
|
||||
http://people.freebsd.org/~alepulver/current-7.0-mount.diff
|
||||
|
||||
==============================================================================
|
||||
4. Ublio configuration
|
||||
==============================================================================
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- src/Makefile.in.orig Mon Jan 28 16:08:09 2008
|
||||
+++ src/Makefile.in Fri Feb 8 16:05:14 2008
|
||||
--- src/Makefile.in.orig 2008-02-16 14:14:31.000000000 -0300
|
||||
+++ src/Makefile.in 2008-02-18 18:31:40.000000000 -0300
|
||||
@@ -638,7 +638,7 @@
|
||||
|
||||
info-am:
|
||||
@ -13,7 +13,7 @@
|
||||
|
||||
install-exec-local:
|
||||
$(INSTALL) -d "$(DESTDIR)$(rootsbindir)"
|
||||
- $(LN_S) -f "$(rootbindir)/ntfs-3g" "$(DESTDIR)$(rootsbindir)/mount.ntfs-3g"
|
||||
- $(LN_S) -f "$(rootbindir)/ntfs-3g" "$(DESTDIR)/sbin/mount.ntfs-3g"
|
||||
+ $(LN_S) -f "$(rootbindir)/ntfs-3g" "/usr/sbin/mount_ntfs-3g"
|
||||
|
||||
install-data-local:
|
||||
|
@ -34,7 +34,7 @@ include/ntfs-3g/volume.h
|
||||
lib/libntfs-3g.a
|
||||
lib/libntfs-3g.la
|
||||
lib/libntfs-3g.so
|
||||
lib/libntfs-3g.so.21
|
||||
lib/libntfs-3g.so.23
|
||||
libdata/pkgconfig/libntfs-3g.pc
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README.FreeBSD
|
||||
|
Loading…
Reference in New Issue
Block a user