diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-09-18 02:53:21 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-09-18 02:53:21 +0800 |
commit | 9d1ed107088daf9468109140d6379bdfb77e28e4 (patch) | |
tree | d5a136ff41c6fa2c9a4694e62f14b3d410cbb5b0 /devel/gnome-vfs | |
parent | 569a456a447787a01f97208e513932f0fa54c55f (diff) | |
download | marcuscom-ports-9d1ed107088daf9468109140d6379bdfb77e28e4.tar marcuscom-ports-9d1ed107088daf9468109140d6379bdfb77e28e4.tar.gz marcuscom-ports-9d1ed107088daf9468109140d6379bdfb77e28e4.tar.bz2 marcuscom-ports-9d1ed107088daf9468109140d6379bdfb77e28e4.tar.lz marcuscom-ports-9d1ed107088daf9468109140d6379bdfb77e28e4.tar.xz marcuscom-ports-9d1ed107088daf9468109140d6379bdfb77e28e4.tar.zst marcuscom-ports-9d1ed107088daf9468109140d6379bdfb77e28e4.zip |
Allow nullfs to be used as a trash volume.
PR: 116338
Submitted by: Tony Maher <anthony.maher@uts.edu.au>
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9630 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/gnome-vfs')
-rw-r--r-- | devel/gnome-vfs/Makefile | 4 | ||||
-rw-r--r-- | devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-filesystem-type.c | 10 |
2 files changed, 12 insertions, 2 deletions
diff --git a/devel/gnome-vfs/Makefile b/devel/gnome-vfs/Makefile index 4045e4997..0083c7338 100644 --- a/devel/gnome-vfs/Makefile +++ b/devel/gnome-vfs/Makefile @@ -3,12 +3,12 @@ # Whom: Ade Lovett <ade@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/devel/gnome-vfs/Makefile,v 1.176 2007/08/27 17:07:10 marcus Exp $ +# $MCom: ports/devel/gnome-vfs/Makefile,v 1.177 2007/09/17 18:45:23 ahze Exp $ # PORTNAME= gnome-vfs PORTVERSION= 2.20.0 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= devel gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} diff --git a/devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-filesystem-type.c b/devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-filesystem-type.c new file mode 100644 index 000000000..620a975cd --- /dev/null +++ b/devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-filesystem-type.c @@ -0,0 +1,10 @@ +--- libgnomevfs/gnome-vfs-filesystem-type.c.orig 2007-09-17 14:48:45.000000000 -0400 ++++ libgnomevfs/gnome-vfs-filesystem-type.c 2007-09-17 14:50:06.000000000 -0400 +@@ -65,6 +65,7 @@ static struct FSInfo fs_data[] = { + { "msdosfs" , N_("MSDOS Volume"), 0 }, + { "nfs" , N_("NFS Network Volume"), 1 }, + { "ntfs" , N_("Windows NT Volume"), 0 }, ++ { "nullfs" , N_("BSD Loopback Volume"), 1 }, + { "nwfs" , N_("Netware Volume"), 0 }, + { "proc" , N_("System Volume"), 0 }, + { "procfs" , N_("System Volume"), 0 }, |