diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-11-20 05:36:27 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-11-20 05:36:27 +0800 |
commit | 022d016927c93d0efbc3ad23c2ed5a4c854c8e41 (patch) | |
tree | 84c2a8fbf9d978d79052fa18402eb7eaf4967622 /sysutils | |
parent | 05d5dfa20082329bff5c3cf61a517726b9957d68 (diff) | |
download | marcuscom-ports-022d016927c93d0efbc3ad23c2ed5a4c854c8e41.tar marcuscom-ports-022d016927c93d0efbc3ad23c2ed5a4c854c8e41.tar.gz marcuscom-ports-022d016927c93d0efbc3ad23c2ed5a4c854c8e41.tar.bz2 marcuscom-ports-022d016927c93d0efbc3ad23c2ed5a4c854c8e41.tar.lz marcuscom-ports-022d016927c93d0efbc3ad23c2ed5a4c854c8e41.tar.xz marcuscom-ports-022d016927c93d0efbc3ad23c2ed5a4c854c8e41.tar.zst marcuscom-ports-022d016927c93d0efbc3ad23c2ed5a4c854c8e41.zip |
fix the default mount options for vfat, ntfs, iso9660, and udf.
Reported by: sajd on #freebsd-gnome
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7936 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/gnome-mount/Makefile | 5 | ||||
-rw-r--r-- | sysutils/gnome-mount/files/patch-gnome-mount.schemas.in | 38 |
2 files changed, 41 insertions, 2 deletions
diff --git a/sysutils/gnome-mount/Makefile b/sysutils/gnome-mount/Makefile index 6aa317ff5..41ef9828a 100644 --- a/sysutils/gnome-mount/Makefile +++ b/sysutils/gnome-mount/Makefile @@ -2,12 +2,13 @@ # Date created: 04 June 2006 # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # -# $FreeBSD: ports/sysutils/gnome-mount/Makefile,v 1.2 2006/11/05 03:47:43 mezz Exp $ -# $MCom: ports/sysutils/gnome-mount/Makefile,v 1.4 2006/10/05 07:37:38 mezz Exp $ +# $FreeBSD$ +# $MCom: ports/sysutils/gnome-mount/Makefile,v 1.6 2006/11/14 02:46:51 marcus Exp $ # PORTNAME= gnome-mount PORTVERSION= 0.5 +PORTREVISION= 1 CATEGORIES= sysutils gnome MASTER_SITES= http://people.freedesktop.org/~david/dist/ diff --git a/sysutils/gnome-mount/files/patch-gnome-mount.schemas.in b/sysutils/gnome-mount/files/patch-gnome-mount.schemas.in new file mode 100644 index 000000000..28c9ceab3 --- /dev/null +++ b/sysutils/gnome-mount/files/patch-gnome-mount.schemas.in @@ -0,0 +1,38 @@ +--- gnome-mount.schemas.in.orig Sun Nov 19 16:32:47 2006 ++++ gnome-mount.schemas.in Sun Nov 19 16:34:14 2006 +@@ -6,7 +6,7 @@ + <applyto>/system/storage/default_options/vfat/mount_options</applyto> + <type>list</type> + <list_type>string</list_type> +- <default>[shortname=winnt,uid=]</default> ++ <default>[shortnames]</default> + <locale name="C"> + <short>Default mount options for vfat fs</short> + <long>A list of default mount options for volumes formatted with the vfat file system.</long> +@@ -18,7 +18,7 @@ + <applyto>/system/storage/default_options/iso9660/mount_options</applyto> + <type>list</type> + <list_type>string</list_type> +- <default>[uid=]</default> ++ <default>[]</default> + <locale name="C"> + <short>Default mount options for iso9660 fs</short> + <long>A list of default mount options for volumes formatted with the iso9660 file system.</long> +@@ -30,7 +30,7 @@ + <applyto>/system/storage/default_options/udf/mount_options</applyto> + <type>list</type> + <list_type>string</list_type> +- <default>[uid=]</default> ++ <default>[]</default> + <locale name="C"> + <short>Default mount options for udf fs</short> + <long>A list of default mount options for volumes formatted with the udf file system.</long> +@@ -42,7 +42,7 @@ + <applyto>/system/storage/default_options/ntfs/mount_options</applyto> + <type>list</type> + <list_type>string</list_type> +- <default>[umask=222]</default> ++ <default>[]</default> + <locale name="C"> + <short>Default mount options for ntfs fs</short> + <long>A list of default mount options for volumes formatted with the ntfs file system.</long> |