diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2007-05-01 16:17:54 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2007-05-01 16:17:54 +0000 |
commit | c4bae849096e9b753bab2d29961f588bcec9c37e (patch) | |
tree | f8f9a655583f42c68e7aef68ab8a299623a1286a /filesystems | |
parent | c181356bf6303e34092b846add73489c4d408fae (diff) | |
download | pkgsrc-c4bae849096e9b753bab2d29961f588bcec9c37e.tar.gz |
Update to 1.417:
* new: read-write mount is supported using the "force" mount option if
the logfile is unclean
* new: libntfs-3g is versioned
* fix: default ownership of files weren't always set to the mounting user
* fix: mount was denied if the NTFS Master File Table copy had non-standard size
* fix: catch and deny all junction/reparse point write operations
* fix: multiply -o options weren't allowed (FreeBSD's mount(8) requires this)
* fix: don't try to run Linux specific code on non-Linux OSes
Diffstat (limited to 'filesystems')
-rw-r--r-- | filesystems/fuse-ntfs-3g/Makefile | 4 | ||||
-rw-r--r-- | filesystems/fuse-ntfs-3g/distinfo | 9 | ||||
-rw-r--r-- | filesystems/fuse-ntfs-3g/patches/patch-ac | 20 |
3 files changed, 6 insertions, 27 deletions
diff --git a/filesystems/fuse-ntfs-3g/Makefile b/filesystems/fuse-ntfs-3g/Makefile index 3282074da0a..341b77aee43 100644 --- a/filesystems/fuse-ntfs-3g/Makefile +++ b/filesystems/fuse-ntfs-3g/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2007/04/13 09:23:57 xtraeme Exp $ +# $NetBSD: Makefile,v 1.3 2007/05/01 16:17:54 xtraeme Exp $ # -DISTNAME= ntfs-3g-1.328 +DISTNAME= ntfs-3g-1.417 PKGNAME= fuse-${DISTNAME} CATEGORIES= filesystems MASTER_SITES= http://www.ntfs-3g.org/ diff --git a/filesystems/fuse-ntfs-3g/distinfo b/filesystems/fuse-ntfs-3g/distinfo index 15583bae550..6c1b23be67a 100644 --- a/filesystems/fuse-ntfs-3g/distinfo +++ b/filesystems/fuse-ntfs-3g/distinfo @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.3 2007/04/13 09:23:57 xtraeme Exp $ +$NetBSD: distinfo,v 1.4 2007/05/01 16:17:54 xtraeme Exp $ -SHA1 (ntfs-3g-1.328.tgz) = a5b51b3c13f433a6e06a366b34639b19d8ecae59 -RMD160 (ntfs-3g-1.328.tgz) = 3c90e882dfb427ce66eef7b895b3e4abb962cb12 -Size (ntfs-3g-1.328.tgz) = 561797 bytes +SHA1 (ntfs-3g-1.417.tgz) = 81d26194db5677e872f23219de435a27a4c072c3 +RMD160 (ntfs-3g-1.417.tgz) = aef2a087a7b523fa249216137613dc764d08eefe +Size (ntfs-3g-1.417.tgz) = 562094 bytes SHA1 (patch-aa) = 51e3674e70dcd967f184ff8ccb34f040e98fb70f SHA1 (patch-ab) = 37d7aa735d99d1d6d5cc6210894ec0252a7836fc -SHA1 (patch-ac) = 61fece4e78bfcc7435a1b2f6f096d6198bb230c2 diff --git a/filesystems/fuse-ntfs-3g/patches/patch-ac b/filesystems/fuse-ntfs-3g/patches/patch-ac deleted file mode 100644 index ffb0f972b3a..00000000000 --- a/filesystems/fuse-ntfs-3g/patches/patch-ac +++ /dev/null @@ -1,20 +0,0 @@ -$NetBSD: patch-ac,v 1.1 2007/02/28 21:34:39 xtraeme Exp $ - ---- src/ntfs-3g.c.orig 2007-02-28 22:33:03.000000000 +0100 -+++ src/ntfs-3g.c 2007-02-28 22:33:32.000000000 +0100 -@@ -2116,13 +2116,13 @@ - ntfs_log_perror("Failed to set user ID to %d", euid); - goto err_out; - } -- -+#ifndef __NetBSD__ - fstype = get_fuse_fstype(); - if (fstype == FSTYPE_NONE || fstype == FSTYPE_UNKNOWN) - fstype = load_fuse_module(); - - create_dev_fuse(); -- -+#endif - if (stat(opts.device, &sbuf)) { - ntfs_log_perror("Failed to access '%s'", opts.device); - goto err_out; |