diff options
Diffstat (limited to 'net')
30 files changed, 0 insertions, 2395 deletions
diff --git a/net/gnome-netstatus/Makefile b/net/gnome-netstatus/Makefile deleted file mode 100644 index 63eb62e06..000000000 --- a/net/gnome-netstatus/Makefile +++ /dev/null @@ -1,31 +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.28.1 -CATEGORIES= net gnome -MASTER_SITES= GNOME -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 \ - 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 f2ab01fca..000000000 --- a/net/gnome-netstatus/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-netstatus-2.28.1.tar.bz2) = 8ecc95396c9d1c7d963a7f232ca370f8 -SHA256 (gnome2/gnome-netstatus-2.28.1.tar.bz2) = 9e6bb618283d2c96afd7365f998b415a7ee9539957fcf8bd4cd58cf8e877a335 -SIZE (gnome2/gnome-netstatus-2.28.1.tar.bz2) = 572012 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 0c9c78b83..000000000 --- a/net/gnome-netstatus/files/patch-src_netstatus-sysdeps.c +++ /dev/null @@ -1,212 +0,0 @@ ---- src/netstatus-sysdeps.c.orig 2009-03-08 00:25:52.000000000 -0500 -+++ src/netstatus-sysdeps.c 2009-03-08 15:24:33.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_ascii_strncasecmp (iface, "an", 2) && - g_ascii_strncasecmp (iface, "wi", 2) && - g_ascii_strncasecmp (iface, "ath", 3) && - g_ascii_strncasecmp (iface, "ndis", 4) && -+ g_ascii_strncasecmp (iface, "ural", 4) && -+ g_ascii_strncasecmp (iface, "ral", 3) && - g_ascii_strncasecmp (iface, "ipw", 3) && - g_ascii_strncasecmp (iface, "iwi", 3) && -+ g_ascii_strncasecmp (iface, "rum", 3) && -+ g_ascii_strncasecmp (iface, "ray", 3) && - g_ascii_strncasecmp (iface, "acx", 3)) -+#else -+ if (g_strncasecmp (iface, "wlan", 4)) -+#endif - return error_message; - -+#if __FreeBSD_version < 700046 - if (g_ascii_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 874acacb7..000000000 --- a/net/gnome-netstatus/pkg-plist +++ /dev/null @@ -1,367 +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.ui -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/cs/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/cs/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/cs/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/cs/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/cs/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/cs/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/cs/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/el/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/el/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/el/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/el/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/el/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/el/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/el/gnome-netstatus.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_HK/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/zh_HK/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/zh_HK/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/zh_HK/legal.xml -share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-disconn.png -share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-error.png -share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-idle.png -share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-rx.png -share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-tx.png -share/gnome/help/gnome-netstatus/zh_TW/figures/gnome-netstatus-txrx.png -share/gnome/help/gnome-netstatus/zh_TW/gnome-netstatus.xml -share/gnome/help/gnome-netstatus/zh_TW/legal.xml -share/omf/gnome-netstatus/gnome-netstatus-C.omf -share/omf/gnome-netstatus/gnome-netstatus-bg.omf -share/omf/gnome-netstatus/gnome-netstatus-ca.omf -share/omf/gnome-netstatus/gnome-netstatus-cs.omf -share/omf/gnome-netstatus/gnome-netstatus-de.omf -share/omf/gnome-netstatus/gnome-netstatus-el.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/as/LC_MESSAGES/gnome-netstatus.mo -share/locale/ast/LC_MESSAGES/gnome-netstatus.mo -share/locale/az/LC_MESSAGES/gnome-netstatus.mo -share/locale/be@latin/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/ca@valencia/LC_MESSAGES/gnome-netstatus.mo -share/locale/crh/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@shaw/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/ku/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/mai/LC_MESSAGES/gnome-netstatus.mo -share/locale/mg/LC_MESSAGES/gnome-netstatus.mo -share/locale/ml/LC_MESSAGES/gnome-netstatus.mo -share/locale/mn/LC_MESSAGES/gnome-netstatus.mo -share/locale/mr/LC_MESSAGES/gnome-netstatus.mo -share/locale/ms/LC_MESSAGES/gnome-netstatus.mo -share/locale/nb/LC_MESSAGES/gnome-netstatus.mo -share/locale/ne/LC_MESSAGES/gnome-netstatus.mo -share/locale/nl/LC_MESSAGES/gnome-netstatus.mo -share/locale/nn/LC_MESSAGES/gnome-netstatus.mo -share/locale/oc/LC_MESSAGES/gnome-netstatus.mo -share/locale/or/LC_MESSAGES/gnome-netstatus.mo -share/locale/pa/LC_MESSAGES/gnome-netstatus.mo -share/locale/pl/LC_MESSAGES/gnome-netstatus.mo -share/locale/ps/LC_MESSAGES/gnome-netstatus.mo -share/locale/pt/LC_MESSAGES/gnome-netstatus.mo -share/locale/pt_BR/LC_MESSAGES/gnome-netstatus.mo -share/locale/ro/LC_MESSAGES/gnome-netstatus.mo -share/locale/ru/LC_MESSAGES/gnome-netstatus.mo -share/locale/rw/LC_MESSAGES/gnome-netstatus.mo -share/locale/sk/LC_MESSAGES/gnome-netstatus.mo -share/locale/sl/LC_MESSAGES/gnome-netstatus.mo -share/locale/sq/LC_MESSAGES/gnome-netstatus.mo -share/locale/sr/LC_MESSAGES/gnome-netstatus.mo -share/locale/sr@latin/LC_MESSAGES/gnome-netstatus.mo -share/locale/sv/LC_MESSAGES/gnome-netstatus.mo -share/locale/ta/LC_MESSAGES/gnome-netstatus.mo -share/locale/te/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_HK/LC_MESSAGES/gnome-netstatus.mo -share/locale/zh_TW/LC_MESSAGES/gnome-netstatus.mo -@dirrm share/omf/gnome-netstatus -@dirrm share/gnome/help/gnome-netstatus/zh_TW/figures -@dirrm share/gnome/help/gnome-netstatus/zh_TW -@dirrm share/gnome/help/gnome-netstatus/zh_HK/figures -@dirrm share/gnome/help/gnome-netstatus/zh_HK -@dirrm share/gnome/help/gnome-netstatus/zh_CN/figures -@dirrm share/gnome/help/gnome-netstatus/zh_CN -@dirrm share/gnome/help/gnome-netstatus/uk/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/el/figures -@dirrm share/gnome/help/gnome-netstatus/el -@dirrm share/gnome/help/gnome-netstatus/de/figures -@dirrm share/gnome/help/gnome-netstatus/de -@dirrm share/gnome/help/gnome-netstatus/cs/figures -@dirrm share/gnome/help/gnome-netstatus/cs -@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/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/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@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/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/fur/LC_MESSAGES -@dirrmtry share/locale/fur -@dirrmtry share/locale/en@shaw/LC_MESSAGES -@dirrmtry share/locale/en@shaw -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/crh/LC_MESSAGES -@dirrmtry share/locale/crh -@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/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/net/gnome-nettool/Makefile b/net/gnome-nettool/Makefile deleted file mode 100644 index 6bcff6def..000000000 --- a/net/gnome-nettool/Makefile +++ /dev/null @@ -1,37 +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.30.0 -PORTEPOCH= 1 -CATEGORIES= net gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A GNOME utility that provides network information statistics - -LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop - -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 e008c1502..000000000 --- a/net/gnome-nettool/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-nettool-2.30.0.tar.bz2) = 2087259219cf16d434c52b4a5710b4c7 -SHA256 (gnome2/gnome-nettool-2.30.0.tar.bz2) = 42fdc867d26b31145986fd99e06509229b118430f2d666070c5dac7cff1dd000 -SIZE (gnome2/gnome-nettool-2.30.0.tar.bz2) = 651732 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 88a107e6f..000000000 --- a/net/gnome-nettool/files/patch-src_info.c +++ /dev/null @@ -1,76 +0,0 @@ ---- src/info.c.orig 2008-12-08 23:29:39.000000000 -0500 -+++ src/info.c 2009-02-27 16:33:49.000000000 -0500 -@@ -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> -+#ifdef __FreeBSD__ -+#include <net/if_media.h> -+#endif - - #include <glibtop.h> - #include <glibtop/netlist.h> -@@ -61,6 +68,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 }, -@@ -131,9 +139,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); 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 40e454467..000000000 --- a/net/gnome-nettool/files/patch-src_nettool.c +++ /dev/null @@ -1,49 +0,0 @@ ---- src/nettool.c.orig 2009-06-18 13:51:14.000000000 -0400 -+++ src/nettool.c 2009-07-19 16:05:59.000000000 -0400 -@@ -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 (GIOChanne - 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 (GIOChanne - } - 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 (GIOChanne - - } 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 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 c0c67a307..000000000 --- a/net/gnome-nettool/pkg-plist +++ /dev/null @@ -1,193 +0,0 @@ -bin/gnome-nettool -share/applications/gnome-nettool.desktop -%%DATADIR%%/dialogs/gnome-nettool.ui -%%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/de/gnome-nettool.xml -share/gnome/help/gnome-nettool/el/gnome-nettool.xml -share/gnome/help/gnome-nettool/en_GB/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/pt_BR/gnome-nettool.xml -share/gnome/help/gnome-nettool/ru/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/gnome/help/gnome-nettool/zh_CN/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/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/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-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 -share/pixmaps/gnome-nettool.png -@dirrm share/omf/gnome-nettool -@dirrm share/gnome/help/gnome-nettool/zh_CN -@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/ru -@dirrm share/gnome/help/gnome-nettool/pt_BR -@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/en_GB -@dirrm share/gnome/help/gnome-nettool/el -@dirrm share/gnome/help/gnome-nettool/de -@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/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/en@shaw/LC_MESSAGES -@dirrmtry share/locale/en@shaw -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@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/libgweather/Makefile b/net/libgweather/Makefile deleted file mode 100644 index ff5ba5633..000000000 --- a/net/libgweather/Makefile +++ /dev/null @@ -1,32 +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.39 2010/03/10 15:46:34 kwm Exp $ -# - -PORTNAME= libgweather -PORTVERSION= 2.30.0 -CATEGORIES= net gnome -MASTER_SITES= GNOME - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Library to accessing online weather informations - -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gnome-icon-theme.pc:${PORTSDIR}/misc/gnome-icon-theme -LIB_DEPENDS= soup-2.4.1:${PORTSDIR}/devel/libsoup -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gnome-icon-theme.pc:${PORTSDIR}/misc/gnome-icon-theme - -USE_GETTEXT= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack gconf2 ltverhack -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:22 -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 8bcf1e8d0..000000000 --- a/net/libgweather/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (libgweather-2.30.0.tar.bz2) = bf7ae6cb4eca85be3e9099a5de94c655 -SHA256 (libgweather-2.30.0.tar.bz2) = 25cd8976f98b79f7c336551bea7179a5b29027e95d3ba6a046c638422d440548 -SIZE (libgweather-2.30.0.tar.bz2) = 7314206 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 5b9f540b9..000000000 --- a/net/libgweather/pkg-plist +++ /dev/null @@ -1,648 +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 -%%DOCSDIR%%/GWeatherLocationEntry.html -%%DOCSDIR%%/GWeatherTimezoneMenu.html -%%DOCSDIR%%/ch01.html -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/libgweather-gweather-gconf.html -%%DOCSDIR%%/libgweather-gweather-location.html -%%DOCSDIR%%/libgweather-gweather-prefs.html -%%DOCSDIR%%/libgweather-gweather-timezone.html -%%DOCSDIR%%/libgweather-gweather-xml.html -%%DOCSDIR%%/libgweather-weather.html -%%DOCSDIR%%/libgweather.devhelp -%%DOCSDIR%%/libgweather.devhelp2 -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -share/icons/gnome/16x16/status/weather-clear-night-000.png -share/icons/gnome/16x16/status/weather-clear-night-010.png -share/icons/gnome/16x16/status/weather-clear-night-020.png -share/icons/gnome/16x16/status/weather-clear-night-030.png -share/icons/gnome/16x16/status/weather-clear-night-040.png -share/icons/gnome/16x16/status/weather-clear-night-050.png -share/icons/gnome/16x16/status/weather-clear-night-060.png -share/icons/gnome/16x16/status/weather-clear-night-070.png -share/icons/gnome/16x16/status/weather-clear-night-080.png -share/icons/gnome/16x16/status/weather-clear-night-090.png -share/icons/gnome/16x16/status/weather-clear-night-100.png -share/icons/gnome/16x16/status/weather-clear-night-110.png -share/icons/gnome/16x16/status/weather-clear-night-120.png -share/icons/gnome/16x16/status/weather-clear-night-130.png -share/icons/gnome/16x16/status/weather-clear-night-140.png -share/icons/gnome/16x16/status/weather-clear-night-150.png -share/icons/gnome/16x16/status/weather-clear-night-160.png -share/icons/gnome/16x16/status/weather-clear-night-170.png -share/icons/gnome/16x16/status/weather-clear-night-190.png -share/icons/gnome/16x16/status/weather-clear-night-200.png -share/icons/gnome/16x16/status/weather-clear-night-210.png -share/icons/gnome/16x16/status/weather-clear-night-220.png -share/icons/gnome/16x16/status/weather-clear-night-230.png -share/icons/gnome/16x16/status/weather-clear-night-240.png -share/icons/gnome/16x16/status/weather-clear-night-250.png -share/icons/gnome/16x16/status/weather-clear-night-260.png -share/icons/gnome/16x16/status/weather-clear-night-270.png -share/icons/gnome/16x16/status/weather-clear-night-280.png -share/icons/gnome/16x16/status/weather-clear-night-290.png -share/icons/gnome/16x16/status/weather-clear-night-300.png -share/icons/gnome/16x16/status/weather-clear-night-310.png -share/icons/gnome/16x16/status/weather-clear-night-320.png -share/icons/gnome/16x16/status/weather-clear-night-330.png -share/icons/gnome/16x16/status/weather-clear-night-340.png -share/icons/gnome/16x16/status/weather-clear-night-350.png -share/icons/gnome/16x16/status/weather-few-clouds-night-000.png -share/icons/gnome/16x16/status/weather-few-clouds-night-010.png -share/icons/gnome/16x16/status/weather-few-clouds-night-020.png -share/icons/gnome/16x16/status/weather-few-clouds-night-030.png -share/icons/gnome/16x16/status/weather-few-clouds-night-040.png -share/icons/gnome/16x16/status/weather-few-clouds-night-050.png -share/icons/gnome/16x16/status/weather-few-clouds-night-060.png -share/icons/gnome/16x16/status/weather-few-clouds-night-070.png -share/icons/gnome/16x16/status/weather-few-clouds-night-080.png -share/icons/gnome/16x16/status/weather-few-clouds-night-090.png -share/icons/gnome/16x16/status/weather-few-clouds-night-100.png -share/icons/gnome/16x16/status/weather-few-clouds-night-110.png -share/icons/gnome/16x16/status/weather-few-clouds-night-120.png -share/icons/gnome/16x16/status/weather-few-clouds-night-130.png -share/icons/gnome/16x16/status/weather-few-clouds-night-140.png -share/icons/gnome/16x16/status/weather-few-clouds-night-150.png -share/icons/gnome/16x16/status/weather-few-clouds-night-160.png -share/icons/gnome/16x16/status/weather-few-clouds-night-170.png -share/icons/gnome/16x16/status/weather-few-clouds-night-190.png -share/icons/gnome/16x16/status/weather-few-clouds-night-200.png -share/icons/gnome/16x16/status/weather-few-clouds-night-210.png -share/icons/gnome/16x16/status/weather-few-clouds-night-220.png -share/icons/gnome/16x16/status/weather-few-clouds-night-230.png -share/icons/gnome/16x16/status/weather-few-clouds-night-240.png -share/icons/gnome/16x16/status/weather-few-clouds-night-250.png -share/icons/gnome/16x16/status/weather-few-clouds-night-260.png -share/icons/gnome/16x16/status/weather-few-clouds-night-270.png -share/icons/gnome/16x16/status/weather-few-clouds-night-280.png -share/icons/gnome/16x16/status/weather-few-clouds-night-290.png -share/icons/gnome/16x16/status/weather-few-clouds-night-300.png -share/icons/gnome/16x16/status/weather-few-clouds-night-310.png -share/icons/gnome/16x16/status/weather-few-clouds-night-320.png -share/icons/gnome/16x16/status/weather-few-clouds-night-330.png -share/icons/gnome/16x16/status/weather-few-clouds-night-340.png -share/icons/gnome/16x16/status/weather-few-clouds-night-350.png -share/icons/gnome/22x22/status/weather-clear-night-000.png -share/icons/gnome/22x22/status/weather-clear-night-010.png -share/icons/gnome/22x22/status/weather-clear-night-020.png -share/icons/gnome/22x22/status/weather-clear-night-030.png -share/icons/gnome/22x22/status/weather-clear-night-040.png -share/icons/gnome/22x22/status/weather-clear-night-050.png -share/icons/gnome/22x22/status/weather-clear-night-060.png -share/icons/gnome/22x22/status/weather-clear-night-070.png -share/icons/gnome/22x22/status/weather-clear-night-080.png -share/icons/gnome/22x22/status/weather-clear-night-090.png -share/icons/gnome/22x22/status/weather-clear-night-100.png -share/icons/gnome/22x22/status/weather-clear-night-110.png -share/icons/gnome/22x22/status/weather-clear-night-120.png -share/icons/gnome/22x22/status/weather-clear-night-130.png -share/icons/gnome/22x22/status/weather-clear-night-140.png -share/icons/gnome/22x22/status/weather-clear-night-150.png -share/icons/gnome/22x22/status/weather-clear-night-160.png -share/icons/gnome/22x22/status/weather-clear-night-170.png -share/icons/gnome/22x22/status/weather-clear-night-190.png -share/icons/gnome/22x22/status/weather-clear-night-200.png -share/icons/gnome/22x22/status/weather-clear-night-210.png -share/icons/gnome/22x22/status/weather-clear-night-220.png -share/icons/gnome/22x22/status/weather-clear-night-230.png -share/icons/gnome/22x22/status/weather-clear-night-240.png -share/icons/gnome/22x22/status/weather-clear-night-250.png -share/icons/gnome/22x22/status/weather-clear-night-260.png -share/icons/gnome/22x22/status/weather-clear-night-270.png -share/icons/gnome/22x22/status/weather-clear-night-280.png -share/icons/gnome/22x22/status/weather-clear-night-290.png -share/icons/gnome/22x22/status/weather-clear-night-300.png -share/icons/gnome/22x22/status/weather-clear-night-310.png -share/icons/gnome/22x22/status/weather-clear-night-320.png -share/icons/gnome/22x22/status/weather-clear-night-330.png -share/icons/gnome/22x22/status/weather-clear-night-340.png -share/icons/gnome/22x22/status/weather-clear-night-350.png -share/icons/gnome/22x22/status/weather-few-clouds-night-000.png -share/icons/gnome/22x22/status/weather-few-clouds-night-010.png -share/icons/gnome/22x22/status/weather-few-clouds-night-020.png -share/icons/gnome/22x22/status/weather-few-clouds-night-030.png -share/icons/gnome/22x22/status/weather-few-clouds-night-040.png -share/icons/gnome/22x22/status/weather-few-clouds-night-050.png -share/icons/gnome/22x22/status/weather-few-clouds-night-060.png -share/icons/gnome/22x22/status/weather-few-clouds-night-070.png -share/icons/gnome/22x22/status/weather-few-clouds-night-080.png -share/icons/gnome/22x22/status/weather-few-clouds-night-090.png -share/icons/gnome/22x22/status/weather-few-clouds-night-100.png -share/icons/gnome/22x22/status/weather-few-clouds-night-110.png -share/icons/gnome/22x22/status/weather-few-clouds-night-120.png -share/icons/gnome/22x22/status/weather-few-clouds-night-130.png -share/icons/gnome/22x22/status/weather-few-clouds-night-140.png -share/icons/gnome/22x22/status/weather-few-clouds-night-150.png -share/icons/gnome/22x22/status/weather-few-clouds-night-160.png -share/icons/gnome/22x22/status/weather-few-clouds-night-170.png -share/icons/gnome/22x22/status/weather-few-clouds-night-190.png -share/icons/gnome/22x22/status/weather-few-clouds-night-200.png -share/icons/gnome/22x22/status/weather-few-clouds-night-210.png -share/icons/gnome/22x22/status/weather-few-clouds-night-220.png -share/icons/gnome/22x22/status/weather-few-clouds-night-230.png -share/icons/gnome/22x22/status/weather-few-clouds-night-240.png -share/icons/gnome/22x22/status/weather-few-clouds-night-250.png -share/icons/gnome/22x22/status/weather-few-clouds-night-260.png -share/icons/gnome/22x22/status/weather-few-clouds-night-270.png -share/icons/gnome/22x22/status/weather-few-clouds-night-280.png -share/icons/gnome/22x22/status/weather-few-clouds-night-290.png -share/icons/gnome/22x22/status/weather-few-clouds-night-300.png -share/icons/gnome/22x22/status/weather-few-clouds-night-310.png -share/icons/gnome/22x22/status/weather-few-clouds-night-320.png -share/icons/gnome/22x22/status/weather-few-clouds-night-330.png -share/icons/gnome/22x22/status/weather-few-clouds-night-340.png -share/icons/gnome/22x22/status/weather-few-clouds-night-350.png -share/icons/gnome/24x24/status/weather-clear-night-000.png -share/icons/gnome/24x24/status/weather-clear-night-010.png -share/icons/gnome/24x24/status/weather-clear-night-020.png -share/icons/gnome/24x24/status/weather-clear-night-030.png -share/icons/gnome/24x24/status/weather-clear-night-040.png -share/icons/gnome/24x24/status/weather-clear-night-050.png -share/icons/gnome/24x24/status/weather-clear-night-060.png -share/icons/gnome/24x24/status/weather-clear-night-070.png -share/icons/gnome/24x24/status/weather-clear-night-080.png -share/icons/gnome/24x24/status/weather-clear-night-090.png -share/icons/gnome/24x24/status/weather-clear-night-100.png -share/icons/gnome/24x24/status/weather-clear-night-110.png -share/icons/gnome/24x24/status/weather-clear-night-120.png -share/icons/gnome/24x24/status/weather-clear-night-130.png -share/icons/gnome/24x24/status/weather-clear-night-140.png -share/icons/gnome/24x24/status/weather-clear-night-150.png -share/icons/gnome/24x24/status/weather-clear-night-160.png -share/icons/gnome/24x24/status/weather-clear-night-170.png -share/icons/gnome/24x24/status/weather-clear-night-190.png -share/icons/gnome/24x24/status/weather-clear-night-200.png -share/icons/gnome/24x24/status/weather-clear-night-210.png -share/icons/gnome/24x24/status/weather-clear-night-220.png -share/icons/gnome/24x24/status/weather-clear-night-230.png -share/icons/gnome/24x24/status/weather-clear-night-240.png -share/icons/gnome/24x24/status/weather-clear-night-250.png -share/icons/gnome/24x24/status/weather-clear-night-260.png -share/icons/gnome/24x24/status/weather-clear-night-270.png -share/icons/gnome/24x24/status/weather-clear-night-280.png -share/icons/gnome/24x24/status/weather-clear-night-290.png -share/icons/gnome/24x24/status/weather-clear-night-300.png -share/icons/gnome/24x24/status/weather-clear-night-310.png -share/icons/gnome/24x24/status/weather-clear-night-320.png -share/icons/gnome/24x24/status/weather-clear-night-330.png -share/icons/gnome/24x24/status/weather-clear-night-340.png -share/icons/gnome/24x24/status/weather-clear-night-350.png -share/icons/gnome/24x24/status/weather-few-clouds-night-000.png -share/icons/gnome/24x24/status/weather-few-clouds-night-010.png -share/icons/gnome/24x24/status/weather-few-clouds-night-020.png -share/icons/gnome/24x24/status/weather-few-clouds-night-030.png -share/icons/gnome/24x24/status/weather-few-clouds-night-040.png -share/icons/gnome/24x24/status/weather-few-clouds-night-050.png -share/icons/gnome/24x24/status/weather-few-clouds-night-060.png -share/icons/gnome/24x24/status/weather-few-clouds-night-070.png -share/icons/gnome/24x24/status/weather-few-clouds-night-080.png -share/icons/gnome/24x24/status/weather-few-clouds-night-090.png -share/icons/gnome/24x24/status/weather-few-clouds-night-100.png -share/icons/gnome/24x24/status/weather-few-clouds-night-110.png -share/icons/gnome/24x24/status/weather-few-clouds-night-120.png -share/icons/gnome/24x24/status/weather-few-clouds-night-130.png -share/icons/gnome/24x24/status/weather-few-clouds-night-140.png -share/icons/gnome/24x24/status/weather-few-clouds-night-150.png -share/icons/gnome/24x24/status/weather-few-clouds-night-160.png -share/icons/gnome/24x24/status/weather-few-clouds-night-170.png -share/icons/gnome/24x24/status/weather-few-clouds-night-190.png -share/icons/gnome/24x24/status/weather-few-clouds-night-200.png -share/icons/gnome/24x24/status/weather-few-clouds-night-210.png -share/icons/gnome/24x24/status/weather-few-clouds-night-220.png -share/icons/gnome/24x24/status/weather-few-clouds-night-230.png -share/icons/gnome/24x24/status/weather-few-clouds-night-240.png -share/icons/gnome/24x24/status/weather-few-clouds-night-250.png -share/icons/gnome/24x24/status/weather-few-clouds-night-260.png -share/icons/gnome/24x24/status/weather-few-clouds-night-270.png -share/icons/gnome/24x24/status/weather-few-clouds-night-280.png -share/icons/gnome/24x24/status/weather-few-clouds-night-290.png -share/icons/gnome/24x24/status/weather-few-clouds-night-300.png -share/icons/gnome/24x24/status/weather-few-clouds-night-310.png -share/icons/gnome/24x24/status/weather-few-clouds-night-320.png -share/icons/gnome/24x24/status/weather-few-clouds-night-330.png -share/icons/gnome/24x24/status/weather-few-clouds-night-340.png -share/icons/gnome/24x24/status/weather-few-clouds-night-350.png -share/icons/gnome/32x32/status/weather-clear-night-000.png -share/icons/gnome/32x32/status/weather-clear-night-010.png -share/icons/gnome/32x32/status/weather-clear-night-020.png -share/icons/gnome/32x32/status/weather-clear-night-030.png -share/icons/gnome/32x32/status/weather-clear-night-040.png -share/icons/gnome/32x32/status/weather-clear-night-050.png -share/icons/gnome/32x32/status/weather-clear-night-060.png -share/icons/gnome/32x32/status/weather-clear-night-070.png -share/icons/gnome/32x32/status/weather-clear-night-080.png -share/icons/gnome/32x32/status/weather-clear-night-090.png -share/icons/gnome/32x32/status/weather-clear-night-100.png -share/icons/gnome/32x32/status/weather-clear-night-110.png -share/icons/gnome/32x32/status/weather-clear-night-120.png -share/icons/gnome/32x32/status/weather-clear-night-130.png -share/icons/gnome/32x32/status/weather-clear-night-140.png -share/icons/gnome/32x32/status/weather-clear-night-150.png -share/icons/gnome/32x32/status/weather-clear-night-160.png -share/icons/gnome/32x32/status/weather-clear-night-170.png -share/icons/gnome/32x32/status/weather-clear-night-190.png -share/icons/gnome/32x32/status/weather-clear-night-200.png -share/icons/gnome/32x32/status/weather-clear-night-210.png -share/icons/gnome/32x32/status/weather-clear-night-220.png -share/icons/gnome/32x32/status/weather-clear-night-230.png -share/icons/gnome/32x32/status/weather-clear-night-240.png -share/icons/gnome/32x32/status/weather-clear-night-250.png -share/icons/gnome/32x32/status/weather-clear-night-260.png -share/icons/gnome/32x32/status/weather-clear-night-270.png -share/icons/gnome/32x32/status/weather-clear-night-280.png -share/icons/gnome/32x32/status/weather-clear-night-290.png -share/icons/gnome/32x32/status/weather-clear-night-300.png -share/icons/gnome/32x32/status/weather-clear-night-310.png -share/icons/gnome/32x32/status/weather-clear-night-320.png -share/icons/gnome/32x32/status/weather-clear-night-330.png -share/icons/gnome/32x32/status/weather-clear-night-340.png -share/icons/gnome/32x32/status/weather-clear-night-350.png -share/icons/gnome/32x32/status/weather-few-clouds-night-000.png -share/icons/gnome/32x32/status/weather-few-clouds-night-010.png -share/icons/gnome/32x32/status/weather-few-clouds-night-020.png -share/icons/gnome/32x32/status/weather-few-clouds-night-030.png -share/icons/gnome/32x32/status/weather-few-clouds-night-040.png -share/icons/gnome/32x32/status/weather-few-clouds-night-050.png -share/icons/gnome/32x32/status/weather-few-clouds-night-060.png -share/icons/gnome/32x32/status/weather-few-clouds-night-070.png -share/icons/gnome/32x32/status/weather-few-clouds-night-080.png -share/icons/gnome/32x32/status/weather-few-clouds-night-090.png -share/icons/gnome/32x32/status/weather-few-clouds-night-100.png -share/icons/gnome/32x32/status/weather-few-clouds-night-110.png -share/icons/gnome/32x32/status/weather-few-clouds-night-120.png -share/icons/gnome/32x32/status/weather-few-clouds-night-130.png -share/icons/gnome/32x32/status/weather-few-clouds-night-140.png -share/icons/gnome/32x32/status/weather-few-clouds-night-150.png -share/icons/gnome/32x32/status/weather-few-clouds-night-160.png -share/icons/gnome/32x32/status/weather-few-clouds-night-170.png -share/icons/gnome/32x32/status/weather-few-clouds-night-190.png -share/icons/gnome/32x32/status/weather-few-clouds-night-200.png -share/icons/gnome/32x32/status/weather-few-clouds-night-210.png -share/icons/gnome/32x32/status/weather-few-clouds-night-220.png -share/icons/gnome/32x32/status/weather-few-clouds-night-230.png -share/icons/gnome/32x32/status/weather-few-clouds-night-240.png -share/icons/gnome/32x32/status/weather-few-clouds-night-250.png -share/icons/gnome/32x32/status/weather-few-clouds-night-260.png -share/icons/gnome/32x32/status/weather-few-clouds-night-270.png -share/icons/gnome/32x32/status/weather-few-clouds-night-280.png -share/icons/gnome/32x32/status/weather-few-clouds-night-290.png -share/icons/gnome/32x32/status/weather-few-clouds-night-300.png -share/icons/gnome/32x32/status/weather-few-clouds-night-310.png -share/icons/gnome/32x32/status/weather-few-clouds-night-320.png -share/icons/gnome/32x32/status/weather-few-clouds-night-330.png -share/icons/gnome/32x32/status/weather-few-clouds-night-340.png -share/icons/gnome/32x32/status/weather-few-clouds-night-350.png -share/icons/gnome/scalable/status/weather-clear-night-000.svg -share/icons/gnome/scalable/status/weather-clear-night-010.svg -share/icons/gnome/scalable/status/weather-clear-night-020.svg -share/icons/gnome/scalable/status/weather-clear-night-030.svg -share/icons/gnome/scalable/status/weather-clear-night-040.svg -share/icons/gnome/scalable/status/weather-clear-night-050.svg -share/icons/gnome/scalable/status/weather-clear-night-060.svg -share/icons/gnome/scalable/status/weather-clear-night-070.svg -share/icons/gnome/scalable/status/weather-clear-night-080.svg -share/icons/gnome/scalable/status/weather-clear-night-090.svg -share/icons/gnome/scalable/status/weather-clear-night-100.svg -share/icons/gnome/scalable/status/weather-clear-night-110.svg -share/icons/gnome/scalable/status/weather-clear-night-120.svg -share/icons/gnome/scalable/status/weather-clear-night-130.svg -share/icons/gnome/scalable/status/weather-clear-night-140.svg -share/icons/gnome/scalable/status/weather-clear-night-150.svg -share/icons/gnome/scalable/status/weather-clear-night-160.svg -share/icons/gnome/scalable/status/weather-clear-night-170.svg -share/icons/gnome/scalable/status/weather-clear-night-190.svg -share/icons/gnome/scalable/status/weather-clear-night-200.svg -share/icons/gnome/scalable/status/weather-clear-night-210.svg -share/icons/gnome/scalable/status/weather-clear-night-220.svg -share/icons/gnome/scalable/status/weather-clear-night-230.svg -share/icons/gnome/scalable/status/weather-clear-night-240.svg -share/icons/gnome/scalable/status/weather-clear-night-250.svg -share/icons/gnome/scalable/status/weather-clear-night-260.svg -share/icons/gnome/scalable/status/weather-clear-night-270.svg -share/icons/gnome/scalable/status/weather-clear-night-280.svg -share/icons/gnome/scalable/status/weather-clear-night-290.svg -share/icons/gnome/scalable/status/weather-clear-night-300.svg -share/icons/gnome/scalable/status/weather-clear-night-310.svg -share/icons/gnome/scalable/status/weather-clear-night-320.svg -share/icons/gnome/scalable/status/weather-clear-night-330.svg -share/icons/gnome/scalable/status/weather-clear-night-340.svg -share/icons/gnome/scalable/status/weather-clear-night-350.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-000.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-010.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-020.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-030.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-040.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-050.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-060.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-070.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-080.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-090.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-100.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-110.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-120.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-130.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-140.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-150.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-160.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-170.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-190.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-200.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-210.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-220.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-230.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-240.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-250.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-260.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-270.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-280.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-290.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-300.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-310.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-320.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-330.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-340.svg -share/icons/gnome/scalable/status/weather-few-clouds-night-350.svg -%%DATADIR%%/Locations.ang.xml -%%DATADIR%%/Locations.ar.xml -%%DATADIR%%/Locations.as.xml -%%DATADIR%%/Locations.ast.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.br.xml -%%DATADIR%%/Locations.bs.xml -%%DATADIR%%/Locations.ca.xml -%%DATADIR%%/Locations.ca@valencia.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.en@shaw.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.nds.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/ast/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/br/LC_MESSAGES/libgweather.mo -share/locale/bs/LC_MESSAGES/libgweather.mo -share/locale/ca/LC_MESSAGES/libgweather.mo -share/locale/ca@valencia/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/en@shaw/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/mai/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/nds/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 -@dirrmtry share/icons/gnome/scalable/status -@dirrmtry share/icons/gnome/scalable -@dirrm %%DATADIR%% -@dirrm %%DOCSDIR%% -@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/nds/LC_MESSAGES -@dirrmtry share/locale/nds -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@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/en@shaw/LC_MESSAGES -@dirrmtry share/locale/en@shaw -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@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/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@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 c5d8391f5..000000000 --- a/net/vinagre/Makefile +++ /dev/null @@ -1,62 +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.39 2010/03/31 00:15:50 avl Exp $ -# - -PORTNAME= vinagre -PORTVERSION= 2.30.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 vte gconf2 gnomedocutils \ - gnomepanel -USE_GMAKE= yes -GNU_CONFIGURE= yes -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -CONFIGURE_ARGS= --enable-avahi --enable-applet -enable-ssh -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= vinagre.schemas - -MAN1= vinagre.1 - -OPTIONS= TELEPATHY "Enable telepathy integration" on - -.include <bsd.port.pre.mk> - -.if !defined(WITHOUT_TELEPATHY) -CONFIGURE_ARGS+=--enable-telepathy -LIB_DEPENDS+= telepathy-glib.0:${PORTSDIR}/net-im/telepathy-glib -PLIST_SUB+= TELEPATHY="" -.else -CONFIGURE_ARGS+=--disable-telepathy -PLIST_SUB+= TELEPATHY="@comment " -.endif - -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.post.mk> diff --git a/net/vinagre/distinfo b/net/vinagre/distinfo deleted file mode 100644 index b8e940468..000000000 --- a/net/vinagre/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/vinagre-2.30.1.tar.bz2) = 6ce972d2766ff5b3a64d2e5f1173b672 -SHA256 (gnome2/vinagre-2.30.1.tar.bz2) = cbe5bff8e6f7a81e46fde5b1d8a53a7dbdd66d13d998c24508cae08de657f2cf -SIZE (gnome2/vinagre-2.30.1.tar.bz2) = 2413882 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/files/patch-plugins_vnc_vinagre-vnc-listener-dialog.c b/net/vinagre/files/patch-plugins_vnc_vinagre-vnc-listener-dialog.c deleted file mode 100644 index e855de33e..000000000 --- a/net/vinagre/files/patch-plugins_vnc_vinagre-vnc-listener-dialog.c +++ /dev/null @@ -1,11 +0,0 @@ ---- plugins/vnc/vinagre-vnc-listener-dialog.c.orig 2010-01-06 19:49:40.000000000 -0500 -+++ plugins/vnc/vinagre-vnc-listener-dialog.c 2010-01-06 19:49:55.000000000 -0500 -@@ -18,6 +18,8 @@ - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -+#include <sys/types.h> -+#include <sys/socket.h> - #include <net/if.h> - #include <arpa/inet.h> - #include <netinet/in.h> 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 4dcdd7cc6..000000000 --- a/net/vinagre/pkg-plist +++ /dev/null @@ -1,359 +0,0 @@ -bin/vinagre -libdata/bonobo/servers/GNOME_VinagreApplet.server -libexec/vinagre-applet -include/vinagre-1.0/vinagre/vinagre-app.h -include/vinagre-1.0/vinagre/vinagre-bacon.h -include/vinagre-1.0/vinagre/vinagre-bookmarks-entry.h -include/vinagre-1.0/vinagre/vinagre-bookmarks-migration.h -include/vinagre-1.0/vinagre/vinagre-bookmarks-tree.h -include/vinagre-1.0/vinagre/vinagre-bookmarks-ui.h -include/vinagre-1.0/vinagre/vinagre-bookmarks.h -include/vinagre-1.0/vinagre/vinagre-cache-prefs.h -include/vinagre-1.0/vinagre/vinagre-commands.h -include/vinagre-1.0/vinagre/vinagre-connect.h -include/vinagre-1.0/vinagre/vinagre-connection.h -include/vinagre-1.0/vinagre/vinagre-debug.h -include/vinagre-1.0/vinagre/vinagre-dirs.h -include/vinagre-1.0/vinagre/vinagre-dnd.h -include/vinagre-1.0/vinagre/vinagre-fav.h -include/vinagre-1.0/vinagre/vinagre-notebook.h -include/vinagre-1.0/vinagre/vinagre-plugin-loader.h -include/vinagre-1.0/vinagre/vinagre-plugin.h -include/vinagre-1.0/vinagre/vinagre-prefs.h -include/vinagre-1.0/vinagre/vinagre-ssh.h -include/vinagre-1.0/vinagre/vinagre-tab.h -include/vinagre-1.0/vinagre/vinagre-ui.h -include/vinagre-1.0/vinagre/vinagre-utils.h -include/vinagre-1.0/vinagre/vinagre-window.h -lib/vinagre-1/plugin-loaders/libcloader.la -lib/vinagre-1/plugin-loaders/libcloader.so -lib/vinagre-1/plugins/libssh.la -lib/vinagre-1/plugins/libssh.so -lib/vinagre-1/plugins/libvnc.la -lib/vinagre-1/plugins/libvnc.so -lib/vinagre-1/plugins/ssh.vinagre-plugin -lib/vinagre-1/plugins/vnc.vinagre-plugin -libdata/pkgconfig/vinagre-1.0.pc -share/applications/vinagre-file.desktop -share/applications/vinagre.desktop -%%TELEPATHY%%share/dbus-1/services/org.freedesktop.Telepathy.Client.Vinagre.service -%%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-auth-needed.png -share/gnome/help/vinagre/C/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/C/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/C/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/C/figures/vinagre-saving-bookmarks.png -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-auth-needed.png -share/gnome/help/vinagre/ca/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/ca/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/ca/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/ca/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/ca/figures/vinagre-screenshot.png -share/gnome/help/vinagre/ca/vinagre.xml -share/gnome/help/vinagre/cs/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/cs/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/cs/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/cs/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/cs/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/cs/figures/vinagre-screenshot.png -share/gnome/help/vinagre/cs/vinagre.xml -share/gnome/help/vinagre/de/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/de/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/de/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/de/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/de/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/de/figures/vinagre-screenshot.png -share/gnome/help/vinagre/de/vinagre.xml -share/gnome/help/vinagre/el/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/el/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/el/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/el/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/el/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/el/figures/vinagre-screenshot.png -share/gnome/help/vinagre/el/vinagre.xml -share/gnome/help/vinagre/en_GB/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/en_GB/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/en_GB/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/en_GB/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/en_GB/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/en_GB/figures/vinagre-screenshot.png -share/gnome/help/vinagre/en_GB/vinagre.xml -share/gnome/help/vinagre/es/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/es/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/es/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/es/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/es/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/es/figures/vinagre-screenshot.png -share/gnome/help/vinagre/es/vinagre.xml -share/gnome/help/vinagre/fr/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/fr/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/fr/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/fr/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/fr/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/fr/figures/vinagre-screenshot.png -share/gnome/help/vinagre/fr/vinagre.xml -share/gnome/help/vinagre/it/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/it/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/it/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/it/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/it/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/it/figures/vinagre-screenshot.png -share/gnome/help/vinagre/it/vinagre.xml -share/gnome/help/vinagre/oc/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/oc/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/oc/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/oc/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/oc/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/oc/figures/vinagre-screenshot.png -share/gnome/help/vinagre/oc/vinagre.xml -share/gnome/help/vinagre/pl/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/pl/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/pl/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/pl/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/pl/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/pl/figures/vinagre-screenshot.png -share/gnome/help/vinagre/pl/vinagre.xml -share/gnome/help/vinagre/pt/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/pt/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/pt/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/pt/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/pt/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/pt/figures/vinagre-screenshot.png -share/gnome/help/vinagre/pt/vinagre.xml -share/gnome/help/vinagre/pt_BR/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/pt_BR/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/pt_BR/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/pt_BR/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/pt_BR/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/pt_BR/figures/vinagre-screenshot.png -share/gnome/help/vinagre/pt_BR/vinagre.xml -share/gnome/help/vinagre/sq/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/sq/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/sq/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/sq/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/sq/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/sq/figures/vinagre-screenshot.png -share/gnome/help/vinagre/sq/vinagre.xml -share/gnome/help/vinagre/sv/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/sv/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/sv/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/sv/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/sv/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/sv/figures/vinagre-screenshot.png -share/gnome/help/vinagre/sv/vinagre.xml -share/gnome/help/vinagre/th/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/th/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/th/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/th/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/th/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/th/figures/vinagre-screenshot.png -share/gnome/help/vinagre/th/vinagre.xml -share/gnome/help/vinagre/zh_CN/figures/vinagre-auth-needed.png -share/gnome/help/vinagre/zh_CN/figures/vinagre-bookmarks-side-panel.png -share/gnome/help/vinagre/zh_CN/figures/vinagre-connect-dialog.png -share/gnome/help/vinagre/zh_CN/figures/vinagre-editing-bookmarks.png -share/gnome/help/vinagre/zh_CN/figures/vinagre-saving-bookmarks.png -share/gnome/help/vinagre/zh_CN/figures/vinagre-screenshot.png -share/gnome/help/vinagre/zh_CN/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/16x16/status/view-minimize.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/22x22/status/view-minimize.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/32x32/status/view-minimize.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/48x48/status/view-minimize.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/as/LC_MESSAGES/vinagre.mo -share/locale/ast/LC_MESSAGES/vinagre.mo -share/locale/be@latin/LC_MESSAGES/vinagre.mo -share/locale/bg/LC_MESSAGES/vinagre.mo -share/locale/bn/LC_MESSAGES/vinagre.mo -share/locale/bn_IN/LC_MESSAGES/vinagre.mo -share/locale/ca/LC_MESSAGES/vinagre.mo -share/locale/ca@valencia/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@shaw/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/ga/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/id/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/lv/LC_MESSAGES/vinagre.mo -share/locale/mai/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/ro/LC_MESSAGES/vinagre.mo -share/locale/ru/LC_MESSAGES/vinagre.mo -share/locale/si/LC_MESSAGES/vinagre.mo -share/locale/sk/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/te/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-el.omf -share/omf/vinagre/vinagre-en_GB.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-pl.omf -share/omf/vinagre/vinagre-pt.omf -share/omf/vinagre/vinagre-pt_BR.omf -share/omf/vinagre/vinagre-sq.omf -share/omf/vinagre/vinagre-sv.omf -share/omf/vinagre/vinagre-th.omf -share/omf/vinagre/vinagre-zh_CN.omf -%%TELEPATHY%%share/telepathy/clients/Vinagre.client -share/vinagre-1/plugins/vnc/vnc.ui -%%DATADIR%%/vinagre-fav-ui.xml -%%DATADIR%%/GNOME_VinagreApplet.xml -%%DATADIR%%/vinagre-ui.xml -%%DATADIR%%/vinagre.ui -@dirrm %%DATADIR%% -@dirrm share/vinagre-1/plugins/vnc -@dirrm share/vinagre-1/plugins -@dirrm share/vinagre-1 -%%TELEPATHY%%@dirrmtry share/telepathy/clients -%%TELEPATHY%%@dirrmtry share/telepathy -@dirrm share/omf/vinagre -@dirrm share/gnome/help/vinagre/zh_CN/figures -@dirrm share/gnome/help/vinagre/zh_CN -@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_BR/figures -@dirrm share/gnome/help/vinagre/pt_BR -@dirrm share/gnome/help/vinagre/pt/figures -@dirrm share/gnome/help/vinagre/pt -@dirrm share/gnome/help/vinagre/pl/figures -@dirrm share/gnome/help/vinagre/pl -@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/en_GB/figures -@dirrm share/gnome/help/vinagre/en_GB -@dirrm share/gnome/help/vinagre/el/figures -@dirrm share/gnome/help/vinagre/el -@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 -@dirrm lib/vinagre-1/plugins -@dirrm lib/vinagre-1/plugin-loaders -@dirrm lib/vinagre-1 -@dirrm include/vinagre-1.0/vinagre -@dirrm include/vinagre-1.0 -@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/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/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/en@shaw/LC_MESSAGES -@dirrmtry share/locale/en@shaw -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@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/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/net/vino/Makefile b/net/vino/Makefile deleted file mode 100644 index 0e75db020..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$ -# - -PORTNAME= vino -PORTVERSION= 2.28.2 -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 \ - unique-1.0.2:${PORTSDIR}/x11-toolkits/unique - -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_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 80e7fccad..000000000 --- a/net/vino/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/vino-2.28.2.tar.bz2) = 7b7fcd23925efb628da2d2f12d73b485 -SHA256 (gnome2/vino-2.28.2.tar.bz2) = f2a0b7c77fe58f3918b202a9f0f4ae3295518ac43eeceade0875b096038a72e0 -SIZE (gnome2/vino-2.28.2.tar.bz2) = 795208 diff --git a/net/vino/files/patch-configure b/net/vino/files/patch-configure deleted file mode 100644 index 7d5508317..000000000 --- a/net/vino/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig 2010-04-01 16:50:38.000000000 +0200 -+++ configure 2010-04-01 16:50:38.000000000 +0200 -@@ -15144,6 +15144,8 @@ - cat confdefs.h - <<_ACEOF >conftest.$ac_ext - /* end confdefs.h. */ - -+ #include <sys/types.h> -+ #include <sys/socket.h> - #include <ifaddrs.h> - - int 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 348ea91d3..000000000 --- a/net/vino/files/patch-server_libvncserver_sockets.c +++ /dev/null @@ -1,30 +0,0 @@ ---- server/libvncserver/sockets.c.orig 2009-02-13 08:11:38.000000000 -0500 -+++ server/libvncserver/sockets.c 2009-03-07 20:19:28.000000000 -0500 -@@ -668,6 +669,11 @@ NewSocketListenTCP(struct sockaddr *addr - { - int sock = -1; - int one = 1; -+#ifdef ENABLE_IPV6 -+#ifdef IPV6_V6ONLY -+ int off = 0; -+#endif -+#endif - - if ((sock = socket(addr->sa_family, SOCK_STREAM, 0)) < 0) - return -1; -@@ -677,6 +683,15 @@ NewSocketListenTCP(struct sockaddr *addr - return -1; - } - -+#ifdef ENABLE_IPV6 -+#ifdef IPV6_V6ONLY -+ if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&off, sizeof(off)) < 0) { -+ close(sock); -+ return -1; -+ } -+#endif -+#endif -+ - if (bind(sock, addr, len) < 0) { - close(sock); - return -1; 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 524f06d78..000000000 --- a/net/vino/pkg-plist +++ /dev/null @@ -1,128 +0,0 @@ -bin/vino-passwd -bin/vino-preferences -etc/xdg/autostart/vino-server.desktop -libexec/vino-server -share/applications/vino-preferences.desktop -share/dbus-1/services/org.gnome.Vino.service -share/locale/ar/LC_MESSAGES/vino.mo -share/locale/as/LC_MESSAGES/vino.mo -share/locale/ast/LC_MESSAGES/vino.mo -share/locale/az/LC_MESSAGES/vino.mo -share/locale/be/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/ca@valencia/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@shaw/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/ga/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/mai/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.ui -%%DATADIR%%/vino-prompt.ui -%%DATADIR%%/webservices -@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/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/en@shaw/LC_MESSAGES -@dirrmtry share/locale/en@shaw -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@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/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as |