diff options
Diffstat (limited to 'net')
36 files changed, 0 insertions, 1957 deletions
diff --git a/net/gnome-netstatus/Makefile b/net/gnome-netstatus/Makefile deleted file mode 100644 index ebb3d6bda..000000000 --- a/net/gnome-netstatus/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# New ports collection makefile for: gnomenetstatus -# Date Created: 05 December 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= gnome-netstatus -PORTVERSION= 2.12.2 -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 - -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_BZIP2= yes -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 deleted file mode 100644 index 72f18f1c2..000000000 --- a/net/gnome-netstatus/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-netstatus-2.12.2.tar.bz2) = f1f9e18b48d46adb32c9002e4325f80e -SHA256 (gnome2/gnome-netstatus-2.12.2.tar.bz2) = 50c8b1abe1e5d813cf651bf12d1b39b00b22fadc0ee886135e5f9a08e3969943 -SIZE (gnome2/gnome-netstatus-2.12.2.tar.bz2) = 525222 diff --git a/net/gnome-netstatus/files/patch-src_netstatus-sysdeps.c b/net/gnome-netstatus/files/patch-src_netstatus-sysdeps.c deleted file mode 100644 index dca19039a..000000000 --- a/net/gnome-netstatus/files/patch-src_netstatus-sysdeps.c +++ /dev/null @@ -1,212 +0,0 @@ ---- src/netstatus-sysdeps.c.orig 2007-02-13 04:39:19.000000000 -0500 -+++ src/netstatus-sysdeps.c 2008-04-23 13:07:24.000000000 -0400 -@@ -37,13 +37,26 @@ - - #ifdef __FreeBSD__ - #include <sys/types.h> -+#include <sys/param.h> - #include <sys/socket.h> - #include <sys/ioctl.h> -+#include <ifaddrs.h> - #include <net/if.h> -+#include <net/if_media.h> - #include <net/if_var.h> -+#if __FreeBSD_version < 700046 - #include <dev/an/if_aironet_ieee.h> - #include <dev/wi/if_wavelan_ieee.h> - #endif -+#if __FreeBSD_version >= 602000 -+#include <net80211/ieee80211.h> -+#include <net80211/ieee80211_ioctl.h> -+#endif -+#include <stdlib.h> -+#ifndef IEEE80211_ADDR_COPY -+#define IEEE80211_ADDR_COPY(dst, src) memcpy(dst, src, IEEE80211_ADDR_LEN) -+#endif -+#endif - - static inline gboolean - parse_stats (char *buf, -@@ -426,15 +439,16 @@ wireless_getval (const char *iface, - return TRUE; - } - -+#if __FreeBSD_version < 700046 - 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 +500,11 @@ get_wi_data (const char *iface, - level = (int) wreq.wi_val[1]; - - #ifdef WI_RID_READ_APS -- if (signal_strength <= 0) -+ if (level <= 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 +524,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 -@@ -527,6 +541,77 @@ get_wi_data (const char *iface, - - return error; - } -+#endif -+ -+#if __FreeBSD_version >= 602000 -+static inline char * -+get_net80211_data (const char *iface, -+ int *signal_strength) -+{ -+ struct ieee80211req_sta_info *si; -+ struct ieee80211req ireq; -+ int level; -+ int s; -+ uint8_t mac[IEEE80211_ADDR_LEN]; -+ int8_t noise; -+ char *error = NULL; -+ union { -+ struct ieee80211req_sta_req info; -+ char buf[1024]; -+ } u_info; -+ -+ memset (&u_info, 0, sizeof (u_info)); -+ memset (&ireq, 0, sizeof (ireq)); -+ -+ strlcpy (ireq.i_name, iface, sizeof (ireq.i_name)); -+ ireq.i_type = IEEE80211_IOC_BSSID; -+ ireq.i_data = mac; -+ ireq.i_len = IEEE80211_ADDR_LEN; -+ -+ s = socket (AF_INET, SOCK_DGRAM, 0); -+ if (s == -1) -+ { -+ error = g_strdup_printf (_("Could not connect to interface, '%s'"), iface); -+ return error; -+ } -+ -+ if (ioctl (s, SIOCG80211, &ireq) == -1) -+ { -+ error = g_strdup_printf (_("Could not get MAC for interface, '%s'"), iface); -+ close (s); -+ return error; -+ } -+ -+ IEEE80211_ADDR_COPY (u_info.info.is_u.macaddr, mac); -+ ireq.i_type = IEEE80211_IOC_STA_INFO; -+ ireq.i_data = (caddr_t) &u_info; -+ ireq.i_len = sizeof (u_info); -+ -+ if (ioctl (s, SIOCG80211, &ireq) == -1) -+ { -+ error = g_strdup_printf (_("Could not send ioctl to interface, '%s'"), iface); -+ close (s); -+ return error; -+ } -+ -+ close (s); -+ -+ si = &u_info.info.info[0]; -+ noise = si->isi_noise; -+ if (si->isi_rssi == 0) -+ level = 0; -+ else -+ { -+ if (noise == 0) -+ noise = -95; -+ level = (int) abs (rint ((si->isi_rssi / (si->isi_rssi/2. + noise)) * 100.0)); -+ level = CLAMP (level, 0, 100); -+ } -+ -+ memcpy (signal_strength, &level, sizeof (signal_strength)); -+ return error; -+} -+#endif - - char * - netstatus_sysdeps_read_iface_wireless_details (const char *iface, -@@ -544,25 +629,52 @@ netstatus_sysdeps_read_iface_wireless_de - if (signal_strength) - *signal_strength = 0; - -+#if __FreeBSD_version < 800036 - if (g_strncasecmp (iface, "an", 2) && - 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, "rum", 3) && -+ g_strncasecmp (iface, "ray", 3) && - g_strncasecmp (iface, "acx", 3)) -+#else -+ if (g_strncasecmp (iface, "wlan", 4)) -+#endif - return error_message; - -+#if __FreeBSD_version < 700046 - if (g_strncasecmp (iface, "an", 2) == 0) - { - error_message = get_an_data (iface, signal_strength); - *is_wireless = TRUE; - } -+#endif -+#if __FreeBSD_version >= 602000 -+#if __FreeBSD_version < 700046 -+ else if (g_strncasecmp (iface, "wi", 2) == 0) -+ { -+ error_message = get_wi_data (iface, signal_strength); -+ *is_wireless = TRUE; -+ } -+ else -+#endif -+ { -+ error_message = get_net80211_data (iface, signal_strength); -+ *is_wireless = TRUE; -+ } -+#else -+#if __FreeBSD_version < 700046 - else - { - error_message = get_wi_data (iface, signal_strength); - *is_wireless = TRUE; - } -+#endif -+#endif - - return error_message; - } diff --git a/net/gnome-netstatus/pkg-descr b/net/gnome-netstatus/pkg-descr deleted file mode 100644 index 0848cf01f..000000000 --- a/net/gnome-netstatus/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index 9cb23623a..000000000 --- a/net/gnome-netstatus/pkg-plist +++ /dev/null @@ -1,312 +0,0 @@ -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/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/C/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/C/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/C/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/C/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/C/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/C/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/C/legal.xml -share/gnome/help/gnome-netstatus/bg/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/bg/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/bg/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/bg/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/bg/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/bg/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/bg/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/ca/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/ca/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/ca/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/ca/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/ca/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/ca/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/ca/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/en_GB/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/en_GB/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/en_GB/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/en_GB/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/en_GB/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/en_GB/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/en_GB/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/es/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/es/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/es/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/es/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/es/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/es/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/es/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/fr/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/fr/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/fr/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/fr/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/fr/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/fr/figures/gnome-netstatus-txrx.png -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/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/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/nl/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/nl/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/nl/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/nl/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/nl/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/nl/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/oc/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/oc/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/oc/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/oc/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/oc/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/oc/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/oc/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/pa/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/pa/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/pa/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/pa/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/pa/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/pa/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/pa/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/ru/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/ru/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/ru/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/ru/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/ru/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/ru/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/ru/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/sv/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/sv/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/sv/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/sv/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/sv/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/sv/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/sv/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/th/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/th/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/th/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/th/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/th/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/th/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/th/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/uk/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/uk/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/uk/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/uk/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/uk/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/uk/figures/gnome-netstatus-txrx.png -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-ca.omf -share/omf/gnome-netstatus/gnome-netstatus-bg.omf -share/omf/gnome-netstatus/gnome-netstatus-de.omf -share/omf/gnome-netstatus/gnome-netstatus-en_GB.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-oc.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-th.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/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/af/LC_MESSAGES/gnome-netstatus.mo -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/fur/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/is/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/kn/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/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/oc/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/sq/LC_MESSAGES/gnome-netstatus.mo -share/locale/sr/LC_MESSAGES/gnome-netstatus.mo -share/locale/sr@latin/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/uz/LC_MESSAGES/gnome-netstatus.mo -share/locale/uz@cyrillic/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_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/figures -@dirrm share/gnome/help/gnome-netstatus/uk -@dirrm share/gnome/help/gnome-netstatus/th/figures -@dirrm share/gnome/help/gnome-netstatus/th -@dirrm share/gnome/help/gnome-netstatus/sv/figures -@dirrm share/gnome/help/gnome-netstatus/sv -@dirrm share/gnome/help/gnome-netstatus/ru/figures -@dirrm share/gnome/help/gnome-netstatus/ru -@dirrm share/gnome/help/gnome-netstatus/pa/figures -@dirrm share/gnome/help/gnome-netstatus/pa -@dirrm share/gnome/help/gnome-netstatus/oc/figures -@dirrm share/gnome/help/gnome-netstatus/oc -@dirrm share/gnome/help/gnome-netstatus/nl/figures -@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/figures -@dirrm share/gnome/help/gnome-netstatus/fr -@dirrm share/gnome/help/gnome-netstatus/es/figures -@dirrm share/gnome/help/gnome-netstatus/es -@dirrm share/gnome/help/gnome-netstatus/en_GB/figures -@dirrm share/gnome/help/gnome-netstatus/en_GB -@dirrm share/gnome/help/gnome-netstatus/de/figures -@dirrm share/gnome/help/gnome-netstatus/de -@dirrm share/gnome/help/gnome-netstatus/ca/figures -@dirrm share/gnome/help/gnome-netstatus/ca -@dirrm share/gnome/help/gnome-netstatus/bg/figures -@dirrm share/gnome/help/gnome-netstatus/bg -@dirrm share/gnome/help/gnome-netstatus/C/figures -@dirrm share/gnome/help/gnome-netstatus/C -@dirrm share/gnome/help/gnome-netstatus -@dirrm share/gnome-netstatus -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN diff --git a/net/gnome-nettool/Makefile b/net/gnome-nettool/Makefile deleted file mode 100644 index 16cfc2c9a..000000000 --- a/net/gnome-nettool/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: gnomenetwork -# Date Created: 03 June 2003 -# Whom: Adam Weinberger <adamw@FreeBSD.org> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= gnome-nettool -PORTVERSION= 2.22.1 -PORTEPOCH= 1 -CATEGORIES= net gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A GNOME utility that provides network information statistics - -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 deleted file mode 100644 index dcc612d6d..000000000 --- a/net/gnome-nettool/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-nettool-2.22.1.tar.bz2) = afcaff8ebc76b5f352902ed424dc2856 -SHA256 (gnome2/gnome-nettool-2.22.1.tar.bz2) = 90938c337575ce0f008a46a9f89f24bc6c04f5384337475fe3d5b960594c31b1 -SIZE (gnome2/gnome-nettool-2.22.1.tar.bz2) = 600085 diff --git a/net/gnome-nettool/files/patch-src_info.c b/net/gnome-nettool/files/patch-src_info.c deleted file mode 100644 index 74eb698a4..000000000 --- a/net/gnome-nettool/files/patch-src_info.c +++ /dev/null @@ -1,259 +0,0 @@ ---- 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 deleted file mode 100644 index 9744c1397..000000000 --- a/net/gnome-nettool/files/patch-src_lookup.c +++ /dev/null @@ -1,10 +0,0 @@ ---- 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 deleted file mode 100644 index 1eec84927..000000000 --- a/net/gnome-nettool/files/patch-src_netstat.c +++ /dev/null @@ -1,20 +0,0 @@ ---- 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 deleted file mode 100644 index 1009298e6..000000000 --- a/net/gnome-nettool/files/patch-src_nettool.c +++ /dev/null @@ -1,37 +0,0 @@ ---- 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 deleted file mode 100644 index 921c78049..000000000 --- a/net/gnome-nettool/files/patch-src_utils.c +++ /dev/null @@ -1,20 +0,0 @@ ---- 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 deleted file mode 100644 index 5619126fe..000000000 --- a/net/gnome-nettool/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -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 deleted file mode 100644 index 9ba878e67..000000000 --- a/net/gnome-nettool/pkg-plist +++ /dev/null @@ -1,162 +0,0 @@ -bin/gnome-nettool -share/applications/gnome-nettool.desktop -%%DATADIR%%/dialogs/gnome-nettool.glade -%%DATADIR%%/pixmaps/16_ethernet.xpm -%%DATADIR%%/pixmaps/16_loopback.xpm -%%DATADIR%%/pixmaps/16_plip.xpm -%%DATADIR%%/pixmaps/16_ppp.xpm -%%DATADIR%%/pixmaps/gnome-nettool.png -%%DATADIR%%/pixmaps/irda-16.png -%%DATADIR%%/pixmaps/network.png -%%DATADIR%%/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/ca/gnome-nettool.xml -share/gnome/help/gnome-nettool/cs/gnome-nettool.xml -share/gnome/help/gnome-nettool/da/gnome-nettool.xml -share/gnome/help/gnome-nettool/es/gnome-nettool.xml -share/gnome/help/gnome-nettool/fr/gnome-nettool.xml -share/gnome/help/gnome-nettool/oc/gnome-nettool.xml -share/gnome/help/gnome-nettool/pa/gnome-nettool.xml -share/gnome/help/gnome-nettool/sv/gnome-nettool.xml -share/gnome/help/gnome-nettool/uk/gnome-nettool.xml -share/gnome/help/gnome-nettool/vi/gnome-nettool.xml -share/icons/hicolor/16x16/apps/gnome-nettool.png -share/icons/hicolor/22x22/apps/gnome-nettool.png -share/icons/hicolor/24x24/apps/gnome-nettool.png -share/icons/hicolor/32x32/apps/gnome-nettool.png -share/icons/hicolor/scalable/apps/gnome-nettool.svg -share/locale/ar/LC_MESSAGES/gnome-nettool.mo -share/locale/as/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/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/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/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/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/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-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-sv.omf -share/omf/gnome-nettool/gnome-nettool-uk.omf -share/omf/gnome-nettool/gnome-nettool-vi.omf -share/pixmaps/gnome-nettool.png -@dirrm share/omf/gnome-nettool -@dirrm share/gnome/help/gnome-nettool/vi -@dirrm share/gnome/help/gnome-nettool/uk -@dirrm share/gnome/help/gnome-nettool/sv -@dirrm share/gnome/help/gnome-nettool/pa -@dirrm share/gnome/help/gnome-nettool/oc -@dirrm share/gnome/help/gnome-nettool/fr -@dirrm share/gnome/help/gnome-nettool/es -@dirrm share/gnome/help/gnome-nettool/da -@dirrm share/gnome/help/gnome-nettool/cs -@dirrm share/gnome/help/gnome-nettool/ca -@dirrm share/gnome/help/gnome-nettool/C -@dirrm share/gnome/help/gnome-nettool -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/dialogs -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES -@dirrmtry share/locale/uz@cyrillic -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/net/gtk-vnc/Makefile b/net/gtk-vnc/Makefile deleted file mode 100644 index d1ac549e0..000000000 --- a/net/gtk-vnc/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: gtk-vnc -# Date created: 16 December 2007 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gtk-vnc -PORTVERSION= 0.3.7 -PORTREVISION= 1 -CATEGORIES= net gnome -MASTER_SITES= SF - -MAINTAINER= gnome@FreeBSD.org -COMMENT= VNC viewer widget for GTK+ - -LIB_DEPENDS= gnutls:${PORTSDIR}/security/gnutls \ - gtkglext-x11-1.0.0:${PORTSDIR}/x11-toolkits/gtkglext - -USE_GNOME= pygtk2 gnomehack -USE_GMAKE= yes -USE_LDCONFIG= yes -USE_PYTHON= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-gtkglext=yes - -.include <bsd.port.mk> diff --git a/net/gtk-vnc/distinfo b/net/gtk-vnc/distinfo deleted file mode 100644 index cd39a9d83..000000000 --- a/net/gtk-vnc/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gtk-vnc-0.3.7.tar.gz) = 41c613be4b554b71d63d30f844d60add -SHA256 (gtk-vnc-0.3.7.tar.gz) = d08ca04641ffb1dc2077b9325a5c566ef83990b5ed7359997aaa0286dcfe3f3c -SIZE (gtk-vnc-0.3.7.tar.gz) = 431242 diff --git a/net/gtk-vnc/files/patch-src_continuation.h b/net/gtk-vnc/files/patch-src_continuation.h deleted file mode 100644 index 549af869b..000000000 --- a/net/gtk-vnc/files/patch-src_continuation.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/continuation.h.orig 2007-12-16 13:58:18.000000000 -0500 -+++ src/continuation.h 2007-12-16 13:58:39.000000000 -0500 -@@ -11,6 +11,7 @@ - #ifndef _CONTINUATION_H_ - #define _CONTINUATION_H_ - -+#include <sys/types.h> - #include <ucontext.h> - - struct continuation diff --git a/net/gtk-vnc/files/patch-src_coroutine_ucontext.c b/net/gtk-vnc/files/patch-src_coroutine_ucontext.c deleted file mode 100644 index 7a52f6e10..000000000 --- a/net/gtk-vnc/files/patch-src_coroutine_ucontext.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/coroutine_ucontext.c.orig 2007-12-16 13:59:13.000000000 -0500 -+++ src/coroutine_ucontext.c 2007-12-16 13:59:21.000000000 -0500 -@@ -48,7 +48,7 @@ int coroutine_init(struct coroutine *co) - co->cc.stack_size = co->stack_size; - co->cc.stack = mmap(0, co->stack_size, - PROT_READ | PROT_WRITE, -- MAP_PRIVATE | MAP_ANONYMOUS, -+ MAP_PRIVATE | MAP_ANON, - -1, 0); - if (co->cc.stack == MAP_FAILED) - return -1; diff --git a/net/gtk-vnc/files/patch-src_gvnc.h b/net/gtk-vnc/files/patch-src_gvnc.h deleted file mode 100644 index 150b05330..000000000 --- a/net/gtk-vnc/files/patch-src_gvnc.h +++ /dev/null @@ -1,22 +0,0 @@ ---- src/gvnc.h.orig 2008-03-24 11:39:20.000000000 -0400 -+++ src/gvnc.h 2008-03-24 11:40:22.000000000 -0400 -@@ -3,6 +3,19 @@ - - #include <glib.h> - #include <stdint.h> -+#ifdef __FreeBSD__ -+#include <sys/endian.h> -+ -+#define __BYTE_ORDER _BYTE_ORDER -+#define __LITTLE_ENDIAN _LITTLE_ENDIAN -+#define __BIG_ENDIAN _BIG_ENDIAN -+ -+#define bswap_16 bswap16 -+#define bswap_32 bswap32 -+#define bswap_64 bswap64 -+#else -+#include <endian.h> -+#endif - - struct gvnc; - diff --git a/net/gtk-vnc/pkg-descr b/net/gtk-vnc/pkg-descr deleted file mode 100644 index 9077bc499..000000000 --- a/net/gtk-vnc/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -GTK-VNC is a VNC viewer widget for GTK+. It is built using coroutines, -allowing it to be completely asynchronous while remaining single threaded. -It supports RFB protocols 3.3 through 3.8 and the VeNCrypt authentication -extension providing SSL/TLS encryption with x509 certificate authentication. -The core library is written in C and a binding for Python using PyGTK is -available. The networking layer supports connections over both IPv4 and IPv6. -Example code illustrates how to build a vncviewer replacement using either C -or Python. - -WWW: http://gtk-vnc.sourceforge.net/ diff --git a/net/gtk-vnc/pkg-plist b/net/gtk-vnc/pkg-plist deleted file mode 100644 index a53715865..000000000 --- a/net/gtk-vnc/pkg-plist +++ /dev/null @@ -1,10 +0,0 @@ -include/gtk-vnc-1.0/vncdisplay.h -lib/libgtk-vnc-1.0.a -lib/libgtk-vnc-1.0.la -lib/libgtk-vnc-1.0.so -lib/libgtk-vnc-1.0.so.0 -%%PYTHON_SITELIBDIR%%/gtkvnc.a -%%PYTHON_SITELIBDIR%%/gtkvnc.la -%%PYTHON_SITELIBDIR%%/gtkvnc.so -libdata/pkgconfig/gtk-vnc-1.0.pc -@dirrm include/gtk-vnc-1.0 diff --git a/net/libgweather/Makefile b/net/libgweather/Makefile deleted file mode 100644 index eff5be1ed..000000000 --- a/net/libgweather/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: libgweather -# Date created: 14th Jan 2008 -# Whom: Koop Mast <kwm@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/net/libgweather/Makefile,v 1.20 2008/10/22 22:12:56 marcus Exp $ -# - -PORTNAME= libgweather -PORTVERSION= 2.24.2 -CATEGORIES= net gnome -MASTER_SITES= GNOME - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Library to accessing online weather informations - -LIB_DEPENDS= soup-2.4.1:${PORTSDIR}/devel/libsoup - -USE_GETTEXT= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack gtk20 gnomevfs2 ltverhack -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= gweather.schemas - -.include <bsd.port.mk> diff --git a/net/libgweather/distinfo b/net/libgweather/distinfo deleted file mode 100644 index 5db9cccbb..000000000 --- a/net/libgweather/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (libgweather-2.24.2.tar.bz2) = a95226ca8e5869eb2da66ce390e93b5a -SHA256 (libgweather-2.24.2.tar.bz2) = 5ac071cd108e1c1ed776bb32fe7e7d59a92eaea2949ecb8f84cda2a37556173c -SIZE (libgweather-2.24.2.tar.bz2) = 7099351 diff --git a/net/libgweather/pkg-descr b/net/libgweather/pkg-descr deleted file mode 100644 index 99ea830ef..000000000 --- a/net/libgweather/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -libgweather is a library to access weather information from online -services for numerous locations. - -libgweather isn't supported in the devel platform, which means OS vendors -won't guarantee the API/ABI long-term, but authors of open source apps -should feel free to use libgweather as users can always recompile against -a new version. - -WWW: http://www.gnome.org/ diff --git a/net/libgweather/pkg-plist b/net/libgweather/pkg-plist deleted file mode 100644 index eaa4b04ad..000000000 --- a/net/libgweather/pkg-plist +++ /dev/null @@ -1,256 +0,0 @@ -include/libgweather/gweather-enum-types.h -include/libgweather/gweather-gconf.h -include/libgweather/gweather-location.h -include/libgweather/gweather-prefs.h -include/libgweather/gweather-timezone.h -include/libgweather/gweather-xml.h -include/libgweather/location-entry.h -include/libgweather/timezone-menu.h -include/libgweather/weather.h -lib/libgweather.a -lib/libgweather.la -lib/libgweather.so -lib/libgweather.so.1 -libdata/pkgconfig/gweather.pc -%%DATADIR%%/Locations.ang.xml -%%DATADIR%%/Locations.ar.xml -%%DATADIR%%/Locations.as.xml -%%DATADIR%%/Locations.az.xml -%%DATADIR%%/Locations.be.xml -%%DATADIR%%/Locations.be@latin.xml -%%DATADIR%%/Locations.bg.xml -%%DATADIR%%/Locations.bn.xml -%%DATADIR%%/Locations.bn_IN.xml -%%DATADIR%%/Locations.bs.xml -%%DATADIR%%/Locations.ca.xml -%%DATADIR%%/Locations.cs.xml -%%DATADIR%%/Locations.cy.xml -%%DATADIR%%/Locations.da.xml -%%DATADIR%%/Locations.de.xml -%%DATADIR%%/Locations.dz.xml -%%DATADIR%%/Locations.el.xml -%%DATADIR%%/Locations.en_CA.xml -%%DATADIR%%/Locations.en_GB.xml -%%DATADIR%%/Locations.es.xml -%%DATADIR%%/Locations.et.xml -%%DATADIR%%/Locations.eu.xml -%%DATADIR%%/Locations.fa.xml -%%DATADIR%%/Locations.fi.xml -%%DATADIR%%/Locations.fr.xml -%%DATADIR%%/Locations.ga.xml -%%DATADIR%%/Locations.gl.xml -%%DATADIR%%/Locations.gu.xml -%%DATADIR%%/Locations.he.xml -%%DATADIR%%/Locations.hi.xml -%%DATADIR%%/Locations.hr.xml -%%DATADIR%%/Locations.hu.xml -%%DATADIR%%/Locations.id.xml -%%DATADIR%%/Locations.it.xml -%%DATADIR%%/Locations.ja.xml -%%DATADIR%%/Locations.ka.xml -%%DATADIR%%/Locations.kn.xml -%%DATADIR%%/Locations.ko.xml -%%DATADIR%%/Locations.ku.xml -%%DATADIR%%/Locations.ky.xml -%%DATADIR%%/Locations.lt.xml -%%DATADIR%%/Locations.lv.xml -%%DATADIR%%/Locations.mai.xml -%%DATADIR%%/Locations.mg.xml -%%DATADIR%%/Locations.mk.xml -%%DATADIR%%/Locations.ml.xml -%%DATADIR%%/Locations.mn.xml -%%DATADIR%%/Locations.mr.xml -%%DATADIR%%/Locations.ms.xml -%%DATADIR%%/Locations.nb.xml -%%DATADIR%%/Locations.ne.xml -%%DATADIR%%/Locations.nl.xml -%%DATADIR%%/Locations.nn.xml -%%DATADIR%%/Locations.oc.xml -%%DATADIR%%/Locations.or.xml -%%DATADIR%%/Locations.pa.xml -%%DATADIR%%/Locations.pl.xml -%%DATADIR%%/Locations.pt.xml -%%DATADIR%%/Locations.pt_BR.xml -%%DATADIR%%/Locations.ro.xml -%%DATADIR%%/Locations.ru.xml -%%DATADIR%%/Locations.rw.xml -%%DATADIR%%/Locations.si.xml -%%DATADIR%%/Locations.sk.xml -%%DATADIR%%/Locations.sl.xml -%%DATADIR%%/Locations.sq.xml -%%DATADIR%%/Locations.sr.xml -%%DATADIR%%/Locations.sr@latin.xml -%%DATADIR%%/Locations.sv.xml -%%DATADIR%%/Locations.ta.xml -%%DATADIR%%/Locations.te.xml -%%DATADIR%%/Locations.th.xml -%%DATADIR%%/Locations.tr.xml -%%DATADIR%%/Locations.uk.xml -%%DATADIR%%/Locations.vi.xml -%%DATADIR%%/Locations.xml -%%DATADIR%%/Locations.zh_CN.xml -%%DATADIR%%/Locations.zh_HK.xml -%%DATADIR%%/Locations.zh_TW.xml -%%DATADIR%%/locations.dtd -share/locale/am/LC_MESSAGES/libgweather.mo -share/locale/ar/LC_MESSAGES/libgweather.mo -share/locale/as/LC_MESSAGES/libgweather.mo -share/locale/az/LC_MESSAGES/libgweather.mo -share/locale/be/LC_MESSAGES/libgweather.mo -share/locale/be@latin/LC_MESSAGES/libgweather.mo -share/locale/bg/LC_MESSAGES/libgweather.mo -share/locale/bn/LC_MESSAGES/libgweather.mo -share/locale/bn_IN/LC_MESSAGES/libgweather.mo -share/locale/bs/LC_MESSAGES/libgweather.mo -share/locale/ca/LC_MESSAGES/libgweather.mo -share/locale/cs/LC_MESSAGES/libgweather.mo -share/locale/cy/LC_MESSAGES/libgweather.mo -share/locale/da/LC_MESSAGES/libgweather.mo -share/locale/de/LC_MESSAGES/libgweather.mo -share/locale/dz/LC_MESSAGES/libgweather.mo -share/locale/el/LC_MESSAGES/libgweather.mo -share/locale/en_CA/LC_MESSAGES/libgweather.mo -share/locale/en_GB/LC_MESSAGES/libgweather.mo -share/locale/es/LC_MESSAGES/libgweather.mo -share/locale/es_AR/LC_MESSAGES/libgweather.mo -share/locale/es_CL/LC_MESSAGES/libgweather.mo -share/locale/es_CO/LC_MESSAGES/libgweather.mo -share/locale/es_CR/LC_MESSAGES/libgweather.mo -share/locale/es_DO/LC_MESSAGES/libgweather.mo -share/locale/es_EC/LC_MESSAGES/libgweather.mo -share/locale/es_ES/LC_MESSAGES/libgweather.mo -share/locale/es_GT/LC_MESSAGES/libgweather.mo -share/locale/es_HN/LC_MESSAGES/libgweather.mo -share/locale/es_MX/LC_MESSAGES/libgweather.mo -share/locale/es_NI/LC_MESSAGES/libgweather.mo -share/locale/es_PA/LC_MESSAGES/libgweather.mo -share/locale/es_PE/LC_MESSAGES/libgweather.mo -share/locale/es_PR/LC_MESSAGES/libgweather.mo -share/locale/es_SV/LC_MESSAGES/libgweather.mo -share/locale/es_UY/LC_MESSAGES/libgweather.mo -share/locale/es_VE/LC_MESSAGES/libgweather.mo -share/locale/et/LC_MESSAGES/libgweather.mo -share/locale/eu/LC_MESSAGES/libgweather.mo -share/locale/fa/LC_MESSAGES/libgweather.mo -share/locale/fi/LC_MESSAGES/libgweather.mo -share/locale/fr/LC_MESSAGES/libgweather.mo -share/locale/ga/LC_MESSAGES/libgweather.mo -share/locale/gl/LC_MESSAGES/libgweather.mo -share/locale/gu/LC_MESSAGES/libgweather.mo -share/locale/he/LC_MESSAGES/libgweather.mo -share/locale/hi/LC_MESSAGES/libgweather.mo -share/locale/hr/LC_MESSAGES/libgweather.mo -share/locale/hu/LC_MESSAGES/libgweather.mo -share/locale/hy/LC_MESSAGES/libgweather.mo -share/locale/id/LC_MESSAGES/libgweather.mo -share/locale/is/LC_MESSAGES/libgweather.mo -share/locale/it/LC_MESSAGES/libgweather.mo -share/locale/ja/LC_MESSAGES/libgweather.mo -share/locale/ka/LC_MESSAGES/libgweather.mo -share/locale/kn/LC_MESSAGES/libgweather.mo -share/locale/ko/LC_MESSAGES/libgweather.mo -share/locale/ku/LC_MESSAGES/libgweather.mo -share/locale/ky/LC_MESSAGES/libgweather.mo -share/locale/lt/LC_MESSAGES/libgweather.mo -share/locale/lv/LC_MESSAGES/libgweather.mo -share/locale/mg/LC_MESSAGES/libgweather.mo -share/locale/mk/LC_MESSAGES/libgweather.mo -share/locale/ml/LC_MESSAGES/libgweather.mo -share/locale/mn/LC_MESSAGES/libgweather.mo -share/locale/mr/LC_MESSAGES/libgweather.mo -share/locale/ms/LC_MESSAGES/libgweather.mo -share/locale/nb/LC_MESSAGES/libgweather.mo -share/locale/ne/LC_MESSAGES/libgweather.mo -share/locale/nl/LC_MESSAGES/libgweather.mo -share/locale/nn/LC_MESSAGES/libgweather.mo -share/locale/oc/LC_MESSAGES/libgweather.mo -share/locale/or/LC_MESSAGES/libgweather.mo -share/locale/pa/LC_MESSAGES/libgweather.mo -share/locale/pl/LC_MESSAGES/libgweather.mo -share/locale/pt/LC_MESSAGES/libgweather.mo -share/locale/pt_BR/LC_MESSAGES/libgweather.mo -share/locale/ro/LC_MESSAGES/libgweather.mo -share/locale/ru/LC_MESSAGES/libgweather.mo -share/locale/rw/LC_MESSAGES/libgweather.mo -share/locale/si/LC_MESSAGES/libgweather.mo -share/locale/sk/LC_MESSAGES/libgweather.mo -share/locale/sl/LC_MESSAGES/libgweather.mo -share/locale/sq/LC_MESSAGES/libgweather.mo -share/locale/sr/LC_MESSAGES/libgweather.mo -share/locale/sr@latin/LC_MESSAGES/libgweather.mo -share/locale/sv/LC_MESSAGES/libgweather.mo -share/locale/ta/LC_MESSAGES/libgweather.mo -share/locale/te/LC_MESSAGES/libgweather.mo -share/locale/th/LC_MESSAGES/libgweather.mo -share/locale/tr/LC_MESSAGES/libgweather.mo -share/locale/uk/LC_MESSAGES/libgweather.mo -share/locale/vi/LC_MESSAGES/libgweather.mo -share/locale/wa/LC_MESSAGES/libgweather.mo -share/locale/xh/LC_MESSAGES/libgweather.mo -share/locale/zh_CN/LC_MESSAGES/libgweather.mo -share/locale/zh_HK/LC_MESSAGES/libgweather.mo -share/locale/zh_TW/LC_MESSAGES/libgweather.mo -@dirrm %%DATADIR%% -@dirrm include/libgweather -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/es_VE/LC_MESSAGES -@dirrmtry share/locale/es_VE -@dirrmtry share/locale/es_UY/LC_MESSAGES -@dirrmtry share/locale/es_UY -@dirrmtry share/locale/es_SV/LC_MESSAGES -@dirrmtry share/locale/es_SV -@dirrmtry share/locale/es_PR/LC_MESSAGES -@dirrmtry share/locale/es_PR -@dirrmtry share/locale/es_PE/LC_MESSAGES -@dirrmtry share/locale/es_PE -@dirrmtry share/locale/es_PA/LC_MESSAGES -@dirrmtry share/locale/es_PA -@dirrmtry share/locale/es_NI/LC_MESSAGES -@dirrmtry share/locale/es_NI -@dirrmtry share/locale/es_HN/LC_MESSAGES -@dirrmtry share/locale/es_HN -@dirrmtry share/locale/es_GT/LC_MESSAGES -@dirrmtry share/locale/es_GT -@dirrmtry share/locale/es_EC/LC_MESSAGES -@dirrmtry share/locale/es_EC -@dirrmtry share/locale/es_DO/LC_MESSAGES -@dirrmtry share/locale/es_DO -@dirrmtry share/locale/es_CR/LC_MESSAGES -@dirrmtry share/locale/es_CR -@dirrmtry share/locale/es_CO/LC_MESSAGES -@dirrmtry share/locale/es_CO -@dirrmtry share/locale/es_CL/LC_MESSAGES -@dirrmtry share/locale/es_CL -@dirrmtry share/locale/es_AR/LC_MESSAGES -@dirrmtry share/locale/es_AR -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/net/vinagre/Makefile b/net/vinagre/Makefile deleted file mode 100644 index f4250566f..000000000 --- a/net/vinagre/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -# New ports collection makefile for: vinagre -# Date created: 16 December 2007 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/net/vinagre/Makefile,v 1.19 2008/12/17 05:45:39 marcus Exp $ -# - -PORTNAME= vinagre -PORTVERSION= 2.24.2 -PORTREVISION= 1 -CATEGORIES= net gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= VNC client for the GNOME Desktop - -LIB_DEPENDS= gtk-vnc-1.0.0:${PORTSDIR}/net/gtk-vnc \ - avahi-core.6:${PORTSDIR}/net/avahi-app \ - avahi-ui.0:${PORTSDIR}/net/avahi-gtk \ - gnome-keyring:${PORTSDIR}/security/gnome-keyring - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GNOME= gnomeprefix intlhack gnomehack libglade2 gconf2 gnomedocutils \ - gnomepanel -USE_GMAKE= yes -GNU_CONFIGURE= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -CONFIGURE_ARGS= --enable-avahi -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= vinagre.schemas - -MAN1= vinagre.1 - -post-install: - @-update-desktop-database > /dev/null - @-update-mime-database ${PREFIX}/share/mime > /dev/null -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for f in AUTHORS COPYING ChangeLog MAINTAINERS NEWS README - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/net/vinagre/distinfo b/net/vinagre/distinfo deleted file mode 100644 index d08ef1d64..000000000 --- a/net/vinagre/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/vinagre-2.24.2.tar.bz2) = 330a65e0277a2c8fe746e2091c3198ce -SHA256 (gnome2/vinagre-2.24.2.tar.bz2) = 57b4be4c8bfeeb1493e96b728ec6a4ac29b3e01217b03ce9b194e1932f538959 -SIZE (gnome2/vinagre-2.24.2.tar.bz2) = 1450774 diff --git a/net/vinagre/files/patch-Makefile.in b/net/vinagre/files/patch-Makefile.in deleted file mode 100644 index d54e01e7f..000000000 --- a/net/vinagre/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig 2007-12-16 14:18:35.000000000 -0500 -+++ Makefile.in 2007-12-16 14:19:09.000000000 -0500 -@@ -667,7 +667,7 @@ info: info-recursive - - info-am: - --install-data-am: install-vinagredocDATA -+install-data-am: - - install-dvi: install-dvi-recursive - diff --git a/net/vinagre/pkg-descr b/net/vinagre/pkg-descr deleted file mode 100644 index 9aa3ad1fa..000000000 --- a/net/vinagre/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Vinagre is a VNC Client for the GNOME Desktop. Its features include: - -* You can connect to several machines at the same time, we like tabs -* You can keep track of your most used connections, we like favorites -* You can keep track of your recently used connections, we like GtkRecent -* You can browse your network for VNC servers, we like avahi -* You don't need to supply the password on every connection, we like GNOME - Keyring - -WWW: http://www.gnome.org/projects/vinagre/ diff --git a/net/vinagre/pkg-plist b/net/vinagre/pkg-plist deleted file mode 100644 index 1b13279b6..000000000 --- a/net/vinagre/pkg-plist +++ /dev/null @@ -1,174 +0,0 @@ -bin/vinagre -libdata/bonobo/servers/GNOME_VinagreApplet.server -libexec/vinagre-applet -share/applications/vinagre-file.desktop -share/applications/vinagre.desktop -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/MAINTAINERS -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -share/gnome/help/vinagre/C/figures/vinagre-screenshot.png -share/gnome/help/vinagre/C/legal.xml -share/gnome/help/vinagre/C/vinagre.xml -share/gnome/help/vinagre/ca/figures/vinagre-screenshot.png -share/gnome/help/vinagre/ca/vinagre.xml -share/gnome/help/vinagre/cs/figures/vinagre-screenshot.png -share/gnome/help/vinagre/cs/vinagre.xml -share/gnome/help/vinagre/de/figures/vinagre-screenshot.png -share/gnome/help/vinagre/de/vinagre.xml -share/gnome/help/vinagre/es/figures/vinagre-screenshot.png -share/gnome/help/vinagre/es/vinagre.xml -share/gnome/help/vinagre/fr/figures/vinagre-screenshot.png -share/gnome/help/vinagre/fr/vinagre.xml -share/gnome/help/vinagre/it/figures/vinagre-screenshot.png -share/gnome/help/vinagre/it/vinagre.xml -share/gnome/help/vinagre/oc/figures/vinagre-screenshot.png -share/gnome/help/vinagre/oc/vinagre.xml -share/gnome/help/vinagre/pt/figures/vinagre-screenshot.png -share/gnome/help/vinagre/pt/vinagre.xml -share/gnome/help/vinagre/sq/figures/vinagre-screenshot.png -share/gnome/help/vinagre/sq/vinagre.xml -share/gnome/help/vinagre/sv/figures/vinagre-screenshot.png -share/gnome/help/vinagre/sv/vinagre.xml -share/gnome/help/vinagre/th/figures/vinagre-screenshot.png -share/gnome/help/vinagre/th/vinagre.xml -share/icons/hicolor/16x16/apps/vinagre.png -share/icons/hicolor/16x16/mimetypes/application-x-remote-connection.png -share/icons/hicolor/16x16/mimetypes/application-x-vnc.png -share/icons/hicolor/22x22/apps/vinagre.png -share/icons/hicolor/22x22/mimetypes/application-x-remote-connection.png -share/icons/hicolor/22x22/mimetypes/application-x-vnc.png -share/icons/hicolor/24x24/apps/vinagre.png -share/icons/hicolor/24x24/mimetypes/application-x-remote-connection.png -share/icons/hicolor/24x24/mimetypes/application-x-vnc.png -share/icons/hicolor/32x32/apps/vinagre.png -share/icons/hicolor/32x32/mimetypes/application-x-remote-connection.png -share/icons/hicolor/32x32/mimetypes/application-x-vnc.png -share/icons/hicolor/48x48/apps/vinagre.png -share/icons/hicolor/48x48/mimetypes/application-x-remote-connection.png -share/icons/hicolor/48x48/mimetypes/application-x-vnc.png -share/icons/hicolor/scalable/apps/vinagre.svg -share/icons/hicolor/scalable/mimetypes/application-x-remote-connection.svg -share/icons/hicolor/scalable/mimetypes/application-x-vnc.svg -share/locale/ar/LC_MESSAGES/vinagre.mo -share/locale/be@latin/LC_MESSAGES/vinagre.mo -share/locale/bg/LC_MESSAGES/vinagre.mo -share/locale/bn_IN/LC_MESSAGES/vinagre.mo -share/locale/ca/LC_MESSAGES/vinagre.mo -share/locale/cs/LC_MESSAGES/vinagre.mo -share/locale/da/LC_MESSAGES/vinagre.mo -share/locale/de/LC_MESSAGES/vinagre.mo -share/locale/el/LC_MESSAGES/vinagre.mo -share/locale/en_GB/LC_MESSAGES/vinagre.mo -share/locale/es/LC_MESSAGES/vinagre.mo -share/locale/et/LC_MESSAGES/vinagre.mo -share/locale/eu/LC_MESSAGES/vinagre.mo -share/locale/fi/LC_MESSAGES/vinagre.mo -share/locale/fr/LC_MESSAGES/vinagre.mo -share/locale/gl/LC_MESSAGES/vinagre.mo -share/locale/gu/LC_MESSAGES/vinagre.mo -share/locale/he/LC_MESSAGES/vinagre.mo -share/locale/hi/LC_MESSAGES/vinagre.mo -share/locale/hu/LC_MESSAGES/vinagre.mo -share/locale/it/LC_MESSAGES/vinagre.mo -share/locale/ja/LC_MESSAGES/vinagre.mo -share/locale/kn/LC_MESSAGES/vinagre.mo -share/locale/ko/LC_MESSAGES/vinagre.mo -share/locale/ku/LC_MESSAGES/vinagre.mo -share/locale/lt/LC_MESSAGES/vinagre.mo -share/locale/mk/LC_MESSAGES/vinagre.mo -share/locale/ml/LC_MESSAGES/vinagre.mo -share/locale/mr/LC_MESSAGES/vinagre.mo -share/locale/nb/LC_MESSAGES/vinagre.mo -share/locale/nl/LC_MESSAGES/vinagre.mo -share/locale/nn/LC_MESSAGES/vinagre.mo -share/locale/oc/LC_MESSAGES/vinagre.mo -share/locale/or/LC_MESSAGES/vinagre.mo -share/locale/pa/LC_MESSAGES/vinagre.mo -share/locale/pl/LC_MESSAGES/vinagre.mo -share/locale/pt/LC_MESSAGES/vinagre.mo -share/locale/pt_BR/LC_MESSAGES/vinagre.mo -share/locale/ru/LC_MESSAGES/vinagre.mo -share/locale/si/LC_MESSAGES/vinagre.mo -share/locale/sl/LC_MESSAGES/vinagre.mo -share/locale/sq/LC_MESSAGES/vinagre.mo -share/locale/sr/LC_MESSAGES/vinagre.mo -share/locale/sr@latin/LC_MESSAGES/vinagre.mo -share/locale/sv/LC_MESSAGES/vinagre.mo -share/locale/ta/LC_MESSAGES/vinagre.mo -share/locale/th/LC_MESSAGES/vinagre.mo -share/locale/tr/LC_MESSAGES/vinagre.mo -share/locale/vi/LC_MESSAGES/vinagre.mo -share/locale/uk/LC_MESSAGES/vinagre.mo -share/locale/zh_CN/LC_MESSAGES/vinagre.mo -share/locale/zh_HK/LC_MESSAGES/vinagre.mo -share/locale/zh_TW/LC_MESSAGES/vinagre.mo -share/mime/application/x-remote-connection.xml -share/mime/application/x-vnc.xml -share/mime/packages/vinagre-mime.xml -share/omf/vinagre/vinagre-C.omf -share/omf/vinagre/vinagre-ca.omf -share/omf/vinagre/vinagre-cs.omf -share/omf/vinagre/vinagre-de.omf -share/omf/vinagre/vinagre-es.omf -share/omf/vinagre/vinagre-fr.omf -share/omf/vinagre/vinagre-it.omf -share/omf/vinagre/vinagre-oc.omf -share/omf/vinagre/vinagre-pt.omf -share/omf/vinagre/vinagre-sq.omf -share/omf/vinagre/vinagre-sv.omf -share/omf/vinagre/vinagre-th.omf -%%DATADIR%%/GNOME_VinagreApplet.xml -%%DATADIR%%/vinagre-ui.xml -%%DATADIR%%/vinagre.glade -@dirrm %%DATADIR%% -@dirrm share/omf/vinagre -@dirrm share/gnome/help/vinagre/th/figures -@dirrm share/gnome/help/vinagre/th -@dirrm share/gnome/help/vinagre/sv/figures -@dirrm share/gnome/help/vinagre/sv -@dirrm share/gnome/help/vinagre/sq/figures -@dirrm share/gnome/help/vinagre/sq -@dirrm share/gnome/help/vinagre/pt/figures -@dirrm share/gnome/help/vinagre/pt -@dirrm share/gnome/help/vinagre/oc/figures -@dirrm share/gnome/help/vinagre/oc -@dirrm share/gnome/help/vinagre/it/figures -@dirrm share/gnome/help/vinagre/it -@dirrm share/gnome/help/vinagre/fr/figures -@dirrm share/gnome/help/vinagre/fr -@dirrm share/gnome/help/vinagre/es/figures -@dirrm share/gnome/help/vinagre/es -@dirrm share/gnome/help/vinagre/de/figures -@dirrm share/gnome/help/vinagre/de -@dirrm share/gnome/help/vinagre/cs/figures -@dirrm share/gnome/help/vinagre/cs -@dirrm share/gnome/help/vinagre/ca/figures -@dirrm share/gnome/help/vinagre/ca -@dirrm share/gnome/help/vinagre/C/figures -@dirrm share/gnome/help/vinagre/C -@dirrm share/gnome/help/vinagre -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrmtry share/applications -@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin diff --git a/net/vino/Makefile b/net/vino/Makefile deleted file mode 100644 index 77d3113b0..000000000 --- a/net/vino/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: vino -# Date created: 16 July 2004 -# Whom: Tom McLaughlin <tmclaugh@sdf.lonestar.org> -# -# $FreeBSD$ -# $MCom: ports/net/vino/Makefile,v 1.62 2008/09/23 04:45:08 mezz Exp $ -# - -PORTNAME= vino -PORTVERSION= 2.24.1 -CATEGORIES= net gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= VNC server that allows for remote access to your GNOME desktop - -LIB_DEPENDS= gnutls:${PORTSDIR}/security/gnutls - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_GNOME= gnomeprefix intlhack gnomehack gnomepanel -USE_XORG= xtst -USE_GMAKE= yes -GNOME_DESKTOP_VERSION=2 -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -CONFIGURE_ARGS= --enable-session-support -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= vino-server.schemas - -.if !defined(WITHOUT_NOTIFY) -LIB_DEPENDS+= notify.1:${PORTSDIR}/devel/libnotify -CONFIGURE_ARGS+=--enable-libnotify=yes -.else -CONFIGURE_ARGS+=--enable-libnotify=no -.endif - -.include <bsd.port.mk> diff --git a/net/vino/distinfo b/net/vino/distinfo deleted file mode 100644 index 7abd78a63..000000000 --- a/net/vino/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/vino-2.24.1.tar.bz2) = b373292a7a5443d7fad1cce5eb07f37f -SHA256 (gnome2/vino-2.24.1.tar.bz2) = 4522c3969b64330b893de9a3257b4f7462975644b5e6cc57e9113d1f0c9c4a77 -SIZE (gnome2/vino-2.24.1.tar.bz2) = 674201 diff --git a/net/vino/files/patch-server_libvncserver_sockets.c b/net/vino/files/patch-server_libvncserver_sockets.c deleted file mode 100644 index b182a2c4f..000000000 --- a/net/vino/files/patch-server_libvncserver_sockets.c +++ /dev/null @@ -1,22 +0,0 @@ -Index: server/libvncserver/sockets.c -diff -u -p server/libvncserver/sockets.c.orig server/libvncserver/sockets.c ---- server/libvncserver/sockets.c.orig Tue Jan 2 22:34:50 2007 -+++ server/libvncserver/sockets.c Sun Mar 25 22:52:02 2007 -@@ -560,6 +560,7 @@ ListenOnTCPPort(port, localOnly) - - #ifdef ENABLE_IPV6 - struct sockaddr_in6 addr_in6; -+ int off = 0; - - memset(&addr_in6, 0, sizeof(addr_in6)); - addr_in6.sin6_family = AF_INET6; -@@ -570,6 +571,9 @@ ListenOnTCPPort(port, localOnly) - addrlen = sizeof(addr_in6); - - sock = socket(AF_INET6, SOCK_STREAM, 0); -+#ifdef IPV6_V6ONLY -+ setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&off, sizeof(off)); -+#endif - #endif - - if (sock < 0) { diff --git a/net/vino/files/patch-server_vino-http.c b/net/vino/files/patch-server_vino-http.c deleted file mode 100644 index d51f95885..000000000 --- a/net/vino/files/patch-server_vino-http.c +++ /dev/null @@ -1,24 +0,0 @@ -Index: server/vino-http.c -diff -u -p server/vino-http.c.orig server/vino-http.c ---- server/vino-http.c.orig Tue Feb 27 19:47:35 2007 -+++ server/vino-http.c Sun Mar 25 20:56:41 2007 -@@ -595,6 +595,9 @@ vino_http_create_listening_socket (VinoH - { - #ifdef ENABLE_IPV6 - struct sockaddr_in6 saddr_in6; -+#ifdef IPV6_V6ONLY -+ int off = 0; -+#endif - #endif - struct sockaddr_in saddr_in; - struct sockaddr *saddr; -@@ -621,6 +624,9 @@ vino_http_create_listening_socket (VinoH - - #ifdef ENABLE_IPV6 - sock = socket (AF_INET6, SOCK_STREAM, 0); -+#ifdef IPV6_V6ONLY -+ setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&off, sizeof(off)); -+#endif - - memset (&saddr_in6, 0, sizeof (struct sockaddr_in6)); - saddr_in6.sin6_family = AF_INET6; diff --git a/net/vino/pkg-descr b/net/vino/pkg-descr deleted file mode 100644 index f56a27700..000000000 --- a/net/vino/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Vino is a VNC server for GNOME - it allows someone to remotely connect -to your desktop session using the RFB protocol. - -WWW: http://www.gnome.org diff --git a/net/vino/pkg-plist b/net/vino/pkg-plist deleted file mode 100644 index 2db957416..000000000 --- a/net/vino/pkg-plist +++ /dev/null @@ -1,112 +0,0 @@ -bin/vino-passwd -bin/vino-preferences -libexec/vino-server -share/applications/vino-preferences.desktop -share/gnome/autostart/vino-server.desktop -share/locale/ar/LC_MESSAGES/vino.mo -share/locale/as/LC_MESSAGES/vino.mo -share/locale/az/LC_MESSAGES/vino.mo -share/locale/be@latin/LC_MESSAGES/vino.mo -share/locale/bg/LC_MESSAGES/vino.mo -share/locale/bn/LC_MESSAGES/vino.mo -share/locale/bn_IN/LC_MESSAGES/vino.mo -share/locale/bs/LC_MESSAGES/vino.mo -share/locale/ca/LC_MESSAGES/vino.mo -share/locale/cs/LC_MESSAGES/vino.mo -share/locale/cy/LC_MESSAGES/vino.mo -share/locale/da/LC_MESSAGES/vino.mo -share/locale/de/LC_MESSAGES/vino.mo -share/locale/dz/LC_MESSAGES/vino.mo -share/locale/el/LC_MESSAGES/vino.mo -share/locale/en_CA/LC_MESSAGES/vino.mo -share/locale/en_GB/LC_MESSAGES/vino.mo -share/locale/es/LC_MESSAGES/vino.mo -share/locale/et/LC_MESSAGES/vino.mo -share/locale/eu/LC_MESSAGES/vino.mo -share/locale/fa/LC_MESSAGES/vino.mo -share/locale/fi/LC_MESSAGES/vino.mo -share/locale/fr/LC_MESSAGES/vino.mo -share/locale/gl/LC_MESSAGES/vino.mo -share/locale/gu/LC_MESSAGES/vino.mo -share/locale/he/LC_MESSAGES/vino.mo -share/locale/hi/LC_MESSAGES/vino.mo -share/locale/hr/LC_MESSAGES/vino.mo -share/locale/hu/LC_MESSAGES/vino.mo -share/locale/id/LC_MESSAGES/vino.mo -share/locale/it/LC_MESSAGES/vino.mo -share/locale/ja/LC_MESSAGES/vino.mo -share/locale/ka/LC_MESSAGES/vino.mo -share/locale/kn/LC_MESSAGES/vino.mo -share/locale/ko/LC_MESSAGES/vino.mo -share/locale/ku/LC_MESSAGES/vino.mo -share/locale/lt/LC_MESSAGES/vino.mo -share/locale/lv/LC_MESSAGES/vino.mo -share/locale/mk/LC_MESSAGES/vino.mo -share/locale/ml/LC_MESSAGES/vino.mo -share/locale/mn/LC_MESSAGES/vino.mo -share/locale/mr/LC_MESSAGES/vino.mo -share/locale/ms/LC_MESSAGES/vino.mo -share/locale/nb/LC_MESSAGES/vino.mo -share/locale/ne/LC_MESSAGES/vino.mo -share/locale/nl/LC_MESSAGES/vino.mo -share/locale/nn/LC_MESSAGES/vino.mo -share/locale/oc/LC_MESSAGES/vino.mo -share/locale/or/LC_MESSAGES/vino.mo -share/locale/pa/LC_MESSAGES/vino.mo -share/locale/pl/LC_MESSAGES/vino.mo -share/locale/pt/LC_MESSAGES/vino.mo -share/locale/pt_BR/LC_MESSAGES/vino.mo -share/locale/ro/LC_MESSAGES/vino.mo -share/locale/ru/LC_MESSAGES/vino.mo -share/locale/rw/LC_MESSAGES/vino.mo -share/locale/si/LC_MESSAGES/vino.mo -share/locale/sk/LC_MESSAGES/vino.mo -share/locale/sl/LC_MESSAGES/vino.mo -share/locale/sq/LC_MESSAGES/vino.mo -share/locale/sr/LC_MESSAGES/vino.mo -share/locale/sr@latin/LC_MESSAGES/vino.mo -share/locale/sv/LC_MESSAGES/vino.mo -share/locale/ta/LC_MESSAGES/vino.mo -share/locale/te/LC_MESSAGES/vino.mo -share/locale/th/LC_MESSAGES/vino.mo -share/locale/tr/LC_MESSAGES/vino.mo -share/locale/ug/LC_MESSAGES/vino.mo -share/locale/uk/LC_MESSAGES/vino.mo -share/locale/vi/LC_MESSAGES/vino.mo -share/locale/wa/LC_MESSAGES/vino.mo -share/locale/xh/LC_MESSAGES/vino.mo -share/locale/zh_CN/LC_MESSAGES/vino.mo -share/locale/zh_HK/LC_MESSAGES/vino.mo -share/locale/zh_TW/LC_MESSAGES/vino.mo -%%DATADIR%%/vino-preferences.glade -%%DATADIR%%/vino-prompt.glade -@dirrm %%DATADIR%% -@dirrmtry share/applications -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as |