diff options
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*); |