import gnome-nettool 3.0.0

GNOME Nettool is a set of front-ends to various networking command-line
tools, like ping, netstat, ifconfig, whois, traceroute, finger.

ok aja@
This commit is contained in:
jasper 2011-05-17 17:21:35 +00:00
parent 131ac97219
commit 91c74351ca
12 changed files with 514 additions and 0 deletions

View File

@ -0,0 +1,40 @@
# $OpenBSD: Makefile,v 1.1.1.1 2011/05/17 17:21:35 jasper Exp $
COMMENT= GNOME interface for various networking tools
GNOME_PROJECT= gnome-nettool
GNOME_VERSION= 3.0.0
CATEGORIES= net
# GPLv3
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB += GL X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
WANTLIB += Xi Xinerama Xrandr Xrender Xxf86vm atk-1.0 c cairo
WANTLIB += cairo-gobject drm expat fontconfig freetype gdk-3 gdk_pixbuf-2.0
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 gthread-2.0
WANTLIB += gtk-3 gtop-2.0 kvm m pango-1.0 pangocairo-1.0 pangoft2-1.0
WANTLIB += pcre pixman-1 png pthread pthread-stubs xcb xcb-render
WANTLIB += xcb-shm z
MODULES= devel/dconf \
devel/gettext \
x11/gnome
LIB_DEPENDS= devel/libgtop2 \
x11/gtk+3
BUILD_DEPENDS= devel/gsettings-desktop-schemas
RUN_DEPENDS= devel/gsettings-desktop-schemas
MODGNOME_HELP_FILES= Yes
DESKTOP_FILES= Yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
.include <bsd.port.mk>

View File

@ -0,0 +1,5 @@
MD5 (gnome/gnome-nettool-3.0.0.tar.bz2) = mHtbdd2dcAIpNNkAEk171w==
RMD160 (gnome/gnome-nettool-3.0.0.tar.bz2) = KVxVSebmD4/4Lg3exPHH+EdhFWs=
SHA1 (gnome/gnome-nettool-3.0.0.tar.bz2) = N+xaSQCe83ifjGAfnyqmOFGRGf8=
SHA256 (gnome/gnome-nettool-3.0.0.tar.bz2) = a3XuXeVPrmfbC6cQ6LM0pbH80YcZ04rgm53QX14lVek=
SIZE (gnome/gnome-nettool-3.0.0.tar.bz2) = 650660

View File

@ -0,0 +1,21 @@
$OpenBSD: patch-src_callbacks_c,v 1.1.1.1 2011/05/17 17:21:35 jasper Exp $
--- src/callbacks.c.orig Thu Dec 2 10:26:14 2010
+++ src/callbacks.c Tue May 17 18:06:38 2011
@@ -293,12 +293,11 @@ gn_quit_app (GtkWidget * widget, gpointer data)
{
gint status, pid;
- pid = getpid () + 1;
- while (waitpid (-1, &status, WNOHANG) == 0) {
- if (waitpid (pid, &status, WNOHANG) == 0)
- kill (pid, SIGKILL);
- pid ++;
- }
+ pid = getpid ();
+ if (childpid > 0)
+ kill (childpid, SIGKILL);
+ if (waitpid (pid, &status, WNOHANG) == 0)
+ kill (pid, SIGKILL);
netinfo_progress_indicator_stop (NULL);

View File

@ -0,0 +1,79 @@
$OpenBSD: patch-src_info_c,v 1.1.1.1 2011/05/17 17:21:35 jasper Exp $
--- src/info.c.orig Tue Sep 22 15:30:34 2009
+++ src/info.c Tue Mar 30 15:42:12 2010
@@ -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>
@@ -37,6 +41,9 @@
#include <sys/ioctl.h>
#include <stdlib.h>
#include <net/if.h>
+#if defined (__FreeBSD__) || defined (__OpenBSD__)
+#include <net/if_media.h>
+#endif
#include <glibtop.h>
#include <glibtop/netlist.h>
@@ -61,6 +68,7 @@ static InfoInterfaceDescription info_iface_desc [] = {
{ 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 },
@@ -131,9 +139,44 @@ info_get_interface_from_dev_name (const gchar *dev_nam
{
gint i;
gchar *path;
-
+ gchar *dev_type = NULL;
+#if defined (__FreeBSD__) || defined (__OpenBSD__)
+ 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:
+#ifdef IFM_TOKEN
+ case IFM_TOKEN:
+#endif
+#ifdef IFM_ATM
+ case IFM_ATM:
+#endif
+ dev_type = "other_type";
+ break;
+ case IFM_IEEE80211:
+ dev_type = "wlan";
+ break;
+ }
+ }
+ close (s);
+ }
+#endif /* defined (__FreeBSD__) || defined (__OpenBSD__) */
+
+ 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);

