summaryrefslogtreecommitdiff
path: root/net/netspeed_applet/files
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-04-11 12:42:45 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-04-11 12:42:45 +0000
commit2c8c6c8970972a7da5a3ee28fc61a52f90059c94 (patch)
treed0941216885b3e1a441f3cd818ed315d94f5893e /net/netspeed_applet/files
parentSupport stage (diff)
2014-04-10 deskutils/nautilus-locked-folder: nautilus will be updated to the 3.x version which is not compatible with 2.x
2014-04-10 www/screem: gnome-menus 2.x will be updated in the GNOME 3 import 2014-04-10 deskutils/nautilus-actions: nautilus will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 deskutils/nautilus-sendto: nautilus will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 deskutils/nautilus-open-terminal: nautilus will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 sysutils/eiciel: nautilus will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 sysutils/nautilus-cd-burner: nautilus will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 x11-fm/py-nautilus: nautilus will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 sysutils/sensors-applet: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 net/link-monitor-applet: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 net/netspeed_applet: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 net/remmina-applet: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 misc/uf-view: gnome-desktop 2.x will be updated in the GNOME 3 import 2014-04-10 textproc/uim-gnome: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 audio/istream: gnome-panel will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 mail/contact-lookup-applet: gnome-panel will be updated to the 3.x version which is not compatible with 2.x 2014-04-10 security/tuntun: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 misc/quick-lounge-applet: gnome-panel 2.x will be updated in the GNOME 3 import 2014-04-10 sysutils/bubblemon2: gnome-panel 2.x will be updated in the GNOME 3 import
Diffstat (limited to 'net/netspeed_applet/files')
-rw-r--r--net/netspeed_applet/files/patch-src_netspeed.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/net/netspeed_applet/files/patch-src_netspeed.c b/net/netspeed_applet/files/patch-src_netspeed.c
deleted file mode 100644
index 11baff12d0d0..000000000000
--- a/net/netspeed_applet/files/patch-src_netspeed.c
+++ /dev/null
@@ -1,28 +0,0 @@
---- src/netspeed.c.orig 2006-09-28 05:54:52.000000000 -0400
-+++ src/netspeed.c 2008-02-25 14:24:13.000000000 -0500
-@@ -23,6 +23,7 @@
- #include <panel-applet.h>
- #include <panel-applet-gconf.h>
- #include <gconf/gconf-client.h>
-+#include <glibtop.h>
- #include "backend.h"
- #include "netspeed.h"
-
-@@ -1493,7 +1494,7 @@ netspeed_applet_factory(PanelApplet *app
- GList *ptr, *devices = get_available_devices();
- ptr = devices;
- while (ptr) {
-- if (!g_str_equal(ptr->data, "lo")) {
-+ if (!g_str_equal(ptr->data, "lo0")) {
- get_device_info(ptr->data, &applet->devinfo);
- break;
- }
-@@ -1502,7 +1503,7 @@ netspeed_applet_factory(PanelApplet *app
- free_devices_list(devices);
- }
- if (!applet->devinfo.name)
-- get_device_info("lo", &applet->devinfo);
-+ get_device_info("lo0", &applet->devinfo);
- applet->device_has_changed = TRUE;
-
- applet->tooltips = gtk_tooltips_new();