diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-02-15 15:30:17 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-02-15 15:30:17 +0800 |
commit | 827233d8b3e77c368082534e6685ac02ae299a3b (patch) | |
tree | 7c3bbdca5949e14288d66be6e52f597c44fec1a2 /devel | |
parent | b59eb910906dd97766394f0f277fecabe3cae88a (diff) | |
download | marcuscom-ports-827233d8b3e77c368082534e6685ac02ae299a3b.tar marcuscom-ports-827233d8b3e77c368082534e6685ac02ae299a3b.tar.gz marcuscom-ports-827233d8b3e77c368082534e6685ac02ae299a3b.tar.bz2 marcuscom-ports-827233d8b3e77c368082534e6685ac02ae299a3b.tar.lz marcuscom-ports-827233d8b3e77c368082534e6685ac02ae299a3b.tar.xz marcuscom-ports-827233d8b3e77c368082534e6685ac02ae299a3b.tar.zst marcuscom-ports-827233d8b3e77c368082534e6685ac02ae299a3b.zip |
Remove all file system types that do not have associated devices. This is
more in line with what the Linux backend does.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@10450 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libgtop/Makefile | 4 | ||||
-rw-r--r-- | devel/libgtop/files/patch-sysdeps_freebsd_mountlist.c | 30 |
2 files changed, 14 insertions, 20 deletions
diff --git a/devel/libgtop/Makefile b/devel/libgtop/Makefile index 4d0be8a44..8e4bbafd1 100644 --- a/devel/libgtop/Makefile +++ b/devel/libgtop/Makefile @@ -3,12 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/devel/libgtop/Makefile,v 1.30 2008/02/10 00:52:19 marcus Exp $ +# $MCom: ports/devel/libgtop/Makefile,v 1.31 2008/02/14 17:32:05 marcus Exp $ # PORTNAME= libgtop PORTVERSION= 2.21.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} diff --git a/devel/libgtop/files/patch-sysdeps_freebsd_mountlist.c b/devel/libgtop/files/patch-sysdeps_freebsd_mountlist.c index 55f4f5ed5..7c1b1774c 100644 --- a/devel/libgtop/files/patch-sysdeps_freebsd_mountlist.c +++ b/devel/libgtop/files/patch-sysdeps_freebsd_mountlist.c @@ -1,6 +1,6 @@ ---- sysdeps/freebsd/mountlist.c.orig 2007-11-02 23:52:58.000000000 -0400 -+++ sysdeps/freebsd/mountlist.c 2007-11-02 23:52:50.000000000 -0400 -@@ -0,0 +1,174 @@ +--- sysdeps/freebsd/mountlist.c.orig 2008-02-15 02:11:59.000000000 -0500 ++++ sysdeps/freebsd/mountlist.c 2008-02-15 02:28:14.000000000 -0500 +@@ -0,0 +1,168 @@ +/* mountlist.c -- return a list of mounted filesystems + Copyright (C) 1991, 1992 Free Software Foundation, Inc. + @@ -92,30 +92,24 @@ +static gboolean ignore_mount_entry(const struct mount_entry *me) +{ + /* keep sorted */ -+ static const char ignored[][12] = { ++ static const char ignored[][17] = { + "autofs", -+ "binfmt_misc", -+ "ctfs", + "devfs", -+ "devpts", + "fusectl", + "linprocfs", ++ "linsysfs", + "mfs", -+ "mntfs", -+ "mqueue", + "none", -+ "nsfd", -+ "objfs", -+ "openpromfs", ++ "nfs", ++ "nullfs", ++ "nwfs", ++ "portalfs", + "proc", + "procfs", -+ "securityfs", -+ "supermount", -+ "sysfs", ++ "smbfs", + "tmpfs", -+ "unknown", -+ "usbdevfs", -+ "usbfs" ++ "unionfs", ++ "unknown" + }; + + typedef int (*Comparator)(const void*, const void*); |