View File

@ -0,0 +1,11 @@
$OpenBSD: patch-src_lookup_c,v 1.1.1.1 2011/05/17 17:21:35 jasper Exp $
--- src/lookup.c.orig Tue Sep 22 15:30:34 2009
+++ src/lookup.c Tue Mar 30 15:38:12 2010
@@ -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"

View File

@ -0,0 +1,61 @@
$OpenBSD: patch-src_netstat_c,v 1.1.1.1 2011/05/17 17:21:35 jasper Exp $
--- src/netstat.c.orig Tue Mar 30 06:11:19 2010
+++ src/netstat.c Wed Apr 21 11:35:42 2010
@@ -110,12 +110,17 @@ netstat_get_active_option (Netinfo * netinfo)
g_return_val_if_fail (netinfo != NULL, NULL);
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (netinfo->routing))) {
+#if defined (__FreeBSD__) || defined (__OpenBSD__)
+ /* 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);
@@ -485,8 +490,10 @@ netstat_route_tree_insert (GtkTreeView *widget, gchar
g_return_if_fail (line != NULL);
count = strip_route_line (line, &data);
-#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
+#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__DragonFly__)
if (count == 6) {
+#elif defined(__OpenBSD__)
+ if (count == 8) {
#else
if ((count == 8) || (count == 7)) {
#endif
@@ -557,16 +564,25 @@ strip_route_line (gchar * line, netstat_route_data *da
gint count = 0;
gchar flags[30];
gint ref, use;
-#ifndef __FreeBDD__
+#if !defined (__FreeBSD__) && !defined(__OpenBSD__)
gchar dest[50];
gchar **items;
#endif
+#if defined(__OpenBSD__)
+ gint mtu, prio;
+#endif
-#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
count = sscanf (line, NETSTAT_ROUTE_FORMAT,
data->destination,
data->gateway, flags,
&ref, &use, data->iface);
+#elif defined(__OpenBSD__)
+ count = sscanf (line, NETSTAT_ROUTE_FORMAT,
+ data->destination,
+ data->gateway, flags,
+ &ref, &use, &mtu, &prio,
+ data->iface);
#else
count = sscanf (line, NETSTAT_ROUTE_FORMAT,
data->destination,

View File

@ -0,0 +1,21 @@
$OpenBSD: patch-src_netstat_h,v 1.1.1.1 2011/05/17 17:21:35 jasper Exp $
--- src/netstat.h.orig Tue Mar 30 06:11:19 2010
+++ src/netstat.h Wed Apr 21 11:33:10 2010
@@ -30,10 +30,16 @@
# define NETSTAT_ROUTE6_FORMAT "%s %s %s %d %d %d %s"
# define NETSTAT_MULTICAST_FORMAT "%s %d %s"
-#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
+#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__DragonFly__)
# define NETSTAT_PROTOCOL_FORMAT "%s %d %d %d.%d.%d.%d.%s %s %s"
# define ALT_NETSTAT_PROTOCOL_FORMAT "%s %d %d *.%s %s %s"
# define NETSTAT_ROUTE_FORMAT "%s %s %s %d %d %s"
+# define NETSTAT_MULTICAST_FORMAT "%s %d %s"
+
+#elif defined(__OpenBSD__)
+# define NETSTAT_PROTOCOL_FORMAT "%s %d %d %d.%d.%d.%d.%s %s %s"
+# define ALT_NETSTAT_PROTOCOL_FORMAT "%s %d %d *.%s %s %s"
+# define NETSTAT_ROUTE_FORMAT "%s %s %s %d %d %s %d %s"
# define NETSTAT_MULTICAST_FORMAT "%s %d %s"
#endif

View File

@ -0,0 +1,50 @@
$OpenBSD: patch-src_nettool_c,v 1.1.1.1 2011/05/17 17:21:35 jasper Exp $
--- src/nettool.c.orig Tue Sep 22 15:30:34 2009
+++ src/nettool.c Tue Mar 30 15:38:15 2010
@@ -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>
@@ -374,6 +375,10 @@ netinfo_io_text_buffer_dialog (GIOChannel * channel,
len, NULL);
}
+ g_free (text);
+
+ return TRUE;
+
} else if (status == G_IO_STATUS_AGAIN) {
char buf[1];
@@ -385,6 +390,8 @@ netinfo_io_text_buffer_dialog (GIOChannel * channel,
}
g_string_append_c (netinfo->command_output, buf[0]);
}
+ g_free (text);
+ return TRUE;
} else if (status == G_IO_STATUS_EOF) {
} else if (status == G_IO_STATUS_ERROR) {
@@ -402,15 +409,15 @@ netinfo_io_text_buffer_dialog (GIOChannel * channel,
} else {
g_warning ("Error: %s\n", err->message);
- g_free (text);
g_free (err);
}
+ g_free (text);
+ return TRUE;
+
}
g_free (text);
-
- return TRUE;
}
/* The condition is not G_IO_HUP | G_IO_ERR | G_IO_NVAL, so

View File

@ -0,0 +1,35 @@
$OpenBSD: patch-src_scan_c,v 1.1.1.1 2011/05/17 17:21:35 jasper Exp $
--- src/scan.c.orig Sat Apr 17 10:26:17 2010
+++ src/scan.c Sat Apr 17 10:26:39 2010
@@ -67,7 +67,6 @@ scan_do (Netinfo * netinfo)
GIOChannel *channel;
GIOChannel *channel2;
gint pfd[2];
- gint pid;
gchar buf[SIZE];
gchar *service_name = NULL;
gint ip_version, pf;
@@ -126,12 +125,12 @@ scan_do (Netinfo * netinfo)
netinfo_toggle_state (netinfo, INACTIVE, NULL);
- if ((pid = fork ()) < 0) {
+ if ((childpid = fork ()) < 0) {
perror ("fork failed");
return;
}
- if (pid == 0) {
+ if (childpid == 0) {
/* child */
close (pfd[0]);
for (i = start_port; i <= end_port; i++) {
@@ -183,7 +182,7 @@ scan_do (Netinfo * netinfo)
/* parent */
close (pfd[1]);
- netinfo->child_pid = pid;
+ netinfo->child_pid = childpid;
netinfo->pipe_out = pfd[0];
channel2 = g_io_channel_unix_new (pfd[0]);

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_utils_h,v 1.1.1.1 2011/05/17 17:21:35 jasper Exp $
--- src/utils.h.orig Sat Apr 17 10:25:25 2010
+++ src/utils.h Sat Apr 17 10:26:07 2010
@@ -29,6 +29,8 @@
# include <config.h>
#endif
+gint childpid;
+
#if (GLIB_MINOR_VERSION < 2)
# define _g_vsprintf vsprintf

View File

@ -0,0 +1,2 @@
GNOME Nettool is a set of front-ends to various networking command-line
tools, like ping, netstat, ifconfig, whois, traceroute, finger.

View File

@ -0,0 +1,177 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2011/05/17 17:21:35 jasper Exp $
@bin bin/gnome-nettool
share/applications/gnome-nettool.desktop
share/glib-2.0/schemas/org.gnome.gnome-nettool.gschema.xml
share/gnome-nettool/
share/gnome-nettool/pixmaps/
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/gnome-nettool.png
share/gnome-nettool/pixmaps/irda-16.png
share/gnome-nettool/pixmaps/network.png
share/gnome-nettool/pixmaps/wavelan-16.png
share/gnome-nettool/ui/
share/gnome-nettool/ui/gnome-nettool.ui
share/gnome/help/gnome-nettool/
share/gnome/help/gnome-nettool/C/
share/gnome/help/gnome-nettool/C/gnome-nettool.xml
share/gnome/help/gnome-nettool/C/legal.xml
share/gnome/help/gnome-nettool/ca/
share/gnome/help/gnome-nettool/ca/gnome-nettool.xml
share/gnome/help/gnome-nettool/cs/
share/gnome/help/gnome-nettool/cs/gnome-nettool.xml
share/gnome/help/gnome-nettool/da/
share/gnome/help/gnome-nettool/da/gnome-nettool.xml
share/gnome/help/gnome-nettool/de/
share/gnome/help/gnome-nettool/de/gnome-nettool.xml
share/gnome/help/gnome-nettool/el/
share/gnome/help/gnome-nettool/el/gnome-nettool.xml
share/gnome/help/gnome-nettool/en_GB/
share/gnome/help/gnome-nettool/en_GB/gnome-nettool.xml
share/gnome/help/gnome-nettool/es/
share/gnome/help/gnome-nettool/es/gnome-nettool.xml
share/gnome/help/gnome-nettool/fr/
share/gnome/help/gnome-nettool/fr/gnome-nettool.xml
share/gnome/help/gnome-nettool/oc/
share/gnome/help/gnome-nettool/oc/gnome-nettool.xml
share/gnome/help/gnome-nettool/pa/
share/gnome/help/gnome-nettool/pa/gnome-nettool.xml
share/gnome/help/gnome-nettool/pt_BR/
share/gnome/help/gnome-nettool/pt_BR/gnome-nettool.xml
share/gnome/help/gnome-nettool/ru/
share/gnome/help/gnome-nettool/ru/gnome-nettool.xml
share/gnome/help/gnome-nettool/sv/
share/gnome/help/gnome-nettool/sv/gnome-nettool.xml
share/gnome/help/gnome-nettool/uk/
share/gnome/help/gnome-nettool/uk/gnome-nettool.xml
share/gnome/help/gnome-nettool/vi/
share/gnome/help/gnome-nettool/vi/gnome-nettool.xml
share/gnome/help/gnome-nettool/zh_CN/
share/gnome/help/gnome-nettool/zh_CN/gnome-nettool.xml
share/icons/hicolor/16x16/
share/icons/hicolor/16x16/apps/
share/icons/hicolor/16x16/apps/gnome-nettool.png
share/icons/hicolor/22x22/
share/icons/hicolor/22x22/apps/
share/icons/hicolor/22x22/apps/gnome-nettool.png
share/icons/hicolor/24x24/
share/icons/hicolor/24x24/apps/
share/icons/hicolor/24x24/apps/gnome-nettool.png
share/icons/hicolor/32x32/
share/icons/hicolor/32x32/apps/
share/icons/hicolor/32x32/apps/gnome-nettool.png
share/icons/hicolor/scalable/
share/icons/hicolor/scalable/apps/
share/icons/hicolor/scalable/apps/gnome-nettool.svg
share/locale/af/LC_MESSAGES/gnome-nettool.mo
share/locale/ar/LC_MESSAGES/gnome-nettool.mo
share/locale/as/LC_MESSAGES/gnome-nettool.mo
share/locale/ast/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/br/LC_MESSAGES/gnome-nettool.mo
share/locale/bs/LC_MESSAGES/gnome-nettool.mo
share/locale/ca/LC_MESSAGES/gnome-nettool.mo
share/locale/ca@valencia/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@shaw/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/kn/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/mai/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/mr/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/nn/LC_MESSAGES/gnome-nettool.mo
share/locale/oc/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/ps/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/si/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@latin/LC_MESSAGES/gnome-nettool.mo
share/locale/sv/LC_MESSAGES/gnome-nettool.mo
share/locale/ta/LC_MESSAGES/gnome-nettool.mo
share/locale/te/LC_MESSAGES/gnome-nettool.mo
share/locale/th/LC_MESSAGES/gnome-nettool.mo
share/locale/tr/LC_MESSAGES/gnome-nettool.mo
share/locale/ug/LC_MESSAGES/gnome-nettool.mo
share/locale/uk/LC_MESSAGES/gnome-nettool.mo
share/locale/uz/LC_MESSAGES/gnome-nettool.mo
share/locale/uz@cyrillic/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
share/omf/
share/omf/gnome-nettool/
share/omf/gnome-nettool/gnome-nettool-C.omf
share/omf/gnome-nettool/gnome-nettool-ca.omf
share/omf/gnome-nettool/gnome-nettool-cs.omf
share/omf/gnome-nettool/gnome-nettool-da.omf
share/omf/gnome-nettool/gnome-nettool-de.omf
share/omf/gnome-nettool/gnome-nettool-el.omf
share/omf/gnome-nettool/gnome-nettool-en_GB.omf
share/omf/gnome-nettool/gnome-nettool-es.omf
share/omf/gnome-nettool/gnome-nettool-fr.omf
share/omf/gnome-nettool/gnome-nettool-oc.omf
share/omf/gnome-nettool/gnome-nettool-pa.omf
share/omf/gnome-nettool/gnome-nettool-pt_BR.omf
share/omf/gnome-nettool/gnome-nettool-ru.omf
share/omf/gnome-nettool/gnome-nettool-sv.omf
share/omf/gnome-nettool/gnome-nettool-uk.omf
share/omf/gnome-nettool/gnome-nettool-vi.omf
share/omf/gnome-nettool/gnome-nettool-zh_CN.omf
@exec %D/bin/gtk-update-icon-cache -q -f -t %D/share/icons/hicolor 2> /dev/null || true
@unexec-delete %D/bin/gtk-update-icon-cache -q -f -t %D/share/icons/hicolor 2> /dev/null || true
@exec %D/bin/update-desktop-database
@unexec-delete %D/bin/update-desktop-database
@exec %D/bin/glib-compile-schemas %D/share/glib-2.0/schemas
@unexec-delete %D/bin/glib-compile-schemas %D/share/glib-2.0/schemas