diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/gnome-netstatus/Makefile | 35 | ||||
-rw-r--r-- | net/gnome-netstatus/distinfo | 3 | ||||
-rw-r--r-- | net/gnome-netstatus/files/patch-src_netstatus-sysdeps.c | 58 | ||||
-rw-r--r-- | net/gnome-netstatus/pkg-descr | 2 | ||||
-rw-r--r-- | net/gnome-netstatus/pkg-plist | 242 | ||||
-rw-r--r-- | net/gnome-nettool/Makefile | 39 | ||||
-rw-r--r-- | net/gnome-nettool/distinfo | 3 | ||||
-rw-r--r-- | net/gnome-nettool/files/patch-src_info.c | 259 | ||||
-rw-r--r-- | net/gnome-nettool/files/patch-src_lookup.c | 10 | ||||
-rw-r--r-- | net/gnome-nettool/files/patch-src_netstat.c | 20 | ||||
-rw-r--r-- | net/gnome-nettool/files/patch-src_nettool.c | 37 | ||||
-rw-r--r-- | net/gnome-nettool/files/patch-src_utils.c | 20 | ||||
-rw-r--r-- | net/gnome-nettool/pkg-descr | 3 | ||||
-rw-r--r-- | net/gnome-nettool/pkg-plist | 144 |
14 files changed, 875 insertions, 0 deletions
diff --git a/net/gnome-netstatus/Makefile b/net/gnome-netstatus/Makefile new file mode 100644 index 000000000..72af8fad4 --- /dev/null +++ b/net/gnome-netstatus/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: gnomenetstatus +# Date Created: 05 December 2003 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD$ +# $MCom: ports/net/gnome-netstatus/Makefile,v 1.41 2006/07/23 01:10:49 mezz Exp $ +# + +PORTNAME= gnome-netstatus +PORTVERSION= 2.12.1 +PORTREVISION= 1 +CATEGORIES= net gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= A GNOME applet that shows network status + +USE_XLIB= yes +INSTALLS_OMF= yes +INSTALLS_ICONS= yes +USE_BZIP2= yes +GNOME_DESKTOP_VERSION=2 +USE_GNOME= gnomehack intlhack gnomeprefix libgnome gnomepanel libglade2 \ + gnomedocutils +USE_GMAKE= yes +USE_GETTEXT= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +GCONF_SCHEMAS= netstatus.schemas + +.include <bsd.port.mk> diff --git a/net/gnome-netstatus/distinfo b/net/gnome-netstatus/distinfo new file mode 100644 index 000000000..8297e98a7 --- /dev/null +++ b/net/gnome-netstatus/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/gnome-netstatus-2.12.1.tar.bz2) = 8651ca1694a6c222ae5cad6e21814d24 +SHA256 (gnome2/gnome-netstatus-2.12.1.tar.bz2) = 4648439f0327963dcbbf2d07d2de1cf1ef74a7430bcbe175717efd0e7f7824ed +SIZE (gnome2/gnome-netstatus-2.12.1.tar.bz2) = 500536 diff --git a/net/gnome-netstatus/files/patch-src_netstatus-sysdeps.c b/net/gnome-netstatus/files/patch-src_netstatus-sysdeps.c new file mode 100644 index 000000000..de7d713c7 --- /dev/null +++ b/net/gnome-netstatus/files/patch-src_netstatus-sysdeps.c @@ -0,0 +1,58 @@ +--- src/netstatus-sysdeps.c.orig Tue Feb 13 04:39:19 2007 ++++ src/netstatus-sysdeps.c Tue Feb 13 17:16:29 2007 +@@ -430,11 +430,11 @@ static inline char * + get_an_data (const char *iface, + int *signal_strength) + { ++ struct an_ltv_status *sts; ++ struct an_req areq; + #ifdef AN_RID_RSSI_MAP + struct an_ltv_rssi_map an_rssimap; + #endif +- struct an_req areq; +- struct an_ltv_status *sts; + int level; + char *error = NULL; + gboolean rssimap_valid = FALSE; +@@ -486,11 +486,11 @@ get_wi_data (const char *iface, + level = (int) wreq.wi_val[1]; + + #ifdef WI_RID_READ_APS +- if (signal_strength <= 0) ++ if (*signal_strength <= 0) + { + /* we fail to get signal strength by usual means, try another way */ + static time_t last_scan; +- static long int cached; ++ static int cached; + time_t now; + + now = time (NULL); +@@ -510,15 +510,15 @@ get_wi_data (const char *iface, + if (nstations > 0) + { + w = (struct wi_apinfo *)(((char *) &wreq.wi_val) + sizeof (int)); +- signal_strength = (long int) w->signal; ++ level = w->signal; + } + +- cached = signal_strength; ++ cached = level; + last_scan = now; + } + else + { +- signal_strength = cached; ++ level = cached; + } + } + #endif +@@ -548,6 +548,8 @@ netstatus_sysdeps_read_iface_wireless_de + g_strncasecmp (iface, "wi", 2) && + g_strncasecmp (iface, "ath", 3) && + g_strncasecmp (iface, "ndis", 4) && ++ g_strncasecmp (iface, "ural", 4) && ++ g_strncasecmp (iface, "ral", 3) && + g_strncasecmp (iface, "ipw", 3) && + g_strncasecmp (iface, "iwi", 3) && + g_strncasecmp (iface, "acx", 3)) diff --git a/net/gnome-netstatus/pkg-descr b/net/gnome-netstatus/pkg-descr new file mode 100644 index 000000000..0848cf01f --- /dev/null +++ b/net/gnome-netstatus/pkg-descr @@ -0,0 +1,2 @@ +Gnome-netstatus is a panel applet which provides information about +network interfaces. diff --git a/net/gnome-netstatus/pkg-plist b/net/gnome-netstatus/pkg-plist new file mode 100644 index 000000000..5c3fde7f7 --- /dev/null +++ b/net/gnome-netstatus/pkg-plist @@ -0,0 +1,242 @@ +libdata/bonobo/servers/GNOME_NetstatusApplet_Factory.server +libexec/gnome-netstatus-applet +share/gnome-2.0/ui/GNOME_NetstatusApplet.xml +share/gnome-netstatus/gnome-netstatus.glade +share/gnome/help/gnome-netstatus/C/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/C/legal.xml +share/gnome/help/gnome-netstatus/bg/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/de/figures/gnome-netstatus-disconn.png +share/gnome/help/gnome-netstatus/de/figures/gnome-netstatus-error.png +share/gnome/help/gnome-netstatus/de/figures/gnome-netstatus-idle.png +share/gnome/help/gnome-netstatus/de/figures/gnome-netstatus-rx.png +share/gnome/help/gnome-netstatus/de/figures/gnome-netstatus-tx.png +share/gnome/help/gnome-netstatus/de/figures/gnome-netstatus-txrx.png +share/gnome/help/gnome-netstatus/de/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/de/legal.xml +share/gnome/help/gnome-netstatus/es/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/fr/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/it/figures/gnome-netstatus-disconn.png +share/gnome/help/gnome-netstatus/it/figures/gnome-netstatus-error.png +share/gnome/help/gnome-netstatus/it/figures/gnome-netstatus-idle.png +share/gnome/help/gnome-netstatus/it/figures/gnome-netstatus-rx.png +share/gnome/help/gnome-netstatus/it/figures/gnome-netstatus-tx.png +share/gnome/help/gnome-netstatus/it/figures/gnome-netstatus-txrx.png +share/gnome/help/gnome-netstatus/it/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/it/legal.xml +share/gnome/help/gnome-netstatus/ja/figures/gnome-netstatus-disconn.png +share/gnome/help/gnome-netstatus/ja/figures/gnome-netstatus-error.png +share/gnome/help/gnome-netstatus/ja/figures/gnome-netstatus-idle.png +share/gnome/help/gnome-netstatus/ja/figures/gnome-netstatus-rx.png +share/gnome/help/gnome-netstatus/ja/figures/gnome-netstatus-tx.png +share/gnome/help/gnome-netstatus/ja/figures/gnome-netstatus-txrx.png +share/gnome/help/gnome-netstatus/ja/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/ja/legal.xml +share/gnome/help/gnome-netstatus/ko/figures/gnome-netstatus-disconn.png +share/gnome/help/gnome-netstatus/ko/figures/gnome-netstatus-error.png +share/gnome/help/gnome-netstatus/ko/figures/gnome-netstatus-idle.png +share/gnome/help/gnome-netstatus/ko/figures/gnome-netstatus-rx.png +share/gnome/help/gnome-netstatus/ko/figures/gnome-netstatus-tx.png +share/gnome/help/gnome-netstatus/ko/figures/gnome-netstatus-txrx.png +share/gnome/help/gnome-netstatus/ko/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/ko/legal.xml +share/gnome/help/gnome-netstatus/nl/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/pa/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/ru/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/sv/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/uk/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/zh_CN/figures/gnome-netstatus-disconn.png +share/gnome/help/gnome-netstatus/zh_CN/figures/gnome-netstatus-error.png +share/gnome/help/gnome-netstatus/zh_CN/figures/gnome-netstatus-idle.png +share/gnome/help/gnome-netstatus/zh_CN/figures/gnome-netstatus-rx.png +share/gnome/help/gnome-netstatus/zh_CN/figures/gnome-netstatus-tx.png +share/gnome/help/gnome-netstatus/zh_CN/figures/gnome-netstatus-txrx.png +share/gnome/help/gnome-netstatus/zh_CN/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/zh_CN/legal.xml +share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-disconn.png +share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-error.png +share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-idle.png +share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-rx.png +share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-tx.png +share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-txrx.png +share/gnome/help/gnome-netstatus/zh_HK/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/zh_HK/legal.xml +share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-disconn.png +share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-error.png +share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-idle.png +share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-rx.png +share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-tx.png +share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-txrx.png +share/gnome/help/gnome-netstatus/zh_TW/gnome-netstatus.xml +share/gnome/help/gnome-netstatus/zh_TW/legal.xml +share/omf/gnome-netstatus/gnome-netstatus-C.omf +share/omf/gnome-netstatus/gnome-netstatus-bg.omf +share/omf/gnome-netstatus/gnome-netstatus-de.omf +share/omf/gnome-netstatus/gnome-netstatus-es.omf +share/omf/gnome-netstatus/gnome-netstatus-fr.omf +share/omf/gnome-netstatus/gnome-netstatus-it.omf +share/omf/gnome-netstatus/gnome-netstatus-ja.omf +share/omf/gnome-netstatus/gnome-netstatus-ko.omf +share/omf/gnome-netstatus/gnome-netstatus-nl.omf +share/omf/gnome-netstatus/gnome-netstatus-pa.omf +share/omf/gnome-netstatus/gnome-netstatus-ru.omf +share/omf/gnome-netstatus/gnome-netstatus-sv.omf +share/omf/gnome-netstatus/gnome-netstatus-uk.omf +share/omf/gnome-netstatus/gnome-netstatus-zh_CN.omf +share/omf/gnome-netstatus/gnome-netstatus-zh_HK.omf +share/omf/gnome-netstatus/gnome-netstatus-zh_TW.omf +share/pixmaps/gnome-netstatus-tx.png +share/icons/hicolor/48x48/apps/gnome-netstatus-0-24.png +share/icons/hicolor/48x48/apps/gnome-netstatus-25-49.png +share/icons/hicolor/48x48/apps/gnome-netstatus-50-74.png +share/icons/hicolor/48x48/apps/gnome-netstatus-75-100.png +share/icons/hicolor/48x48/apps/gnome-netstatus-disconn.png +share/icons/hicolor/48x48/apps/gnome-netstatus-error.png +share/icons/hicolor/48x48/apps/gnome-netstatus-idle.png +share/icons/hicolor/48x48/apps/gnome-netstatus-rx.png +share/icons/hicolor/48x48/apps/gnome-netstatus-tx.png +share/icons/hicolor/48x48/apps/gnome-netstatus-txrx.png +share/locale/ar/LC_MESSAGES/gnome-netstatus.mo +share/locale/az/LC_MESSAGES/gnome-netstatus.mo +share/locale/bg/LC_MESSAGES/gnome-netstatus.mo +share/locale/bn/LC_MESSAGES/gnome-netstatus.mo +share/locale/bn_IN/LC_MESSAGES/gnome-netstatus.mo +share/locale/bs/LC_MESSAGES/gnome-netstatus.mo +share/locale/ca/LC_MESSAGES/gnome-netstatus.mo +share/locale/cs/LC_MESSAGES/gnome-netstatus.mo +share/locale/cy/LC_MESSAGES/gnome-netstatus.mo +share/locale/da/LC_MESSAGES/gnome-netstatus.mo +share/locale/de/LC_MESSAGES/gnome-netstatus.mo +share/locale/dz/LC_MESSAGES/gnome-netstatus.mo +share/locale/el/LC_MESSAGES/gnome-netstatus.mo +share/locale/en_CA/LC_MESSAGES/gnome-netstatus.mo +share/locale/en_GB/LC_MESSAGES/gnome-netstatus.mo +share/locale/es/LC_MESSAGES/gnome-netstatus.mo +share/locale/et/LC_MESSAGES/gnome-netstatus.mo +share/locale/eu/LC_MESSAGES/gnome-netstatus.mo +share/locale/fa/LC_MESSAGES/gnome-netstatus.mo +share/locale/fi/LC_MESSAGES/gnome-netstatus.mo +share/locale/fr/LC_MESSAGES/gnome-netstatus.mo +share/locale/ga/LC_MESSAGES/gnome-netstatus.mo +share/locale/gl/LC_MESSAGES/gnome-netstatus.mo +share/locale/gu/LC_MESSAGES/gnome-netstatus.mo +share/locale/he/LC_MESSAGES/gnome-netstatus.mo +share/locale/hi/LC_MESSAGES/gnome-netstatus.mo +share/locale/hr/LC_MESSAGES/gnome-netstatus.mo +share/locale/hu/LC_MESSAGES/gnome-netstatus.mo +share/locale/id/LC_MESSAGES/gnome-netstatus.mo +share/locale/it/LC_MESSAGES/gnome-netstatus.mo +share/locale/ja/LC_MESSAGES/gnome-netstatus.mo +share/locale/ka/LC_MESSAGES/gnome-netstatus.mo +share/locale/ko/LC_MESSAGES/gnome-netstatus.mo +share/locale/lt/LC_MESSAGES/gnome-netstatus.mo +share/locale/lv/LC_MESSAGES/gnome-netstatus.mo +share/locale/mg/LC_MESSAGES/gnome-netstatus.mo +share/locale/mk/LC_MESSAGES/gnome-netstatus.mo +share/locale/ml/LC_MESSAGES/gnome-netstatus.mo +share/locale/mn/LC_MESSAGES/gnome-netstatus.mo +share/locale/mr/LC_MESSAGES/gnome-netstatus.mo +share/locale/ms/LC_MESSAGES/gnome-netstatus.mo +share/locale/nb/LC_MESSAGES/gnome-netstatus.mo +share/locale/ne/LC_MESSAGES/gnome-netstatus.mo +share/locale/nl/LC_MESSAGES/gnome-netstatus.mo +share/locale/nn/LC_MESSAGES/gnome-netstatus.mo +share/locale/or/LC_MESSAGES/gnome-netstatus.mo +share/locale/pa/LC_MESSAGES/gnome-netstatus.mo +share/locale/pl/LC_MESSAGES/gnome-netstatus.mo +share/locale/pt/LC_MESSAGES/gnome-netstatus.mo +share/locale/pt_BR/LC_MESSAGES/gnome-netstatus.mo +share/locale/ro/LC_MESSAGES/gnome-netstatus.mo +share/locale/ru/LC_MESSAGES/gnome-netstatus.mo +share/locale/rw/LC_MESSAGES/gnome-netstatus.mo +share/locale/sk/LC_MESSAGES/gnome-netstatus.mo +share/locale/sl/LC_MESSAGES/gnome-netstatus.mo +share/locale/sq/LC_MESSAGES/gnome-netstatus.mo +share/locale/sr/LC_MESSAGES/gnome-netstatus.mo +share/locale/sr@Latn/LC_MESSAGES/gnome-netstatus.mo +share/locale/sv/LC_MESSAGES/gnome-netstatus.mo +share/locale/ta/LC_MESSAGES/gnome-netstatus.mo +share/locale/th/LC_MESSAGES/gnome-netstatus.mo +share/locale/tr/LC_MESSAGES/gnome-netstatus.mo +share/locale/uk/LC_MESSAGES/gnome-netstatus.mo +share/locale/vi/LC_MESSAGES/gnome-netstatus.mo +share/locale/wa/LC_MESSAGES/gnome-netstatus.mo +share/locale/xh/LC_MESSAGES/gnome-netstatus.mo +share/locale/zh_CN/LC_MESSAGES/gnome-netstatus.mo +share/locale/zh_HK/LC_MESSAGES/gnome-netstatus.mo +share/locale/zh_TW/LC_MESSAGES/gnome-netstatus.mo +@dirrm share/omf/gnome-netstatus +@dirrm share/gnome/help/gnome-netstatus/zh_TW/figures +@dirrm share/gnome/help/gnome-netstatus/zh_TW +@dirrm share/gnome/help/gnome-netstatus/zh_HK/figures +@dirrm share/gnome/help/gnome-netstatus/zh_HK +@dirrm share/gnome/help/gnome-netstatus/zh_CN/figures +@dirrm share/gnome/help/gnome-netstatus/zh_CN +@dirrm share/gnome/help/gnome-netstatus/uk +@dirrm share/gnome/help/gnome-netstatus/sv +@dirrm share/gnome/help/gnome-netstatus/ru +@dirrm share/gnome/help/gnome-netstatus/pa +@dirrm share/gnome/help/gnome-netstatus/nl +@dirrm share/gnome/help/gnome-netstatus/ko/figures +@dirrm share/gnome/help/gnome-netstatus/ko +@dirrm share/gnome/help/gnome-netstatus/ja/figures +@dirrm share/gnome/help/gnome-netstatus/ja +@dirrm share/gnome/help/gnome-netstatus/it/figures +@dirrm share/gnome/help/gnome-netstatus/it +@dirrm share/gnome/help/gnome-netstatus/fr +@dirrm share/gnome/help/gnome-netstatus/es +@dirrm share/gnome/help/gnome-netstatus/de/figures +@dirrm share/gnome/help/gnome-netstatus/de +@dirrm share/gnome/help/gnome-netstatus/bg +@dirrm share/gnome/help/gnome-netstatus/C +@dirrm share/gnome/help/gnome-netstatus +@dirrm share/gnome-netstatus +@dirrmtry share/locale/zh_TW/LC_MESSAGES +@dirrmtry share/locale/zh_TW +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/zh_CN/LC_MESSAGES +@dirrmtry share/locale/zh_CN +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/uk/LC_MESSAGES +@dirrmtry share/locale/uk +@dirrmtry share/locale/sr/LC_MESSAGES +@dirrmtry share/locale/sr +@dirrmtry share/locale/sl/LC_MESSAGES +@dirrmtry share/locale/sl +@dirrmtry share/locale/sk/LC_MESSAGES +@dirrmtry share/locale/sk +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/ro/LC_MESSAGES +@dirrmtry share/locale/ro +@dirrmtry share/locale/pt/LC_MESSAGES +@dirrmtry share/locale/pt +@dirrmtry share/locale/pl/LC_MESSAGES +@dirrmtry share/locale/pl +@dirrmtry share/locale/no/LC_MESSAGES +@dirrmtry share/locale/no +@dirrmtry share/locale/nn/LC_MESSAGES +@dirrmtry share/locale/nn +@dirrmtry share/locale/ne/LC_MESSAGES +@dirrmtry share/locale/ne +@dirrmtry share/locale/mr/LC_MESSAGES +@dirrmtry share/locale/mr +@dirrmtry share/locale/mg/LC_MESSAGES +@dirrmtry share/locale/mg +@dirrmtry share/locale/ko/LC_MESSAGES +@dirrmtry share/locale/ko +@dirrmtry share/locale/gl/LC_MESSAGES +@dirrmtry share/locale/gl +@dirrmtry share/locale/fi/LC_MESSAGES +@dirrmtry share/locale/fi +@dirrmtry share/locale/el/LC_MESSAGES +@dirrmtry share/locale/el +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/cs/LC_MESSAGES +@dirrmtry share/locale/cs +@dirrmtry share/locale/ca/LC_MESSAGES +@dirrmtry share/locale/ca +@dirrmtry share/locale/bn_IN/LC_MESSAGES +@dirrmtry share/locale/bn_IN diff --git a/net/gnome-nettool/Makefile b/net/gnome-nettool/Makefile new file mode 100644 index 000000000..a39ce8843 --- /dev/null +++ b/net/gnome-nettool/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: gnomenetwork +# Date Created: 03 June 2003 +# Whom: Adam Weinberger <adamw@FreeBSD.org> +# +# $FreeBSD$ +# $MCom: ports/net/gnome-nettool/Makefile,v 1.35 2007/03/13 12:41:51 ahze Exp $ +# + +PORTNAME= gnome-nettool +PORTVERSION= 2.18.0 +PORTREVISION= 1 +PORTEPOCH= 1 +CATEGORIES= net gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/gnome-nettool/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} +DISTNAME= gnome-nettool-${PORTVERSION} +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= A GNOME utility that provides network information statistics + +USE_XLIB= yes +USE_BZIP2= yes +USE_GNOME= gnomehack intlhack gnomeprefix libglade2 gconf2 gnomedocutils +USE_GMAKE= yes +USE_GETTEXT= yes +INSTALLS_OMF= yes +INSTALLS_ICONS= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +CFLAGS+= -DHAVE_SOCKADDR_SA_LEN + +post-install: + ${MKDIR} ${PREFIX}/share/pixmaps + ${LN} -sf ${PREFIX}/share/gnome-nettool/pixmaps/gnome-nettool.png \ + ${PREFIX}/share/pixmaps/gnome-nettool.png + +.include <bsd.port.mk> diff --git a/net/gnome-nettool/distinfo b/net/gnome-nettool/distinfo new file mode 100644 index 000000000..9adbfe2e9 --- /dev/null +++ b/net/gnome-nettool/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/gnome-nettool-2.18.0.tar.bz2) = 596616cf631b5bc9ec0c873208ccfce9 +SHA256 (gnome2/gnome-nettool-2.18.0.tar.bz2) = 348b6c0f0c7d58df1514f87956e6987fcccc418d1cfea98a1f3a1b84e4d60e57 +SIZE (gnome2/gnome-nettool-2.18.0.tar.bz2) = 511010 diff --git a/net/gnome-nettool/files/patch-src_info.c b/net/gnome-nettool/files/patch-src_info.c new file mode 100644 index 000000000..74eb698a4 --- /dev/null +++ b/net/gnome-nettool/files/patch-src_info.c @@ -0,0 +1,259 @@ +--- src/info.c.orig Fri Dec 1 10:36:15 2006 ++++ src/info.c Mon Dec 18 17:32:19 2006 +@@ -20,6 +20,10 @@ + #include <gtk/gtk.h> + #include <glib/gi18n.h> + #include <glib/gprintf.h> ++#include <sys/types.h> ++#include <string.h> ++#include <errno.h> ++#include <unistd.h> + + #ifdef HAVE_CONFIG_H + # include <config.h> +@@ -38,6 +42,11 @@ + #include <sys/ioctl.h> + #include <stdlib.h> + #include <net/if.h> ++#ifdef __FreeBSD__ ++#include <sys/sysctl.h> ++#include <net/if_dl.h> ++#include <net/if_media.h> ++#endif + + #include "info.h" + #include "utils.h" +@@ -58,6 +67,7 @@ static InfoInterfaceDescription info_ifa + { N_("Ethernet Interface"), INFO_INTERFACE_ETH, "16_ethernet.xpm", "eth", NULL }, + { N_("Wireless Interface"), INFO_INTERFACE_WLAN, "wavelan-16.png", "wlan", NULL }, + { N_("Modem Interface"), INFO_INTERFACE_PPP, "16_ppp.xpm", "ppp", NULL }, ++ { N_("Modem Interface"), INFO_INTERFACE_PPP, "16_ppp.xpm", "tun", NULL }, + { N_("Parallel Line Interface"), INFO_INTERFACE_PLIP, "16_plip.xpm", "plip", NULL }, + { N_("Infrared Interface"), INFO_INTERFACE_IRLAN, "irda-16.png", "irlan", NULL }, + { N_("Loopback Interface"), INFO_INTERFACE_LO, "16_loopback.xpm", "lo", NULL }, +@@ -128,9 +138,42 @@ info_get_interface_from_dev_name (const + { + gint i; + gchar *path; +- ++ gchar *dev_type = NULL; ++#if defined(__FreeBSD__) ++ int s; ++ struct ifmediareq ifmr; ++ ++ if ((s = socket (AF_INET, SOCK_DGRAM, 0)) > -1) { ++ ++ (void) memset (&ifmr, 0, sizeof (ifmr)); ++ (void) strncpy (ifmr.ifm_name, dev_name, sizeof (ifmr.ifm_name)); ++ ++ if (ioctl (s, SIOCGIFMEDIA, (caddr_t) &ifmr) > -1) { ++ switch (IFM_TYPE (ifmr.ifm_active)) { ++ case IFM_ETHER: ++ dev_type = "eth"; ++ break; ++ case IFM_FDDI: ++ case IFM_TOKEN: ++#ifdef IFM_ATM ++ case IFM_ATM: ++#endif ++ dev_type = "other_type"; ++ break; ++ case IFM_IEEE80211: ++ dev_type = "wlan"; ++ break; ++ } ++ } ++ close (s); ++ } ++#endif /* defined(__FreeBSD__) */ ++ ++ if (!dev_type) ++ dev_type = (gchar *) dev_name; ++ + for (i = 0; info_iface_desc[i].name; i++) +- if (strstr (dev_name, info_iface_desc[i].prefix) == dev_name) { ++ if (strstr (dev_type, info_iface_desc[i].prefix) == dev_type) { + (*iface) = g_strdup_printf ("%s (%s)", _(info_iface_desc[i].name), dev_name); + if (info_iface_desc[i].pixbuf == NULL) { + path = g_build_filename (PIXMAPS_DIR, info_iface_desc[i].icon, NULL); +@@ -218,38 +261,87 @@ info_nic_update_stats (gpointer data) + gchar tx[10], tx_error[10], tx_drop[10], tx_ovr[10]; + */ + gchar iface[30]; /*, flags[30]; */ +- gchar rx_bytes[16], rx_pkt[10], rx_error[10], rx_drop[10], rx_fifo[10]; +- gchar frame[10], compressed[10], multicast[10]; +- gchar tx_bytes[16], tx_pkt[10], tx_error[10], tx_drop[10], tx_fifo[10]; ++ gchar rx_bytes[16], rx_pkt[10], rx_error[10]; ++ gchar tx_bytes[16], tx_pkt[10], tx_error[10]; + gchar collissions[10]; ++#if defined(__linux__) ++ gchar rx_drop[10], rx_fifo[10]; ++ gchar frame[10], compressed[10], multicast[10]; ++ gchar tx_drop[10], tx_fifo[10]; ++#elif defined(__FreeBSD__) ++ char *p; ++ gchar **tokens, **argv; ++ int i; ++ int pipe_out; ++#endif + + GIOChannel *io = NULL; + gchar *line; + gboolean title = TRUE; + const gchar *text; + gchar *text_tx_bytes, *text_rx_bytes; +- ++ + g_return_val_if_fail (info != NULL, FALSE); + + model = gtk_combo_box_get_model (GTK_COMBO_BOX (info->combo)); + text = info_get_nic (info); + if (!text) + return FALSE; +- ++ + #if defined(__linux__) + io = g_io_channel_new_file ("/proc/net/dev", "r", NULL); +- ++#elif defined(__FreeBSD__) ++ if (!g_shell_parse_argv ("/usr/bin/netstat -in -b -f link", NULL, &argv, NULL)) { ++ return FALSE; ++ } ++ if (!g_spawn_async_with_pipes (NULL, argv, NULL, 0, NULL, NULL, NULL, NULL, &pipe_out, NULL, NULL)) { ++ g_strfreev (argv); ++ return FALSE; ++ } ++ ++ g_strfreev (argv); ++ ++ io = g_io_channel_unix_new (pipe_out); ++#endif /* defined(__linux__) */ ++ + while (g_io_channel_read_line (io, &line, NULL, NULL, NULL) == G_IO_STATUS_NORMAL) { + if (title) { + title = FALSE; + g_free (line); + continue; + } ++#if defined(__linux__) + line = g_strdelimit (line, ":", ' '); + sscanf (line, "%s %s %s %s %s %s %s %s %s %s %s %s %s %s %s", iface, + rx_bytes, rx_pkt, rx_error, rx_drop, rx_fifo, frame, + compressed, multicast, + tx_bytes, tx_pkt, tx_error, tx_drop, tx_fifo, collissions); ++#elif defined(__FreeBSD__) ++ tokens = (gchar **) g_malloc0 (sizeof (gchar *) * 12); ++ p = strtok (line, " \t\n"); ++ /* We only care about 11 fields for now */ ++ for (i = 0; i < 11 && p; i++, p = strtok (NULL, " \t\n")) { ++ tokens[i] = g_strdup (p); ++ } ++ ++ if (i == 0 || i < 10) { ++ g_free (line); ++ g_strfreev (tokens); ++ continue; ++ } ++ ++ g_strlcpy (iface, tokens[0], sizeof (iface)); ++ ++ g_strlcpy (collissions, tokens[--i], sizeof (collissions)); ++ g_strlcpy (tx_bytes, tokens[--i], sizeof (tx_bytes)); ++ g_strlcpy (tx_error, tokens[--i], sizeof (tx_error)); ++ g_strlcpy (tx_pkt, tokens[--i], sizeof (tx_pkt)); ++ g_strlcpy (rx_bytes, tokens[--i], sizeof (rx_bytes)); ++ g_strlcpy (rx_error, tokens[--i], sizeof (rx_error)); ++ g_strlcpy (rx_pkt, tokens[--i], sizeof (rx_pkt)); ++ ++ g_strfreev (tokens); ++#endif /* defined(__linux__) */ + + if (g_ascii_strcasecmp (iface, text) == 0) { + /* +@@ -277,7 +369,9 @@ info_nic_update_stats (gpointer data) + } + + g_io_channel_unref (io); +-#endif /* defined(__linux__) */ ++#if defined(__FreeBSD__) ++ close (pipe_out); ++#endif /* defined(__FreeBSD__) */ + + return TRUE; + } +@@ -425,8 +519,19 @@ info_get_nic_information (const gchar *n + #ifdef __linux__ + mii_data_result data; + #endif ++#ifdef __FreeBSD__ ++ gint hwmib[6]; ++ size_t hwlen; ++ gchar *hwbuf; ++ guchar *hwptr; ++ struct if_msghdr *hwifm; ++ struct sockaddr_dl *hwsinptr; ++#endif + +- getifaddrs (&ifa0); ++ if (getifaddrs (&ifa0) != 0) { ++ g_warning ("getifaddrs failed: %s", g_strerror (errno)); ++ goto fail; ++ } + + for (ifr6 = ifa0; ifr6; ifr6 = ifr6->ifa_next) { + if (strcmp (ifr6->ifa_name, nic) != 0) { +@@ -510,6 +615,45 @@ info_get_nic_information (const gchar *n + (int) ((guchar *) &ifrcopy.ifr_hwaddr.sa_data)[3], + (int) ((guchar *) &ifrcopy.ifr_hwaddr.sa_data)[4], + (int) ((guchar *) &ifrcopy.ifr_hwaddr.sa_data)[5]); ++#elif defined(__FreeBSD__) ++ hwmib[0] = CTL_NET; ++ hwmib[1] = AF_ROUTE; ++ hwmib[2] = 0; ++ hwmib[3] = AF_LINK; ++ hwmib[4] = NET_RT_IFLIST; ++ if ((hwmib[5] = if_nametoindex (nic)) == 0) { ++ g_sprintf (dst, NOT_AVAILABLE); ++ goto hwfail; ++ } ++ if (sysctl (hwmib, 6, NULL, &hwlen, NULL, 0) < 0) { ++ g_sprintf (dst, NOT_AVAILABLE); ++ goto hwfail; ++ } ++ if ((hwbuf = g_malloc (hwlen)) == NULL) { ++ g_sprintf (dst, NOT_AVAILABLE); ++ goto hwfail; ++ } ++ if (sysctl (hwmib, 6, hwbuf, &hwlen, NULL, 0) < 0) { ++ g_sprintf (dst, NOT_AVAILABLE); ++ goto hwfail; ++ } ++ ++ hwifm = (struct if_msghdr *) hwbuf; ++ hwsinptr = (struct sockaddr_dl *) (hwifm + 1); ++ hwptr = (guchar *) LLADDR (hwsinptr); ++ if (*hwptr != 0 || *(hwptr + 1) != 0 || ++ *(hwptr + 2) != 0 || *(hwptr + 3) != 0 || ++ *(hwptr + 4) != 0 || *(hwptr + 5) != 0) { ++ g_sprintf (dst, "%02x:%02x:%02x:%02x:%02x:%02x", ++ *hwptr, *(hwptr + 1), *(hwptr + 2), ++ *(hwptr + 3), *(hwptr + 4), *(hwptr + 5)); ++ } ++ else { ++ g_sprintf (dst, NOT_AVAILABLE); ++ } ++ g_free (hwbuf); ++ ++hwfail: + #else + g_sprintf (dst, NOT_AVAILABLE); + #endif /* SIOCGIFHWADDR */ +@@ -625,6 +769,8 @@ info_get_nic_information (const gchar *n + } + + freeifaddrs (ifa0); ++fail: ++ ; + } + + static gint * diff --git a/net/gnome-nettool/files/patch-src_lookup.c b/net/gnome-nettool/files/patch-src_lookup.c new file mode 100644 index 000000000..9744c1397 --- /dev/null +++ b/net/gnome-nettool/files/patch-src_lookup.c @@ -0,0 +1,10 @@ +--- src/lookup.c.orig Sun Jul 3 17:47:02 2005 ++++ src/lookup.c Sun Jul 3 17:47:20 2005 +@@ -21,6 +21,7 @@ + #include <gtk/gtk.h> + #include <glib/gi18n.h> + #include <glib/gprintf.h> ++#include <sys/types.h> + + #include "lookup.h" + #include "utils.h" diff --git a/net/gnome-nettool/files/patch-src_netstat.c b/net/gnome-nettool/files/patch-src_netstat.c new file mode 100644 index 000000000..1eec84927 --- /dev/null +++ b/net/gnome-nettool/files/patch-src_netstat.c @@ -0,0 +1,20 @@ +--- src/netstat.c.orig Tue Jul 6 13:55:25 2004 ++++ src/netstat.c Fri Aug 20 15:55:40 2004 +@@ -108,12 +108,17 @@ + g_return_val_if_fail (netinfo != NULL, NULL); + + if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (netinfo->routing))) { ++#ifdef __FreeBSD__ ++ /* XXX We only support ipv4 now */ ++ option = g_strdup ("-rn -f inet"); ++#else + /* Works for Solaris and Linux */ + if (netinfo_is_ipv6_enable ()) { + option = g_strdup ("-rn -A inet -A inet6"); + } else { + option = g_strdup ("-rn -A inet"); + } ++#endif + + if (netinfo->stbar_text) + g_free (netinfo->stbar_text); diff --git a/net/gnome-nettool/files/patch-src_nettool.c b/net/gnome-nettool/files/patch-src_nettool.c new file mode 100644 index 000000000..1009298e6 --- /dev/null +++ b/net/gnome-nettool/files/patch-src_nettool.c @@ -0,0 +1,37 @@ +--- src/nettool.c.orig Fri Apr 14 08:36:08 2006 ++++ src/nettool.c Fri May 12 15:54:15 2006 +@@ -24,6 +24,7 @@ + #include <string.h> + #include <sys/types.h> + #include <sys/socket.h> ++#include <netinet/in.h> + #include <signal.h> + #include <errno.h> + #include <sys/wait.h> +@@ -360,6 +361,10 @@ netinfo_io_text_buffer_dialog (GIOChanne + len, NULL); + } + ++ g_free (text); ++ ++ return TRUE; ++ + } else if (status == G_IO_STATUS_AGAIN) { + char buf[1]; + +@@ -371,12 +376,13 @@ netinfo_io_text_buffer_dialog (GIOChanne + } + g_string_append_c (netinfo->command_output, buf[0]); + } ++ ++ g_free (text); ++ return TRUE; + } else if (status == G_IO_STATUS_EOF) { + } + + g_free (text); +- +- return TRUE; + } + + /* The condition is not G_IO_HUP | G_IO_ERR | G_IO_NVAL, so diff --git a/net/gnome-nettool/files/patch-src_utils.c b/net/gnome-nettool/files/patch-src_utils.c new file mode 100644 index 000000000..921c78049 --- /dev/null +++ b/net/gnome-nettool/files/patch-src_utils.c @@ -0,0 +1,20 @@ +--- src/utils.c.orig Fri May 6 16:10:28 2005 ++++ src/utils.c Sun Jul 3 17:48:12 2005 +@@ -24,6 +24,8 @@ + on GNOME 2.0 */ + + #include "utils.h" ++#include <stdlib.h> ++#include <limits.h> + #include <string.h> + #include <glib/gi18n.h> + +@@ -240,7 +242,7 @@ util_legible_bytes (gchar *bytes) + const gchar *unit = "B"; + gchar *result; + +- sscanf (bytes, "%lld", &rx); ++ rx = strtoull (bytes, (char **)NULL, 10); + short_rx = rx * 10; + + if (rx > 1125899906842624ull) { diff --git a/net/gnome-nettool/pkg-descr b/net/gnome-nettool/pkg-descr new file mode 100644 index 000000000..5619126fe --- /dev/null +++ b/net/gnome-nettool/pkg-descr @@ -0,0 +1,3 @@ +Gnome-nettool is a utility for getting network information such as interface +statistics, and for front-ending commands like ping and traceroute. It +is very similar to the MacOS X Network Utility. diff --git a/net/gnome-nettool/pkg-plist b/net/gnome-nettool/pkg-plist new file mode 100644 index 000000000..db33c4a00 --- /dev/null +++ b/net/gnome-nettool/pkg-plist @@ -0,0 +1,144 @@ +bin/gnome-nettool +share/applications/gnome-nettool.desktop +share/gnome-nettool/dialogs/gnome-nettool.glade +share/gnome-nettool/pixmaps/16_ethernet.xpm +share/gnome-nettool/pixmaps/16_loopback.xpm +share/gnome-nettool/pixmaps/16_plip.xpm +share/gnome-nettool/pixmaps/16_ppp.xpm +share/gnome-nettool/pixmaps/irda-16.png +share/gnome-nettool/pixmaps/network.png +share/gnome-nettool/pixmaps/wavelan-16.png +share/gnome/help/gnome-nettool/C/gnome-nettool.xml +share/gnome/help/gnome-nettool/C/legal.xml +share/gnome/help/gnome-nettool/fr/gnome-nettool.xml +share/gnome/help/gnome-nettool/pa/gnome-nettool.xml +share/gnome/help/gnome-nettool/sv/gnome-nettool.xml +share/omf/gnome-nettool/gnome-nettool-C.omf +share/omf/gnome-nettool/gnome-nettool-fr.omf +share/omf/gnome-nettool/gnome-nettool-pa.omf +share/omf/gnome-nettool/gnome-nettool-sv.omf +share/pixmaps/gnome-nettool.png +share/icons/hicolor/48x48/apps/gnome-nettool.png +share/locale/ar/LC_MESSAGES/gnome-nettool.mo +share/locale/az/LC_MESSAGES/gnome-nettool.mo +share/locale/bg/LC_MESSAGES/gnome-nettool.mo +share/locale/bn/LC_MESSAGES/gnome-nettool.mo +share/locale/bn_IN/LC_MESSAGES/gnome-nettool.mo +share/locale/bs/LC_MESSAGES/gnome-nettool.mo +share/locale/ca/LC_MESSAGES/gnome-nettool.mo +share/locale/cs/LC_MESSAGES/gnome-nettool.mo +share/locale/cy/LC_MESSAGES/gnome-nettool.mo +share/locale/da/LC_MESSAGES/gnome-nettool.mo +share/locale/de/LC_MESSAGES/gnome-nettool.mo +share/locale/dz/LC_MESSAGES/gnome-nettool.mo +share/locale/el/LC_MESSAGES/gnome-nettool.mo +share/locale/en_CA/LC_MESSAGES/gnome-nettool.mo +share/locale/en_GB/LC_MESSAGES/gnome-nettool.mo +share/locale/es/LC_MESSAGES/gnome-nettool.mo +share/locale/et/LC_MESSAGES/gnome-nettool.mo +share/locale/eu/LC_MESSAGES/gnome-nettool.mo +share/locale/fa/LC_MESSAGES/gnome-nettool.mo +share/locale/fi/LC_MESSAGES/gnome-nettool.mo +share/locale/fr/LC_MESSAGES/gnome-nettool.mo +share/locale/ga/LC_MESSAGES/gnome-nettool.mo +share/locale/gl/LC_MESSAGES/gnome-nettool.mo +share/locale/gu/LC_MESSAGES/gnome-nettool.mo +share/locale/he/LC_MESSAGES/gnome-nettool.mo +share/locale/hi/LC_MESSAGES/gnome-nettool.mo +share/locale/hr/LC_MESSAGES/gnome-nettool.mo +share/locale/hu/LC_MESSAGES/gnome-nettool.mo +share/locale/id/LC_MESSAGES/gnome-nettool.mo +share/locale/it/LC_MESSAGES/gnome-nettool.mo +share/locale/ja/LC_MESSAGES/gnome-nettool.mo +share/locale/ka/LC_MESSAGES/gnome-nettool.mo +share/locale/ko/LC_MESSAGES/gnome-nettool.mo +share/locale/ku/LC_MESSAGES/gnome-nettool.mo +share/locale/lt/LC_MESSAGES/gnome-nettool.mo +share/locale/lv/LC_MESSAGES/gnome-nettool.mo +share/locale/mg/LC_MESSAGES/gnome-nettool.mo +share/locale/mk/LC_MESSAGES/gnome-nettool.mo +share/locale/ml/LC_MESSAGES/gnome-nettool.mo +share/locale/mn/LC_MESSAGES/gnome-nettool.mo +share/locale/ms/LC_MESSAGES/gnome-nettool.mo +share/locale/nb/LC_MESSAGES/gnome-nettool.mo +share/locale/ne/LC_MESSAGES/gnome-nettool.mo +share/locale/nl/LC_MESSAGES/gnome-nettool.mo +share/locale/or/LC_MESSAGES/gnome-nettool.mo +share/locale/pa/LC_MESSAGES/gnome-nettool.mo +share/locale/pl/LC_MESSAGES/gnome-nettool.mo +share/locale/pt/LC_MESSAGES/gnome-nettool.mo +share/locale/pt_BR/LC_MESSAGES/gnome-nettool.mo +share/locale/ro/LC_MESSAGES/gnome-nettool.mo +share/locale/ru/LC_MESSAGES/gnome-nettool.mo +share/locale/rw/LC_MESSAGES/gnome-nettool.mo +share/locale/sk/LC_MESSAGES/gnome-nettool.mo +share/locale/sl/LC_MESSAGES/gnome-nettool.mo +share/locale/sq/LC_MESSAGES/gnome-nettool.mo +share/locale/sr/LC_MESSAGES/gnome-nettool.mo +share/locale/sr@Latn/LC_MESSAGES/gnome-nettool.mo +share/locale/sv/LC_MESSAGES/gnome-nettool.mo +share/locale/ta/LC_MESSAGES/gnome-nettool.mo +share/locale/th/LC_MESSAGES/gnome-nettool.mo +share/locale/tr/LC_MESSAGES/gnome-nettool.mo +share/locale/uk/LC_MESSAGES/gnome-nettool.mo +share/locale/vi/LC_MESSAGES/gnome-nettool.mo +share/locale/wa/LC_MESSAGES/gnome-nettool.mo +share/locale/xh/LC_MESSAGES/gnome-nettool.mo +share/locale/zh_CN/LC_MESSAGES/gnome-nettool.mo +share/locale/zh_HK/LC_MESSAGES/gnome-nettool.mo +share/locale/zh_TW/LC_MESSAGES/gnome-nettool.mo +@dirrmtry share/locale/zh_TW/LC_MESSAGES +@dirrmtry share/locale/zh_TW +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/zh_CN/LC_MESSAGES +@dirrmtry share/locale/zh_CN +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/uk/LC_MESSAGES +@dirrmtry share/locale/uk +@dirrmtry share/locale/sr/LC_MESSAGES +@dirrmtry share/locale/sr +@dirrmtry share/locale/sl/LC_MESSAGES +@dirrmtry share/locale/sl +@dirrmtry share/locale/sk/LC_MESSAGES +@dirrmtry share/locale/sk +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/ro/LC_MESSAGES +@dirrmtry share/locale/ro +@dirrmtry share/locale/pt/LC_MESSAGES +@dirrmtry share/locale/pt +@dirrmtry share/locale/pl/LC_MESSAGES +@dirrmtry share/locale/pl +@dirrmtry share/locale/ne/LC_MESSAGES +@dirrmtry share/locale/ne +@dirrmtry share/locale/mg/LC_MESSAGES +@dirrmtry share/locale/mg +@dirrmtry share/locale/ku/LC_MESSAGES +@dirrmtry share/locale/ku +@dirrmtry share/locale/ko/LC_MESSAGES +@dirrmtry share/locale/ko +@dirrmtry share/locale/gl/LC_MESSAGES +@dirrmtry share/locale/gl +@dirrmtry share/locale/fi/LC_MESSAGES +@dirrmtry share/locale/fi +@dirrmtry share/locale/el/LC_MESSAGES +@dirrmtry share/locale/el +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/cs/LC_MESSAGES +@dirrmtry share/locale/cs +@dirrmtry share/locale/ca/LC_MESSAGES +@dirrmtry share/locale/ca +@dirrmtry share/locale/bn_IN/LC_MESSAGES +@dirrmtry share/locale/bn_IN +@dirrm share/omf/gnome-nettool +@dirrm share/gnome/help/gnome-nettool/sv +@dirrm share/gnome/help/gnome-nettool/pa +@dirrm share/gnome/help/gnome-nettool/fr +@dirrm share/gnome/help/gnome-nettool/C +@dirrm share/gnome/help/gnome-nettool +@dirrm share/gnome-nettool/pixmaps +@dirrm share/gnome-nettool/dialogs +@dirrm share/gnome-nettool |