diff options
Diffstat (limited to 'x11')
226 files changed, 0 insertions, 11684 deletions
diff --git a/x11/alltray/Makefile b/x11/alltray/Makefile deleted file mode 100644 index 252e0e60a..000000000 --- a/x11/alltray/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# New ports collection makefile for: alltray -# Date created: 2005-10-15 -# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> -# -# $FreeBSD$ -# - -PORTNAME= alltray -PORTVERSION= 0.69 -PORTREVISION= 3 -CATEGORIES= x11 -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= acm@FreeBSD.org -COMMENT= Dock any application with no native tray icon - -USE_GNOME= gtk20 -GNU_CONFIGURE= yes -INSTALLS_SHLIB= yes -CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include" LDFLAGS="-L${X11BASE}/lib" -USE_GCC= 3.4+ - -MAN1= alltray.1 - -OPTIONS= KDE "Support only KDE desktop" off - -.include <bsd.port.pre.mk> - -.if defined(WITH_KDE) -CONFIGURE_ARGS= --disable-gconf -.else -USE_GNOME+= gconf2 -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|-ldl||' ${WRKSRC}/lib/Makefile.in - @${REINPLACE_CMD} -e 's|-L/usr/X11R6/lib||' ${WRKSRC}/src/Makefile.in - @${REINPLACE_CMD} -e 's|/etc/gconf|${LOCALBASE}/etc/gconf|; \ - /THEME_DIR1/ s|/usr/share/|${LOCALBASE}/share/themes/|' \ - ${WRKSRC}/src/gnome_theme.c - @${REINPLACE_CMD} -e 's|liballtray\.so\.0\.0\.0|liballtray.so.0|; \ - s|/usr/lib|${PREFIX}/lib|' ${WRKSRC}/src/child.c - -.include <bsd.port.post.mk> diff --git a/x11/alltray/distinfo b/x11/alltray/distinfo deleted file mode 100644 index be8eba94c..000000000 --- a/x11/alltray/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (alltray-0.69.tar.gz) = ebc1c8eea945aff703d758e296b76cc9 -SHA256 (alltray-0.69.tar.gz) = b20d4759e770c6cfd7ea4e2aeb2d5856d3ee28fb7171c62067595e18cdc5d0ec -SIZE (alltray-0.69.tar.gz) = 380752 diff --git a/x11/alltray/pkg-descr b/x11/alltray/pkg-descr deleted file mode 100644 index 5acfcccc1..000000000 --- a/x11/alltray/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -With AllTray you can dock any application with no native tray icon (like -Evolution, Thunderbird, terminals) into the system tray. A high-light feature -is that a click on the "close" button will minimize back to system tray. It -works well with GNOME, KDE, XFCE 4*, Fluxbox* and WindowMaker*. - -WWW: http://alltray.sourceforge.net/ diff --git a/x11/alltray/pkg-plist b/x11/alltray/pkg-plist deleted file mode 100644 index c17fd0f3e..000000000 --- a/x11/alltray/pkg-plist +++ /dev/null @@ -1,7 +0,0 @@ -bin/alltray -lib/liballtray.la -lib/liballtray.so -lib/liballtray.so.0 -share/applications/alltray.desktop -share/pixmaps/alltray.png -@dirrmtry share/applications diff --git a/x11/apwal/Makefile b/x11/apwal/Makefile deleted file mode 100644 index 31a0f5f7d..000000000 --- a/x11/apwal/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: apwal -# Date created: Nov 26, 2003 -# Whom: Volker Stolz <stolz@i2.informatik.rwth-aachen.de> -# -# $FreeBSD$ -# - -PORTNAME= apwal -PORTVERSION= 0.4.5 -PORTREVISION= 4 -CATEGORIES= x11 -MASTER_SITES= http://apwal.free.fr/download/ - -MAINTAINER= vs@FreeBSD.org -COMMENT= Simple and powerful application launcher - -USE_GNOME= gtk20 libxml2 -USE_X_PREFIX= yes -USE_GMAKE= yes - -WRKSRC= ${WRKDIR}/${PORTNAME}/src - -PLIST_FILES= bin/apwal bin/apwal-editor - -post-patch: - @${CP} ${FILESDIR}/group_member.c ${WRKSRC} - @${REINPLACE_CMD} -e 's|/usr/share|${PREFIX}/share|g' \ - ${WRKSRC}/cereimg.c ${WRKSRC}/../example/apwalrc.xml - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/apwal ${PREFIX}/bin - ${LN} -sf ${PREFIX}/bin/apwal ${PREFIX}/bin/apwal-editor - -.include <bsd.port.mk> diff --git a/x11/apwal/distinfo b/x11/apwal/distinfo deleted file mode 100644 index 6fc7a5ed7..000000000 --- a/x11/apwal/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (apwal-0.4.5.tar.gz) = 2f15a1a680f842d8373a1c2725b53130 -SHA256 (apwal-0.4.5.tar.gz) = 0de64be9b40d853ef1efe69faf99e3e7b9c3b756575ed9f40e16aa4fe74844f3 -SIZE (apwal-0.4.5.tar.gz) = 73999 diff --git a/x11/apwal/files/group_member.c b/x11/apwal/files/group_member.c deleted file mode 100644 index 3197feb15..000000000 --- a/x11/apwal/files/group_member.c +++ /dev/null @@ -1,25 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <unistd.h> - -int group_member(gid_t gid) { - gid_t *grouplist = NULL; - int res,i; - - res = getgroups(0,NULL); - if (res >= 0) { - grouplist = calloc(sizeof(gid_t),res); - res = getgroups(res,grouplist); - if (res >=0) { - for(i=0;i<res;i++) { - if (grouplist[i] == gid) break; - } - } - } - if (res == -1) { - perror("Can't get number of groups!"); - return -1; - } else { - return (i<res); - } -} diff --git a/x11/apwal/files/patch-Makefile b/x11/apwal/files/patch-Makefile deleted file mode 100644 index 13cb5e7bf..000000000 --- a/x11/apwal/files/patch-Makefile +++ /dev/null @@ -1,43 +0,0 @@ ---- Makefile.orig Sun Dec 19 21:23:27 2004 -+++ Makefile Thu Dec 23 10:05:09 2004 -@@ -5,8 +5,8 @@ - CFLAGS=-g -Wall -Werror `pkg-config --cflags gtk+-2.0 gthread-2.0` -DGTK_DISABLE_DEPRECATED -DAPWAL_DEBUG - LDFLAGS=`pkg-config --libs gtk+-2.0 gthread-2.0` `xml2-config --libs` - else --CFLAGS=-O2 `pkg-config --cflags gtk+-2.0 gthread-2.0` --LDFLAGS=-O2 `pkg-config --libs gtk+-2.0 gthread-2.0` `xml2-config --libs` -+CFLAGS+=`pkg-config --cflags gtk+-2.0 gthread-2.0` -+LDFLAGS+=`pkg-config --libs gtk+-2.0 gthread-2.0` `xml2-config --libs` - endif - - OBJS=main.o app.o launcher.o editor.o property.o \ -@@ -24,11 +24,11 @@ - ifdef APWAL_DEBUG - all: checktraceformat apwal tags - apwal: $(OBJS) -- gcc -o $@ $^ $(LDFLAGS) -+ $(CC) -o $@ $^ $(LDFLAGS) - else - all: apwal - apwal: $(OBJS) -- gcc -o $@ $^ $(LDFLAGS) -+ $(CC) -o $@ $^ $(LDFLAGS) - strip $@ - endif - -@@ -37,12 +37,12 @@ - ln -sf /usr/local/bin/apwal /usr/local/bin/apwal-editor - - .c.o: $(INCS) -- gcc -c $< -o $*.o $(CFLAGS) -+ $(CC) -c $< -o $*.o $(CFLAGS) - - xmlrc.o: xmlrc.c $(INCS) -- gcc -c $< -o $*.o $(CFLAGS) `xml2-config --cflags` -+ $(CC) -c $< -o $*.o $(CFLAGS) `xml2-config --cflags` - about.o: about.c $(INCS) ../Makefile.inc -- gcc -c $< -o $*.o $(CFLAGS) -DAPWAL_VERSION=\"$(VERS)\" -+ $(CC) -c $< -o $*.o $(CFLAGS) -DAPWAL_VERSION=\"$(VERS)\" - - gtkstuff.o: pixbufinline.inc - xmlrc.o: xmlrcinline.inc diff --git a/x11/apwal/files/patch-app.c b/x11/apwal/files/patch-app.c deleted file mode 100644 index e17a31655..000000000 --- a/x11/apwal/files/patch-app.c +++ /dev/null @@ -1,10 +0,0 @@ ---- app.c.orig Wed Nov 26 11:50:10 2003 -+++ app.c Wed Nov 26 11:50:23 2003 -@@ -18,6 +18,7 @@ - */ - - -+#include <sys/types.h> - #include "common.h" - #include <string.h> - diff --git a/x11/apwal/files/patch-main.c b/x11/apwal/files/patch-main.c deleted file mode 100644 index fbe01c31a..000000000 --- a/x11/apwal/files/patch-main.c +++ /dev/null @@ -1,11 +0,0 @@ ---- main.c.orig Thu Dec 23 09:57:45 2004 -+++ main.c Thu Dec 23 09:58:02 2004 -@@ -43,7 +43,7 @@ - int i; - for (i = 1; i < argc; i++) - { -- TRACE(); -+ TRACE("%s",""); - if (strstr(argv[i], "--edit") != NULL) - { - launch_editor = TRUE; diff --git a/x11/apwal/pkg-descr b/x11/apwal/pkg-descr deleted file mode 100644 index b8f06305e..000000000 --- a/x11/apwal/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Apwal is a simple and powerful application launcher. -It is composed in 2 parts: the application launcher itself and -a good looking easy to use editor. - -Apwal is developed under GPL. It is written in C and is using the -GTK+ toolkit for the Editor interface and XML format to save the -configuration. - -To be able to launch the editor from inside apwal you need a -mounted procfs. - -WWW: http://apwal.free.fr/ diff --git a/x11/brightside/Makefile b/x11/brightside/Makefile deleted file mode 100644 index c5d91513b..000000000 --- a/x11/brightside/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: brightide -# Date created: 02 July 2004 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= brightside -PORTVERSION= 1.4.0 -PORTREVISION= 4 -CATEGORIES= x11 -MASTER_SITES= http://files.catmur.co.uk/brightside/ - -MAINTAINER= marcus@FreeBSD.org -COMMENT= A tool to add reactivity to the edges and corners of the GNOME desktop - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -USE_GNOME= gnomeprefix gnomehack libwnck libgnomeui -CONFIGURE_ARGS= --enable-tray-icon -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= brightside.schemas - -.include <bsd.port.mk> diff --git a/x11/brightside/distinfo b/x11/brightside/distinfo deleted file mode 100644 index 814a65e5b..000000000 --- a/x11/brightside/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (brightside-1.4.0.tar.bz2) = df6dfe0ffbf110036fa1a5549b21e9c3 -SHA256 (brightside-1.4.0.tar.bz2) = 75cebca7c545036611abbef2473186392e8f8eca327da3684df4625e6828f755 -SIZE (brightside-1.4.0.tar.bz2) = 723261 diff --git a/x11/brightside/files/patch-src_brightside.c b/x11/brightside/files/patch-src_brightside.c deleted file mode 100644 index f122d8f73..000000000 --- a/x11/brightside/files/patch-src_brightside.c +++ /dev/null @@ -1,20 +0,0 @@ ---- src/brightside.c.orig Sun Mar 13 19:44:54 2005 -+++ src/brightside.c Sun Mar 13 19:47:26 2005 -@@ -1253,7 +1253,7 @@ - - new_workspace = wnck_screen_get_workspace (brightside->screen, new_index); - if (new_workspace) { -- wnck_workspace_activate (new_workspace); -+ wnck_workspace_activate (new_workspace, event->time); - pager_show (brightside, new_workspace, n_rows, TRUE); - } - -@@ -1540,7 +1540,7 @@ - - new_workspace = wnck_screen_get_workspace ( - brightside->screen, new_space); -- wnck_workspace_activate (new_workspace); -+ wnck_workspace_activate (new_workspace, gtk_get_current_event_time()); - - pager_show (brightside, new_workspace, rows, FALSE); - diff --git a/x11/brightside/pkg-descr b/x11/brightside/pkg-descr deleted file mode 100644 index 5108bc797..000000000 --- a/x11/brightside/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Brightside is a tool to add reactivity to the corners and edges of your GNOME -desktop. - -Brightside provides edge flipping to allow you to switch to the adjacent -workspace simply by pressing your mouse against the edge of the screen. - -Brightside also allows you to assign configurable actions to occur while you -rest the mouse in a corner of the screen. - --- Brightside Homepage - -WWW: http://catmur.co.uk/~ed/main/brightside/ diff --git a/x11/brightside/pkg-plist b/x11/brightside/pkg-plist deleted file mode 100644 index 6577e14dc..000000000 --- a/x11/brightside/pkg-plist +++ /dev/null @@ -1,69 +0,0 @@ -bin/brightside -bin/brightside-properties -share/brightside/brightside-16.png -share/brightside/brightside-48.png -share/brightside/brightside-brightness.png -share/brightside/brightside-properties.glade -share/brightside/brightside.glade -share/brightside/brightside.svg -share/brightside/custom-action.glade -share/brightside/dpms.png -share/brightside/gnome-lockscreen.png -share/brightside/gnome-speakernotes-muted.png -share/brightside/gnome-speakernotes.png -share/brightside/xscreensaver.png -share/control-center-2.0/capplets/brightside.desktop -share/pixmaps/brightside-48.png -share/locale/am/LC_MESSAGES/Brightside.mo -share/locale/ar/LC_MESSAGES/Brightside.mo -share/locale/az/LC_MESSAGES/Brightside.mo -share/locale/be/LC_MESSAGES/Brightside.mo -share/locale/bg/LC_MESSAGES/Brightside.mo -share/locale/bn/LC_MESSAGES/Brightside.mo -share/locale/ca/LC_MESSAGES/Brightside.mo -share/locale/cs/LC_MESSAGES/Brightside.mo -share/locale/cy/LC_MESSAGES/Brightside.mo -share/locale/da/LC_MESSAGES/Brightside.mo -share/locale/de/LC_MESSAGES/Brightside.mo -share/locale/el/LC_MESSAGES/Brightside.mo -share/locale/es/LC_MESSAGES/Brightside.mo -share/locale/et/LC_MESSAGES/Brightside.mo -share/locale/eu/LC_MESSAGES/Brightside.mo -share/locale/fa/LC_MESSAGES/Brightside.mo -share/locale/fi/LC_MESSAGES/Brightside.mo -share/locale/fr/LC_MESSAGES/Brightside.mo -share/locale/ga/LC_MESSAGES/Brightside.mo -share/locale/he/LC_MESSAGES/Brightside.mo -share/locale/hi/LC_MESSAGES/Brightside.mo -share/locale/hu/LC_MESSAGES/Brightside.mo -share/locale/id/LC_MESSAGES/Brightside.mo -share/locale/is/LC_MESSAGES/Brightside.mo -share/locale/it/LC_MESSAGES/Brightside.mo -share/locale/ja/LC_MESSAGES/Brightside.mo -share/locale/ko/LC_MESSAGES/Brightside.mo -share/locale/li/LC_MESSAGES/Brightside.mo -share/locale/lt/LC_MESSAGES/Brightside.mo -share/locale/lv/LC_MESSAGES/Brightside.mo -share/locale/mk/LC_MESSAGES/Brightside.mo -share/locale/ml/LC_MESSAGES/Brightside.mo -share/locale/mn/LC_MESSAGES/Brightside.mo -share/locale/ms/LC_MESSAGES/Brightside.mo -share/locale/nl/LC_MESSAGES/Brightside.mo -share/locale/no/LC_MESSAGES/Brightside.mo -share/locale/pl/LC_MESSAGES/Brightside.mo -share/locale/pt/LC_MESSAGES/Brightside.mo -share/locale/pt_BR/LC_MESSAGES/Brightside.mo -share/locale/ro/LC_MESSAGES/Brightside.mo -share/locale/ru/LC_MESSAGES/Brightside.mo -share/locale/sk/LC_MESSAGES/Brightside.mo -share/locale/sl/LC_MESSAGES/Brightside.mo -share/locale/sq/LC_MESSAGES/Brightside.mo -share/locale/sr/LC_MESSAGES/Brightside.mo -share/locale/sr@Latn/LC_MESSAGES/Brightside.mo -share/locale/sv/LC_MESSAGES/Brightside.mo -share/locale/tr/LC_MESSAGES/Brightside.mo -share/locale/uk/LC_MESSAGES/Brightside.mo -share/locale/vi/LC_MESSAGES/Brightside.mo -share/locale/zh_CN/LC_MESSAGES/Brightside.mo -share/locale/zh_TW/LC_MESSAGES/Brightside.mo -@dirrm share/brightside diff --git a/x11/fast-user-switch-applet/Makefile b/x11/fast-user-switch-applet/Makefile deleted file mode 100644 index 3d12f431c..000000000 --- a/x11/fast-user-switch-applet/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: user-selector-applet -# Date created: 8 May 2004 -# Whom: Alexander Nedotsukov <bland@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/fast-user-switch-applet/Makefile,v 1.27 2007/09/18 15:00:41 ahze Exp $ - -PORTNAME= fast-user-switch-applet -PORTVERSION= 2.20.0 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Fast user switching applet for GNOME - -USE_BZIP2= yes -USE_XLIB= yes -USE_GETTEXT= yes -USE_GMAKE= yes -USE_GNOME= gnomehack intlhack gnomeprefix gtk20 gnomepanel -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-gdm-config=${LOCALBASE}/etc/gdm/custom.conf \ - --with-gdm-setup=${LOCALBASE}/sbin/gdmsetup - -GCONF_SCHEMAS= fast-user-switch-applet.schemas -INSTALLS_OMF= yes - -post-patch: - @${REINPLACE_CMD} -e 's|\$$"\$$|"$$|' ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/x11/fast-user-switch-applet/distinfo b/x11/fast-user-switch-applet/distinfo deleted file mode 100644 index 1a39f7b9e..000000000 --- a/x11/fast-user-switch-applet/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/fast-user-switch-applet-2.20.0.tar.bz2) = 1d1fd25b5599f7656e3fa89aa913137c -SHA256 (gnome2/fast-user-switch-applet-2.20.0.tar.bz2) = c7123f132aff47978e754d83cd5e449a4e02e215466fc3fc2f3bc81fb5cec5fd -SIZE (gnome2/fast-user-switch-applet-2.20.0.tar.bz2) = 777118 diff --git a/x11/fast-user-switch-applet/files/patch-src_gdm-queue.c b/x11/fast-user-switch-applet/files/patch-src_gdm-queue.c deleted file mode 100644 index cd89dc462..000000000 --- a/x11/fast-user-switch-applet/files/patch-src_gdm-queue.c +++ /dev/null @@ -1,19 +0,0 @@ ---- src/gdm-queue.c.orig 2007-04-09 12:01:03.000000000 -0400 -+++ src/gdm-queue.c 2007-08-08 15:18:12.000000000 -0400 -@@ -32,6 +32,7 @@ - #include <sys/stat.h> - #include <sys/un.h> - #include <errno.h> -+#include <signal.h> - #include <stdio.h> - - #include "gdm-queue.h" -@@ -237,7 +238,7 @@ gboolean gdm_run_queue (void *dummy) - - if (stat (GDM_NEW_SOCKET_FILENAME, &file_stat) == 0) - strcpy (addr.sun_path, GDM_NEW_SOCKET_FILENAME); -- if (stat (GDM_OLD_SOCKET_FILENAME, &file_stat) == 0) -+ else if (stat (GDM_OLD_SOCKET_FILENAME, &file_stat) == 0) - strcpy (addr.sun_path, GDM_OLD_SOCKET_FILENAME); - else - g_error ("Can't find gdm socket!"); diff --git a/x11/fast-user-switch-applet/pkg-descr b/x11/fast-user-switch-applet/pkg-descr deleted file mode 100644 index da069d11f..000000000 --- a/x11/fast-user-switch-applet/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -The Fast User-Switching Applet is an applet for the GNOME panel which -provides a menu to switch between users. It integrates with GDM to -switch between existing X11 sessions or create new ones as needed, -and will show the same users as the GDM face browser. diff --git a/x11/fast-user-switch-applet/pkg-plist b/x11/fast-user-switch-applet/pkg-plist deleted file mode 100644 index 6c9de7ec4..000000000 --- a/x11/fast-user-switch-applet/pkg-plist +++ /dev/null @@ -1,163 +0,0 @@ -libdata/bonobo/servers/GNOME_FastUserSwitchApplet.server -libexec/fast-user-switch-applet -%%DATADIR%%/ui.glade -share/gnome-2.0/ui/GNOME_FastUserSwitchApplet.xml -share/gnome/help/fast-user-switch-applet/C/fast-user-switch-applet.xml -share/gnome/help/fast-user-switch-applet/C/figures/fast_user_switch_applet-context.png -share/gnome/help/fast-user-switch-applet/C/figures/fast_user_switch_applet-icon.png -share/gnome/help/fast-user-switch-applet/C/figures/fast_user_switch_applet-prefs.png -share/gnome/help/fast-user-switch-applet/C/figures/fast_user_switch_applet-text.png -share/gnome/help/fast-user-switch-applet/C/figures/fast_user_switch_applet-username.png -share/gnome/help/fast-user-switch-applet/C/figures/fast_user_switch_applet.png -share/gnome/help/fast-user-switch-applet/C/legal.xml -share/gnome/help/fast-user-switch-applet/en_GB/fast-user-switch-applet.xml -share/gnome/help/fast-user-switch-applet/en_GB/figures/fast_user_switch_applet-context.png -share/gnome/help/fast-user-switch-applet/en_GB/figures/fast_user_switch_applet-icon.png -share/gnome/help/fast-user-switch-applet/en_GB/figures/fast_user_switch_applet-prefs.png -share/gnome/help/fast-user-switch-applet/en_GB/figures/fast_user_switch_applet-text.png -share/gnome/help/fast-user-switch-applet/en_GB/figures/fast_user_switch_applet-username.png -share/gnome/help/fast-user-switch-applet/en_GB/figures/fast_user_switch_applet.png -share/gnome/help/fast-user-switch-applet/es/fast-user-switch-applet.xml -share/gnome/help/fast-user-switch-applet/es/figures/fast_user_switch_applet-context.png -share/gnome/help/fast-user-switch-applet/es/figures/fast_user_switch_applet-icon.png -share/gnome/help/fast-user-switch-applet/es/figures/fast_user_switch_applet-prefs.png -share/gnome/help/fast-user-switch-applet/es/figures/fast_user_switch_applet-text.png -share/gnome/help/fast-user-switch-applet/es/figures/fast_user_switch_applet-username.png -share/gnome/help/fast-user-switch-applet/es/figures/fast_user_switch_applet.png -share/gnome/help/fast-user-switch-applet/fr/fast-user-switch-applet.xml -share/gnome/help/fast-user-switch-applet/fr/figures/fast_user_switch_applet-context.png -share/gnome/help/fast-user-switch-applet/fr/figures/fast_user_switch_applet-icon.png -share/gnome/help/fast-user-switch-applet/fr/figures/fast_user_switch_applet-prefs.png -share/gnome/help/fast-user-switch-applet/fr/figures/fast_user_switch_applet-text.png -share/gnome/help/fast-user-switch-applet/fr/figures/fast_user_switch_applet-username.png -share/gnome/help/fast-user-switch-applet/fr/figures/fast_user_switch_applet.png -share/gnome/help/fast-user-switch-applet/oc/fast-user-switch-applet.xml -share/gnome/help/fast-user-switch-applet/oc/figures/fast_user_switch_applet-context.png -share/gnome/help/fast-user-switch-applet/oc/figures/fast_user_switch_applet-icon.png -share/gnome/help/fast-user-switch-applet/oc/figures/fast_user_switch_applet-prefs.png -share/gnome/help/fast-user-switch-applet/oc/figures/fast_user_switch_applet-text.png -share/gnome/help/fast-user-switch-applet/oc/figures/fast_user_switch_applet-username.png -share/gnome/help/fast-user-switch-applet/oc/figures/fast_user_switch_applet.png -share/gnome/help/fast-user-switch-applet/pa/fast-user-switch-applet.xml -share/gnome/help/fast-user-switch-applet/pa/figures/fast_user_switch_applet-context.png -share/gnome/help/fast-user-switch-applet/pa/figures/fast_user_switch_applet-icon.png -share/gnome/help/fast-user-switch-applet/pa/figures/fast_user_switch_applet-prefs.png -share/gnome/help/fast-user-switch-applet/pa/figures/fast_user_switch_applet-text.png -share/gnome/help/fast-user-switch-applet/pa/figures/fast_user_switch_applet-username.png -share/gnome/help/fast-user-switch-applet/pa/figures/fast_user_switch_applet.png -share/gnome/help/fast-user-switch-applet/sr/fast-user-switch-applet.xml -share/gnome/help/fast-user-switch-applet/sr/figures/fast_user_switch_applet-context.png -share/gnome/help/fast-user-switch-applet/sr/figures/fast_user_switch_applet-icon.png -share/gnome/help/fast-user-switch-applet/sr/figures/fast_user_switch_applet-prefs.png -share/gnome/help/fast-user-switch-applet/sr/figures/fast_user_switch_applet-text.png -share/gnome/help/fast-user-switch-applet/sr/figures/fast_user_switch_applet-username.png -share/gnome/help/fast-user-switch-applet/sr/figures/fast_user_switch_applet.png -share/gnome/help/fast-user-switch-applet/sv/fast-user-switch-applet.xml -share/gnome/help/fast-user-switch-applet/sv/figures/fast_user_switch_applet-context.png -share/gnome/help/fast-user-switch-applet/sv/figures/fast_user_switch_applet-icon.png -share/gnome/help/fast-user-switch-applet/sv/figures/fast_user_switch_applet-prefs.png -share/gnome/help/fast-user-switch-applet/sv/figures/fast_user_switch_applet-text.png -share/gnome/help/fast-user-switch-applet/sv/figures/fast_user_switch_applet-username.png -share/gnome/help/fast-user-switch-applet/sv/figures/fast_user_switch_applet.png -share/locale/ar/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/bg/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/bn/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/bn_IN/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/ca/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/cs/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/cy/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/da/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/de/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/dz/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/el/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/en_CA/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/en_GB/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/es/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/et/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/eu/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/fa/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/fi/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/fr/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/gl/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/gu/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/he/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/hi/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/hu/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/id/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/it/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/ja/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/ka/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/ko/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/ku/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/lt/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/lv/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/mg/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/mk/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/ml/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/mn/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/mr/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/nb/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/ne/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/nl/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/oc/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/or/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/pa/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/pl/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/pt/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/pt_BR/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/ru/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/sk/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/sl/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/sq/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/sr/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/sr@Latn/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/sv/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/ta/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/th/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/tr/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/uk/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/vi/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/zh_CN/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/zh_HK/LC_MESSAGES/fast-user-switch-applet.mo -share/locale/zh_TW/LC_MESSAGES/fast-user-switch-applet.mo -share/omf/fast-user-switch-applet/fast-user-switch-applet-C.omf -share/omf/fast-user-switch-applet/fast-user-switch-applet-en_GB.omf -share/omf/fast-user-switch-applet/fast-user-switch-applet-es.omf -share/omf/fast-user-switch-applet/fast-user-switch-applet-fr.omf -share/omf/fast-user-switch-applet/fast-user-switch-applet-oc.omf -share/omf/fast-user-switch-applet/fast-user-switch-applet-pa.omf -share/omf/fast-user-switch-applet/fast-user-switch-applet-sr.omf -share/omf/fast-user-switch-applet/fast-user-switch-applet-sv.omf -@dirrm share/omf/fast-user-switch-applet -@dirrm share/gnome/help/fast-user-switch-applet/sv/figures -@dirrm share/gnome/help/fast-user-switch-applet/sv -@dirrm share/gnome/help/fast-user-switch-applet/sr/figures -@dirrm share/gnome/help/fast-user-switch-applet/sr -@dirrm share/gnome/help/fast-user-switch-applet/pa/figures -@dirrm share/gnome/help/fast-user-switch-applet/pa -@dirrm share/gnome/help/fast-user-switch-applet/oc/figures -@dirrm share/gnome/help/fast-user-switch-applet/oc -@dirrm share/gnome/help/fast-user-switch-applet/fr/figures -@dirrm share/gnome/help/fast-user-switch-applet/fr -@dirrm share/gnome/help/fast-user-switch-applet/es/figures -@dirrm share/gnome/help/fast-user-switch-applet/es -@dirrm share/gnome/help/fast-user-switch-applet/en_GB/figures -@dirrm share/gnome/help/fast-user-switch-applet/en_GB -@dirrm share/gnome/help/fast-user-switch-applet/C/figures -@dirrm share/gnome/help/fast-user-switch-applet/C -@dirrm share/gnome/help/fast-user-switch-applet -@dirrm %%DATADIR%% -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN diff --git a/x11/gcursor/Makefile b/x11/gcursor/Makefile deleted file mode 100644 index 9fbbb9393..000000000 --- a/x11/gcursor/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: gcursor -# Date created: 08 March 2004 -# Whom: Mezz <mezz7@cox.net> -# -# $FreeBSD$ -# - -PORTNAME= gcursor -PORTVERSION= 0.061 -PORTREVISION= 7 -CATEGORIES= x11 gnome -MASTER_SITES= http://download.qballcow.nl/programs/gcursor/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= A mouse cursor theme selector for GNOME - -RUN_DEPENDS= file-roller:${PORTSDIR}/archivers/file-roller - -USE_GMAKE= yes -USE_XLIB= yes -USE_GNOME= gnomehack gnomeprefix gnometarget intlhack libgnomeui -USE_GETTEXT= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -DOCS= AUTHORS COPYING ChangeLog INSTALL TODO - -post-patch: - @${REINPLACE_CMD} -e 's|%%X11BASE%%|${X11BASE}|g ; \ - s|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/src/gcursor.c - -.ifndef (NOPORTDOCS) -post-install: - @${MKDIR} ${DOCSDIR} -.for i in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/x11/gcursor/distinfo b/x11/gcursor/distinfo deleted file mode 100644 index c5b7179d2..000000000 --- a/x11/gcursor/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gcursor-0.061.tar.gz) = 233810996bc7f69879f8978c523ae723 -SHA256 (gcursor-0.061.tar.gz) = c4f71ac3ea3c4e18906aa5a8b6c60116e19863ca6404bbfe10d78abb319b5aae -SIZE (gcursor-0.061.tar.gz) = 143719 diff --git a/x11/gcursor/files/patch-data::gcursor.desktop.in b/x11/gcursor/files/patch-data::gcursor.desktop.in deleted file mode 100644 index 952a2cc2b..000000000 --- a/x11/gcursor/files/patch-data::gcursor.desktop.in +++ /dev/null @@ -1,18 +0,0 @@ ---- data/gcursor.desktop.in.orig Sun Feb 20 21:34:50 2005 -+++ data/gcursor.desktop.in Sun Feb 20 21:36:12 2005 -@@ -1,12 +1,11 @@ - [Desktop Entry] -+Encoding=UTF-8 - _Name=Cursor Selection - _Comment=Select a different cursor - Exec=gcursor - Icon= - Terminal=false - Type=Application -- --Categories=GNOME;Application;Settings; - StartupNotify=true --Encoding=UTF-8 -- -+Categories=Application;Settings;AdvancedSettings; -+OnlyShowIn=GNOME; diff --git a/x11/gcursor/files/patch-src::gcursor.c b/x11/gcursor/files/patch-src::gcursor.c deleted file mode 100644 index 583eac0fd..000000000 --- a/x11/gcursor/files/patch-src::gcursor.c +++ /dev/null @@ -1,59 +0,0 @@ ---- src/gcursor.c.orig Thu Aug 26 05:35:55 2004 -+++ src/gcursor.c Thu Jul 27 13:25:46 2006 -@@ -32,29 +32,22 @@ - - #warning move this into gconf - char *paths[] = { -- "/usr/share/cursors/xfree/", -- "/usr/X11R6/lib/X11/icons/", -- "/usr/Xorg/lib/X11/icons/", -- "/usr/local/share/icons/", -- "/usr/share/icons/", -+ "%%LOCALBASE%%/lib/X11/icons/", -+ "%%X11BASE%%/lib/X11/icons/", - "%s/.icons/", - NULL - }; - - void open_theme_dir() - { -- GError * error = NULL; -- char * filename; -- -- filename = g_strdup_printf("file:///%s/.icons/", g_getenv("HOME")); -- gnome_url_show(filename,&error); -- g_free(filename); -+ gchar *path, *command; - -- if (error) -- { -- gnome_warning_dialog (error->message); -- g_error_free (error); -- } -+ path = g_strdup_printf ("%s/.icons", g_get_home_dir()); -+ command = g_strdup_printf ("nautilus --no-desktop %s", path); -+ -+ g_free (path); -+ g_spawn_command_line_async (command, NULL); -+ g_free (command); - } - - -@@ -85,7 +78,7 @@ - filename = g_shell_quote(gtk_file_selection_get_filename(GTK_FILE_SELECTION(fs))); - #endif - -- path = g_strdup_printf("file-roller --extract-to=%s/.icons/ %s", g_getenv("HOME"), -+ path = g_strdup_printf("file-roller --extract-to=%s/.icons/ %s", g_get_home_dir(), - filename); - g_free(filename); - -@@ -281,7 +274,7 @@ - - for (iterator = paths; *iterator; iterator++) - { -- dirname = g_strdup_printf(*iterator, g_getenv("HOME")); -+ dirname = g_strdup_printf(*iterator, g_get_home_dir()); - directory = g_dir_open(dirname, 0, NULL); - - while(directory != NULL && (name = g_dir_read_name(directory)) != NULL) diff --git a/x11/gcursor/pkg-descr b/x11/gcursor/pkg-descr deleted file mode 100644 index 99a2aa152..000000000 --- a/x11/gcursor/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -GCursor is a gtk+-2 xcursor selector. It tries to have the same look and feel -as the theme-selector in the gnome-control-center. Gcursor is a temporary -solution until a decent selector is included in the gnome-control-center. - -WWW: http://qballcow.nl/?s=17 diff --git a/x11/gcursor/pkg-plist b/x11/gcursor/pkg-plist deleted file mode 100644 index a884872f6..000000000 --- a/x11/gcursor/pkg-plist +++ /dev/null @@ -1,14 +0,0 @@ -bin/gcursor -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/INSTALL -%%PORTDOCS%%%%DOCSDIR%%/TODO -share/applications/gcursor.desktop -share/gcursor/gcursor.glade -share/locale/de/LC_MESSAGES/gcursor.mo -share/locale/es/LC_MESSAGES/gcursor.mo -share/locale/sv/LC_MESSAGES/gcursor.mo -@dirrm share/gcursor -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrmtry share/applications diff --git a/x11/gdesklets-tasklist/Makefile b/x11/gdesklets-tasklist/Makefile deleted file mode 100644 index e55337a4a..000000000 --- a/x11/gdesklets-tasklist/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: gdesklets-tasklist -# Date created: 04 January 2004 -# Whom: Vincent Tantardini <vinc@FreeBSD-fr.org> -# -# $FreeBSD$ -# - -PORTNAME= tasklist -PORTVERSION= 0.10 -PORTREVISION= 7 -CATEGORIES= x11 gnome -MASTER_SITES= http://gdesklets.zencomputer.ca/ -PKGNAMEPREFIX= gdesklets- -DISTNAME= ${PORTNAME}-desklet-${PORTVERSION} - -MAINTAINER= pav@FreeBSD.org -COMMENT= Displays the GNOME tasklist and floats above the other windows - -RUN_DEPENDS= gdesklets:${PORTSDIR}/deskutils/gdesklets - -USE_XLIB= yes - -NAME= tasklist -DATADIR= ${PREFIX}/share -PKGMESSAGE= ${WRKDIR}/pkg-message -WRKSRC= ${WRKDIR}/${PORTNAME}-desklet-${PORTVERSION} - -do-build: - @${CAT} pkg-message | ${SED} -e 's|%%PREFIX%%|${PREFIX}|g ; s|%%NAME%%|${NAME}|g' > ${PKGMESSAGE} - -do-install: - @${MKDIR} ${DATADIR}/gdesklets/Displays/${NAME} - @${INSTALL_DATA} ${WRKSRC}/*.display ${DATADIR}/gdesklets/Displays/${NAME}/ - @${INSTALL_DATA} ${WRKSRC}/*.png ${DATADIR}/gdesklets/Displays/${NAME}/ - @${INSTALL_DATA} ${WRKSRC}/README ${DATADIR}/gdesklets/Displays/${NAME}/ - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/x11/gdesklets-tasklist/distinfo b/x11/gdesklets-tasklist/distinfo deleted file mode 100644 index a9cfb0500..000000000 --- a/x11/gdesklets-tasklist/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (tasklist-desklet-0.10.tar.gz) = 393b7429ac8574236c2283b3666781a5 -SHA256 (tasklist-desklet-0.10.tar.gz) = e121e06a9cde7449026b0d7e0d8a61817361f6cd3a15173ff527bb75226b2969 -SIZE (tasklist-desklet-0.10.tar.gz) = 2738 diff --git a/x11/gdesklets-tasklist/pkg-descr b/x11/gdesklets-tasklist/pkg-descr deleted file mode 100644 index 8607a6359..000000000 --- a/x11/gdesklets-tasklist/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This desklet embeds the GNOME tasklist and floats above -the other windows. - -WWW: http://gdesklets.zencomputer.ca/ diff --git a/x11/gdesklets-tasklist/pkg-message b/x11/gdesklets-tasklist/pkg-message deleted file mode 100644 index ebf3c223a..000000000 --- a/x11/gdesklets-tasklist/pkg-message +++ /dev/null @@ -1,5 +0,0 @@ - -To add this desklet to your desktop: - - gdesklets open %%PREFIX%%/share/gdesklets/Displays/%%NAME%%/%%NAME%%.display - diff --git a/x11/gdesklets-tasklist/pkg-plist b/x11/gdesklets-tasklist/pkg-plist deleted file mode 100644 index 9e41ee901..000000000 --- a/x11/gdesklets-tasklist/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -share/gdesklets/Displays/tasklist/preview.png -share/gdesklets/Displays/tasklist/tasklist.display -share/gdesklets/Displays/tasklist/README -@dirrm share/gdesklets/Displays/tasklist diff --git a/x11/gdkxft/Makefile b/x11/gdkxft/Makefile deleted file mode 100644 index 0d80cff74..000000000 --- a/x11/gdkxft/Makefile +++ /dev/null @@ -1,64 +0,0 @@ -# New ports collection makefile for: gdkxft -# Date created: 3 September 2001 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gdkxft -PORTVERSION= 1.5 -PORTREVISION= 5 -CATEGORIES= x11 -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= ports@FreeBSD.org -COMMENT= An anti-aliased font support for gtk+ - -LIB_DEPENDS= Xft.2:${PORTSDIR}/x11-fonts/libXft - -USE_AUTOTOOLS= libtool:15 -USE_X_PREFIX= yes -USE_GNOME= gtk12 -WANT_GNOME= yes -USE_ICONV= yes -GNU_CONFIGURE= yes -CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -lgnuregex -liconv" \ - CFLAGS="${CFLAGS} `pkg-config xft --cflags`" -CONFIGURE_ARGS= --sbindir=${PREFIX}/bin -USE_LDCONFIG= yes - -MAN8= gdkxft_sysinstall.8 - -.include <bsd.port.pre.mk> - -.if ${HAVE_GNOME:Mlibglade}!="" && ${HAVE_GNOME:Mlibcapplet}!="" -USE_GNOME+= gnomeprefix libglade libcapplet -PKGNAMESUFFIX= -gnome -.else -CONFIGURE_ARGS+= --without-gnome -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|gtk-config --prefix|$$GTK_CONFIG --prefix|g ; \ - s|libgdk.la|libgdk-12.so|g ; \ - s|libgdk.so|libgdk-12.so|g ; \ - s|GDK_DLOPEN_NAME=.*$$|GDK_DLOPEN_NAME="libgdk-12.so"|g' \ - ${WRKSRC}/configure - @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ - 's|src capplet|src @BUILD_CAPPLET_TRUE@capplet|g ; \ - s|DESTDIR)\$$(datadir|DESTDIR)\$$(pkgdatadir|g ; \ - s|la_LDFLAGS =.*$$|la_LDFLAGS = -module -avoid-version|g' -.for file in gdkxft_sysinstall.in gdkxft.c generate.pl - @${REINPLACE_CMD} -e 's|<regex.h>|<gnuregex.h>|g ; \ - s|gtk-config |${GTK_CONFIG:T} |g' ${WRKSRC}/src/${file} -.endfor - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif - -.include <bsd.port.post.mk> diff --git a/x11/gdkxft/distinfo b/x11/gdkxft/distinfo deleted file mode 100644 index 5acc0d448..000000000 --- a/x11/gdkxft/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gdkxft-1.5.tar.gz) = ed594e24cf2aefe7a71f96425c1922e8 -SHA256 (gdkxft-1.5.tar.gz) = 906bfbd5a1273eb9d3fc516662b93a9a15aaa06a22ea0226cded3aaba85c707f -SIZE (gdkxft-1.5.tar.gz) = 213224 diff --git a/x11/gdkxft/files/patch-capplet_Makefile.in b/x11/gdkxft/files/patch-capplet_Makefile.in deleted file mode 100644 index c1eab5f43..000000000 --- a/x11/gdkxft/files/patch-capplet_Makefile.in +++ /dev/null @@ -1,13 +0,0 @@ ---- capplet/Makefile.in.orig Thu Apr 4 23:37:06 2002 -+++ capplet/Makefile.in Thu Apr 4 23:39:17 2002 -@@ -103,7 +103,8 @@ - - INCLUDES = \ - -DDATADIR=\"$(datadir)\" -DSYSCONFDIR=\"$(sysconfdir)\" \ -- $(GNOME_INCLUDEDIR) $(LIBGLADE_CFLAGS) -+ $(GNOME_INCLUDEDIR) $(LIBGLADE_CFLAGS) \ -+ `gnome-config --cflags capplet` - - - LDADD = \ - diff --git a/x11/gdkxft/files/patch-src::gdkxft.conf b/x11/gdkxft/files/patch-src::gdkxft.conf deleted file mode 100644 index 23953ffa9..000000000 --- a/x11/gdkxft/files/patch-src::gdkxft.conf +++ /dev/null @@ -1,12 +0,0 @@ ---- src/gdkxft.conf.orig Fri Nov 30 22:51:52 2001 -+++ src/gdkxft.conf Sat Dec 29 15:44:29 2001 -@@ -1,8 +1,2 @@ - !* ---urw-* ---b&h-lucidux* ---abisource-* ---abiword-* ---freefont-* ---sharefont-* ---macromedia-* -+-*-* diff --git a/x11/gdkxft/pkg-descr b/x11/gdkxft/pkg-descr deleted file mode 100644 index ba7d652d4..000000000 --- a/x11/gdkxft/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Gdkxft transparently adds anti-aliased font support to gtk+-1.2. Once -you have installed it, you can run any (well, nearly any) existing -gtk+ binary and see anti-aliased fonts in the gtk widgets. You don't -need to recompile gtk+ or your applications. - -WWW: http://gdkxft.sourceforge.net/ diff --git a/x11/gdkxft/pkg-plist b/x11/gdkxft/pkg-plist deleted file mode 100644 index 17aff6656..000000000 --- a/x11/gdkxft/pkg-plist +++ /dev/null @@ -1,13 +0,0 @@ -%%GNOME:%%bin/gdkxft-capplet -bin/gdkxft_sysinstall -etc/gdkxft.conf -lib/libgdkxft.a -lib/libgdkxft.la -lib/libgdkxft.so -%%PORTDOCS%%share/doc/gdkxft/README -%%GNOME:%%share/apps/Settings/UIOptions/gdkxft.desktop -%%GNOME:%%share/control-center/UIOptions/gdkxft.desktop -%%GNOME:%%share/gdkxft/gdkxft-capplet.glade -%%GNOME:%%share/pixmaps/gdkxft.png -%%GNOME:%%@dirrm share/gdkxft -%%PORTDOCS%%@dirrm share/doc/gdkxft diff --git a/x11/gdm/Makefile b/x11/gdm/Makefile deleted file mode 100644 index de7bdb81c..000000000 --- a/x11/gdm/Makefile +++ /dev/null @@ -1,102 +0,0 @@ -# New ports collection makefile for: gdm2 -# Date created: 20 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gdm/Makefile,v 1.79 2007/10/16 03:09:12 mezz Exp $ -# - -PORTNAME= gdm -PORTVERSION= 2.20.1 -PORTREVISION= 1 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME 2 version of xdm display manager - -BUILD_DEPENDS= zenity:${PORTSDIR}/x11/zenity -RUN_DEPENDS= zenity:${PORTSDIR}/x11/zenity - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_XLIB= yes -USE_XORG= dmx dmxproto -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_RC_SUBR= gdm -USE_GNOME_SUBR= yes -USE_GMAKE= yes -USE_GNOME= gnomehack intlhack gnomehier libgnomeui librsvg2 gnomedocutils \ - gnomeprefix -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - GTKDOC="false" - -GDMDIR?= ${PREFIX}/etc/gdm -PKGMESSAGE= ${WRKDIR}/pkg-message - -GNOME_LOCALSTATEDIR= /var - -MAN1= gdm.1 - -OPTIONS= IPV6 "Enable IPv6 support" on \ - LOG_LIMIT "Limit ~/.xsession-errors size" on \ - CONSOLEKIT "Enable ConsoleKit support" off - -.include <bsd.port.pre.mk> - -.if exists(/usr/include/security/pam_misc.h) -PLIST_SUB+= PAM_MISC="" -.else -PLIST_SUB+= PAM_MISC="@comment " -.endif - -.if !defined(WITHOUT_IPV6) -CONFIGURE_ARGS+= --enable-ipv6 -.else -CONFIGURE_ARGS+= --disable-ipv6 -.endif - -.if defined(WITHOUT_LOG_LIMIT) -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-daemon_slave.c -.endif - -.if defined(WITH_CONSOLEKIT) -CONFIGURE_ARGS+=--with-console-kit=yes -LIB_DEPENDS+= ck-connector.0:${PORTSDIR}/sysutils/consolekit -.else -CONFIGURE_ARGS+=--with-console-kit=no -.endif - -post-patch: -.if ( ${OSVERSION} > 600000 && ${OSVERSION} < 600006 ) || \ - ( ${OSVERSION} < 503101 ) -.for po in zh_CN.po - @${REINPLACE_CMD} -e 's|%-|%|g' ${WRKSRC}/po/${po} -.endfor -.endif - @${REINPLACE_CMD} -e 's|root:root|root:wheel|g' \ - ${WRKSRC}/config/Makefile.in - @${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' \ - ${WRKSRC}/configure ${WRKSRC}/po/*.po ${WRKSRC}/gui/*.glade \ - ${WRKSRC}/daemon/*.c ${WRKSRC}/docs/*/*.* - @${REINPLACE_CMD} -e 's|/etc/gdm/gdm.conf|${PREFIX}/etc/gdm/gdm.conf|' \ - ${WRKSRC}/docs/gdm.1 - -post-install: -.if !defined(PACKAGE_BUILDING) - @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.endif - ${INSTALL_DATA} ${WRKSRC}/config/gdm.conf-custom \ - ${PREFIX}/etc/gdm/custom.conf.default - @${MKDIR} ${PREFIX}/etc/gdm/Sessions - @${SED} -e 's|%%PREFIX%%|${PREFIX}|g' < ${PKGDIR}/pkg-message \ - | /usr/bin/fmt 75 79 > ${PKGMESSAGE} - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/x11/gdm/distinfo b/x11/gdm/distinfo deleted file mode 100644 index c5f473bb2..000000000 --- a/x11/gdm/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gdm-2.20.1.tar.bz2) = ed7b7efcb7fd97cc400e2416e0093e71 -SHA256 (gnome2/gdm-2.20.1.tar.bz2) = b916867853c0e4ef5b8e76a58baa28ff666fd3da741438c595b5f23d031501d7 -SIZE (gnome2/gdm-2.20.1.tar.bz2) = 3774217 diff --git a/x11/gdm/files/extra-patch-daemon_slave.c b/x11/gdm/files/extra-patch-daemon_slave.c deleted file mode 100644 index b493dcd80..000000000 --- a/x11/gdm/files/extra-patch-daemon_slave.c +++ /dev/null @@ -1,26 +0,0 @@ ---- daemon/slave.c.orig 2007-09-17 10:45:50.000000000 -0400 -+++ daemon/slave.c 2007-09-25 13:42:06.000000000 -0400 -@@ -373,8 +373,7 @@ - break; - } - -- if G_UNLIKELY (d->xsession_errors_bytes >= MAX_XSESSION_ERRORS_BYTES || -- got_xfsz_signal) -+ if G_UNLIKELY (got_xfsz_signal) - continue; - - /* write until we succeed in writing something */ -@@ -397,13 +396,6 @@ - - d->xsession_errors_bytes += r; - -- if G_UNLIKELY (d->xsession_errors_bytes >= MAX_XSESSION_ERRORS_BYTES && -- ! got_xfsz_signal) { -- VE_IGNORE_EINTR (write (d->xsession_errors_fd, -- "\n...Too much output, ignoring rest...\n", -- strlen ("\n...Too much output, ignoring rest...\n"))); -- } -- - /* there wasn't more then buf available, so no need to try reading - * again, unless we really want to */ - if (r < sizeof (buf) && ! read_until_eof) diff --git a/x11/gdm/files/gdm.in b/x11/gdm/files/gdm.in deleted file mode 100644 index 1ea942652..000000000 --- a/x11/gdm/files/gdm.in +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -# $FreeBSD$ -# $MCom: ports/x11/gdm/files/gdm.in,v 1.14 2007/04/28 17:15:14 marcus Exp $ - -# PROVIDE: gdm -# REQUIRE: LOGIN cleanvar moused -# -# Add the following to /etc/rc.conf to start GDM at boot time: -# -# gdm_enable="YES" -# - -. %%RC_SUBR%% -. %%GNOME_SUBR%% - -gdm_enable=${gdm_enable-${gnome_enable}} - -name=gdm -rcvar=`set_rcvar` -command="%%PREFIX%%/sbin/${name}" -pidfile="/var/run/${name}.pid" -procname="%%PREFIX%%/sbin/gdm-binary" - -load_rc_config ${name} -run_rc_command "$1" diff --git a/x11/gdm/files/patch-config_gdm.conf.in b/x11/gdm/files/patch-config_gdm.conf.in deleted file mode 100644 index 6382bd445..000000000 --- a/x11/gdm/files/patch-config_gdm.conf.in +++ /dev/null @@ -1,17 +0,0 @@ ---- config/gdm.conf.in.orig Mon Apr 9 01:15:16 2007 -+++ config/gdm.conf.in Mon Apr 9 09:38:08 2007 -@@ -174,11 +174,11 @@ - # using this Xnest, the value should be true. - XnestUnscaledFontPath=@X_XNEST_UNSCALED_FONTPATH@ - --# Automatic VT allocation. Right now only works on Linux. This way we force -+# Automatic VT allocation. This way we force - # X to use specific vts. Turn VTAllocation to false if this is causing - # problems. --#FirstVT=7 --#VTAllocation=true -+FirstVT=9 -+VTAllocation=true - # Should double login be treated with a warning (and possibility to change VT's - # on Linux and FreeBSD systems for console logins) - #DoubleLoginWarning=true diff --git a/x11/gdm/files/patch-config_locale.alias b/x11/gdm/files/patch-config_locale.alias deleted file mode 100644 index 8f264dbe4..000000000 --- a/x11/gdm/files/patch-config_locale.alias +++ /dev/null @@ -1,189 +0,0 @@ ---- config/locale.alias.orig Sat Jun 11 02:01:45 2005 -+++ config/locale.alias Sat Jun 11 03:34:22 2005 -@@ -14,132 +14,57 @@ - # - # - George - --C(POSIX) C,POSIX --Afrikaans af_ZA.UTF-8,af_ZA --Albanian sq_AL.UTF-8,sq_AL --Amharic am_ET.UTF-8,am_ET --Arabic(Egypt) ar_EG.UTF-8,ar_EG --Arabic(Lebanon) ar_LB.UTF-8,ar_LB --Arabic(SaudiArabia) ar_SA.UTF-8,ar_SA --Armenian hy_AM.UTF-8,hy_AM --Azerbaijani az_AZ.UTF-8,az_AZ --Azerbaijani(Iran) az_IR.UTF-8,az_IR --Basque eu_ES.UTF-8,eu_ES --Belarusian be_BY.UTF-8,be_BY --Bengali bn_BD.UTF-8,bn_BD --Bengali(India) bn_IN.UTF-8,bn_IN --Bosnian bs_BA.UTF-8,bs_BA --Breton br_FR.UTF-8,br_FR --Bulgarian bg_BG.UTF-8,bg_BG --Catalan ca_ES.UTF-8,ca_ES --Chinese(ChinaMainland) zh_CN.UTF-8,zh_CN --Chinese(GB18030) zh_CN.GB18030 --Chinese(Hong-Kong) zh_HK.UTF-8,zh_HK --Chinese(Singapore) zh_SG.UTF-8,zh_SG --Chinese(Taiwan) zh_TW.UTF-8,zh_TW --Croatian hr_HR.UTF-8,hr_HR --Czech cs_CZ.UTF-8,cs_CZ --Danish da_DK.UTF-8,da_DK --Dutch nl_NL.UTF-8,nl_NL --Dutch(Belgium) nl_BE.UTF-8,nl_BE --English(Australia) en_AU.UTF-8,en_AU --English(Canada) en_CA.UTF-8,en_CA --English(Ireland) en_IE.UTF-8,en_IE --English(Malta) en_MT.UTF-8,en_MT --English(NewZealand) en_NZ.UTF-8,en_NZ --English(SouthAfrica) en_ZA.UTF-8,en_ZA --English(UK) en_GB.UTF-8,en_GB --English(USA) en_US.UTF-8,en_US --Esperanto eo.UTF-8,eo --Estonian et_EE.UTF-8,et_EE --Finnish fi_FI.UTF-8,fi_FI --French fr_FR.UTF-8,fr_FR --French(Belgium) fr_BE.UTF-8,fr_BE --French(Canada) fr_CA.UTF-8,fr_CA --French(Luxembourg) fr_LU.UTF-8,fr_LU --French(Switzerland) fr_CH.UTF-8,fr_CH --Galician gl_ES.UTF-8,gl_ES --German de_DE.UTF-8,de_DE --German(Austria) de_AT.UTF-8,de_AT --German(Switzerland) de_CH.UTF-8,de_CH --German(Luxembourg) de_LU.UTF-8,de_LU --Greek el_GR.UTF-8,el_GR --Greek(Cyprus) el_CY.UTF-8,el_CY --Gujarati gu_IN.UTF-8,gu_IN --Hebrew he_IL.UTF-8,he_IL --Hindi hi_IN.UTF-8,hi_IN --Hungarian hu_HU.UTF-8,hu_HU --Icelandic is_IS.UTF-8,is_IS --Indonesian id_ID.UTF-8,id_ID --Interlingua ia.UTF-8,ia --Irish ga_IE.UTF-8,ga_IE --Italian it_IT.UTF-8,it_IT --Japanese ja_JP.UTF-8,ja_JP --Kannada kn_IN.UTF-8,kn_IN --Kinyarwanda rw_RW.UTF-8,rw_RW --Korean ko_KR.UTF-8,ko_KR --Latvian lv_LV.UTF-8,lv_LV --Limburgish li_NL.UTF-8,li_NL --Limburgish(Belgium) li_BE.UTF-8,li_BE --Limburgish(Germany) li_DE.UTF-8,li_DE --Lithuanian lt_LT.UTF-8,lt_LT --Macedonian mk_MK.UTF-8,mk_MK --Malayalam ml_IN.UTF-8,ml_IN --Malay ms_MY.UTF-8,ms_MY --Maltese mt_MT.UTF-8,mt_MT --Maori mi_NZ.UTF-8,mi_NZ --Marathi mr_IN.UTF-8,mr_IN --Mongolian mn_MN.UTF-8,mn_MN --Nepali ne_NP.UTF-8,ne_NP --NorthernSotho nso_ZA.UTF-8,nso_ZA --Norwegian(bokmal) nb_NO.UTF-8,nb_NO,no_NO.UTF-8,no_NO --Norwegian(nynorsk) nn_NO.UTF-8,nn_NO --Oriya or_IN.UTF-8,or_IN --Persian fa_IR.UTF-8,fa_IR --Polish pl_PL.UTF-8,pl_PL --Portuguese(Brazilian) pt_BR.UTF-8,pt_BR --Portuguese pt_PT.UTF-8,pt_PT --Punjabi pa_IN.UTF-8,pa_IN --Romanian ro_RO.UTF-8,ro_RO --Russian ru_RU.UTF-8,ru_RU --Serbian sr_CS.UTF-8,sr_CS,sr_YU@cyrillic,sr_YU --Serbian(Montenegro) sr_ME.UTF-8
--Serbian(Serbia) sr_RS.UTF-8
--Serbian(Bosnia) sh_BA.UTF-8,sh_BA --Serbian(Latin) sr_CS.UTF-8@Latn,sr_CS@Latn,sr_YU@Latn --Serbian(Jekavian) sr_CS.UTF-8@ije,sr_CS@ije,sr_YU@ije --Slovak sk_SK.UTF-8,sk_SK --Slovenian sl_SI.UTF-8,sl_SI --Spanish es_ES.UTF-8,es_ES --Spanish(Argentina) es_AR.UTF-8,es_AR --Spanish(Bolivia) es_BO.UTF-8,es_BO --Spanish(Chile) es_CL.UTF-8,es_CL --Spanish(Colombia) es_CO.UTF-8,es_CO --Spanish(CostaRica) es_CR.UTF-8,es_CR --Spanish(Ecuador) es_EC.UTF-8,es_EC --Spanish(Guatemala) es_GT.UTF-8,es_GT --Spanish(Mexico) es_MX.UTF-8,es_MX --Spanish(Nicaragua) es_NI.UTF-8,es_NI --Spanish(Panama) es_PA.UTF-8,es_PA --Spanish(Peru) es_PE.UTF-8,es_PE --Spanish(Paraguay) es_PY.UTF-8,es_PY --Spanish(ElSalvador) es_SV.UTF-8,es_SV --Spanish(Uruguay) es_UY.UTF-8,es_UY --Spanish(Venezuela) es_VE.UTF-8,es_VE --Swedish(Finland) sv_FI.UTF-8,sv_FI --Swedish sv_SE.UTF-8,sv_SE --Tagalog tl_PH.UTF-8,tl_PH --Tajik tg_TJ.UTF-8,tg_TJ --Tamil ta_IN.UTF-8,ta_IN --Telugu te_IN.UTF-8,te_IN --Thai th_TH.UTF-8,th_TH --Turkish tr_TR.UTF-8,tr_TR --Ukrainian uk_UA.UTF-8,uk_UA --Uzbek uz_UZ.UTF-8,uz_UZ --Uzbek(Latin) uz_UZ.UTF-8@Latn,uz_UZ@Latn --Vietnamese vi_VN.UTF-8,vi_VN --Walloon wa_BE.UTF-8,wa_BE --Welsh cy_GB.UTF-8,cy_GB --Xhosa xh_ZA.UTF-8,xh_ZA --Yiddish yi.UTF-8,yi --Zulu zu_ZA.UTF-8,zu_ZA -+C(POSIX) C,POSIX -+Afrikaans af_ZA.UTF-8,af_ZA.ISO8859-15,af_ZA.ISO8859-1 -+Amharic am_ET.UTF-8 -+Armenian hy_AM.UTF-8 -+Basque eu_ES.UTF-8,eu_ES.ISO8859-15,eu_ES.ISO8859-1 -+Byelorussian be_BY.UTF-8,be_BY.CP1131,be_BY.CP1251,be_BY.ISO8859-5 -+Bulgarian bg_BG.UTF-8,bg_BG.CP1251 -+Catalan ca_ES.UTF-8,ca_ES.ISO8859-15,ca_ES.ISO8859-1 -+Chinese(simplified) zh_CN.UTF-8,zh_CN.EUC,zh_CN.eucCN -+Chinese(traditional) zh_TW.UTF-8,zh_TW.Big5 -+Chinese(Hong-Kong) zh_HK.UTF-8,zh_HK.Big5HKSCS -+Croatian hr_HR.UTF-8,hr_HR.ISO8859-2 -+Czech cs_CZ.UTF-8,cs_CZ.ISO8859-2 -+Danish da_DK.UTF-8,da_DK.ISO8859-15,da_DK.ISO8859-1 -+Dutch nl_NL.UTF-8,nl_NL.ISO8859-15,nl_NL.ISO8859-1 -+Dutch(Belgian) nl_BE.UTF-8,nl_BE.ISO8859-15,nl_BE.ISO8859-1 -+English(American) en_US.UTF-8,en_US.ISO8859-1,en_US.ISO8859-15 -+English(Australian) en_AU.UTF-8,en_AU.ISO8859-1,en_AU.ISO8859-15 -+English(British) en_GB.UTF-8,en_GB.ISO8859-1,en_GB.ISO8859-15 -+English(Canadian) en_CA.UTF-8,en_CA.ISO8859-1,en_CA.ISO8859-15 -+English(Irish) en_IE.UTF-8,en_IE.ISO8859-1,en_IE.ISO8859-15 -+English(New-Zealand) en_NZ.UTF-8,en_NZ.ISO8859-1,en_NZ.ISO8859-15 -+Estonian et_EE.UTF-8,et_EE.ISO8859-15 -+Finnish fi_FI.UTF-8,fi_FI.ISO8859-15,fi_FI.ISO8859-1 -+French fr_FR.UTF-8,fr_FR.ISO8859-15,fr_FR.ISO8859-1 -+French(Belgium) fr_BE.UTF-8,fr_BE.ISO8859-15,fr_BE.ISO8859-1 -+French(Canadian) fr_CA.UTF-8,fr_CA.ISO8859-1,fr_CA.ISO8859-15 -+French(Swiss) fr_CH.UTF-8,fr_CH.ISO8859-15,fr_CH.ISO8859-1 -+German de_DE.UTF-8,de_DE.ISO8859-15,de_DE.ISO8859-1 -+German(Austria) de_AT.UTF-8,de_AT.ISO8859-15,de_AT.ISO8859-1 -+German(Switzerland) de_CH.UTF-8,de_CH.ISO8859-15,de_CH.ISO8859-1 -+Greek el_GR.UTF-8,el_GR.ISO8859-7 -+Hebrew he_IL.UTF-8 -+Hindi hi_IN.ISCII-DEV -+Hungarian hu_HU.UTF-8,hu_HU.ISO8859-2 -+Icelandic is_IS.UTF-8,is_IS.ISO8859-1,is_IS.ISO8859-15 -+Italian it_IT.UTF-8,it_IT.ISO8859-15,it_IT.ISO8859-1 -+Italian(Swiss) it_CH.UTF-8,it_CH.ISO8859-15,it_CH.ISO8859-1 -+Japanese ja_JP.UTF-8,ja_JP.EUC,ja_JP.eucJP -+Korean ko_KR.UTF-8,ko_KR.EUC,ko_KR.eucKR -+Lithuanian lt_LT.UTF-8,lt_LT.ISO8859-4,lt_LT.ISO8859-13 -+Norwegian(bokmal) nb_NO.UTF-8,nb_NO.ISO8859-1,nb_NO.ISO8859-15,no_NO.UTF-8,no_NO.ISO8859-1,no_NO.ISO8859-15 -+Polish pl_PL.UTF-8,pl_PL.ISO8859-2 -+Portuguese pt_PT.UTF-8,pt_PT.ISO8859-15,pt_PT.ISO8859-1 -+Portuguese(Brazilian) pt_BR.UTF-8,pt_BR.ISO8859-1 -+Romanian ro_RO.UTF-8,ro_RO.ISO8859-2 -+Russian ru_RU.UTF-8,ru_RU.ISO8859-5 -+Serbian sr_YU.UTF-8,sr_YU.ISO8859-2,sr_YU.ISO8859-5 -+Slovak sk_SK.UTF-8,sk_SK.ISO8859-2 -+Slovenian sl_SI.UTF-8,sl_SI.ISO8859-2 -+Spanish es_ES.UTF-8,es_ES.ISO8859-15,es_ES.ISO8859-1 -+Swedish sv_SV.UTF-8,sv_SE.ISO8859-1 -+Turkish tr_TR.UTF-8,tr_TR.ISO8859-9 -+Ukrainian uk_UA.UTF-8,uk_UA.ISO8859-5 diff --git a/x11/gdm/files/patch-configure b/x11/gdm/files/patch-configure deleted file mode 100644 index 18b1e2742..000000000 --- a/x11/gdm/files/patch-configure +++ /dev/null @@ -1,137 +0,0 @@ ---- configure.orig 2007-10-22 00:31:04.000000000 -0400 -+++ configure 2007-10-22 00:34:52.000000000 -0400 -@@ -29593,15 +29592,13 @@ fi - { echo "$as_me:$LINENO: result: $ac_cv_lib_util_login" >&5 - echo "${ECHO_T}$ac_cv_lib_util_login" >&6; } - if test $ac_cv_lib_util_login = yes; then -- cat >>confdefs.h <<_ACEOF --#define HAVE_LIBUTIL 1 -+ cat >>confdefs.h <<\_ACEOF -+#define HAVE_LOGIN 1 - _ACEOF -- -- LIBS="-lutil $LIBS" -- -+ -+ EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lutil" - fi - -- - { echo "$as_me:$LINENO: checking for logout in -lutil" >&5 - echo $ECHO_N "checking for logout in -lutil... $ECHO_C" >&6; } - if test "${ac_cv_lib_util_logout+set}" = set; then -@@ -29664,12 +29661,80 @@ fi - { echo "$as_me:$LINENO: result: $ac_cv_lib_util_logout" >&5 - echo "${ECHO_T}$ac_cv_lib_util_logout" >&6; } - if test $ac_cv_lib_util_logout = yes; then -- cat >>confdefs.h <<_ACEOF --#define HAVE_LIBUTIL 1 -+ cat >>confdefs.h <<\_ACEOF -+#define HAVE_LOGOUT 1 -+_ACEOF -+ -+ EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lutil" -+fi -+ -+{ echo "$as_me:$LINENO: checking for logwtmp in -lutil" >&5 -+echo $ECHO_N "checking for logwtmp in -lutil... $ECHO_C" >&6; } -+if test "${ac_cv_lib_util_logwtmp+set}" = set; then -+ echo $ECHO_N "(cached) $ECHO_C" >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lutil $LIBS" -+cat >conftest.$ac_ext <<_ACEOF -+/* confdefs.h. */ -+_ACEOF -+cat confdefs.h >>conftest.$ac_ext -+cat >>conftest.$ac_ext <<_ACEOF -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char logwtmp (); -+int -+main () -+{ -+return logwtmp (); -+ ; -+ return 0; -+} - _ACEOF -+rm -f conftest.$ac_objext conftest$ac_exeext -+if { (ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 -+ (eval "$ac_link") 2>conftest.er1 -+ ac_status=$? -+ grep -v '^ *+' conftest.er1 >conftest.err -+ rm -f conftest.er1 -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest$ac_exeext && -+ $as_test_x conftest$ac_exeext; then -+ ac_cv_lib_util_logwtmp=yes -+else -+ echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 - -- LIBS="-lutil $LIBS" -+ ac_cv_lib_util_logwtmp=no -+fi - -+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ echo "$as_me:$LINENO: result: $ac_cv_lib_util_logwtmp" >&5 -+echo "${ECHO_T}$ac_cv_lib_util_logwtmp" >&6; } -+if test $ac_cv_lib_util_logwtmp = yes; then -+ cat >>confdefs.h <<\_ACEOF -+#define HAVE_LOGWTMP 1 -+_ACEOF -+ -+ EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lutil" - fi - - -@@ -33472,18 +33537,18 @@ esac - - # allow user to override the host-specific default - --test "x$GDM_USER_PATH" == x && GDM_USER_PATH=${HOST_GDM_USER_PATH} --test "x$GDM_HALT_COMMAND" == x && GDM_HALT_COMMAND=${HOST_GDM_HALT_COMMAND} --test "x$HALT_COMMAND" == x && HALT_COMMAND=${HOST_HALT_COMMAND} --test "x$REBOOT_COMMAND" == x && REBOOT_COMMAND=${HOST_REBOOT_COMMAND} --test "x$SUSPEND_COMMAND" == x && SUSPEND_COMMAND=${HOST_SUSPEND_COMMAND} --test "x$XSESSION_SHELL" == x && XSESSION_SHELL=${HOST_XSESSION_SHELL} --test "x$SOUND_PROGRAM" == x && SOUND_PROGRAM=${HOST_SOUND_PROGRAM} --test "x$GDMGNOMESESSIONCMD" == x && GDMGNOMESESSIONCMD=${HOST_GDMGNOMESESSIONCMD} --test "x$UTMP_LINE_ATTACHED" == x && UTMP_LINE_ATTACHED=${HOST_UTMP_LINE_ATTACHED} --test "x$UTMP_LINE_REMOTE" == x && UTMP_LINE_REMOTE=${HOST_UTMP_LINE_REMOTE} --test "x$UTMP_PSEUDO_DEVICE" == x && UTMP_PSEUDO_DEVICE=${HOST_UTMP_PSEUDO_DEVICE} --test "x$GDM_RBAC_SYSCMD_KEYS" == x && GDM_RBAC_SYSCMD_KEYS=${HOST_GDM_RBAC_SYSCMD_KEYS} -+test "x$GDM_USER_PATH" = x && GDM_USER_PATH=${HOST_GDM_USER_PATH} -+test "x$GDM_HALT_COMMAND" = x && GDM_HALT_COMMAND=${HOST_GDM_HALT_COMMAND} -+test "x$HALT_COMMAND" = x && HALT_COMMAND=${HOST_HALT_COMMAND} -+test "x$REBOOT_COMMAND" = x && REBOOT_COMMAND=${HOST_REBOOT_COMMAND} -+test "x$SUSPEND_COMMAND" = x && SUSPEND_COMMAND=${HOST_SUSPEND_COMMAND} -+test "x$XSESSION_SHELL" = x && XSESSION_SHELL=${HOST_XSESSION_SHELL} -+test "x$SOUND_PROGRAM" = x && SOUND_PROGRAM=${HOST_SOUND_PROGRAM} -+test "x$GDMGNOMESESSIONCMD" = x && GDMGNOMESESSIONCMD=${HOST_GDMGNOMESESSIONCMD} -+test "x$UTMP_LINE_ATTACHED" = x && UTMP_LINE_ATTACHED=${HOST_UTMP_LINE_ATTACHED} -+test "x$UTMP_LINE_REMOTE" = x && UTMP_LINE_REMOTE=${HOST_UTMP_LINE_REMOTE} -+test "x$UTMP_PSEUDO_DEVICE" = x && UTMP_PSEUDO_DEVICE=${HOST_UTMP_PSEUDO_DEVICE} -+test "x$GDM_RBAC_SYSCMD_KEYS" = x && GDM_RBAC_SYSCMD_KEYS=${HOST_GDM_RBAC_SYSCMD_KEYS} - - # On Solaris, the /usr/bin/Xserver script is used to decide whether to - # use Xsun or Xorg, so this is used on Solaris. diff --git a/x11/gdm/files/patch-daemon_gdmconsolekit.c b/x11/gdm/files/patch-daemon_gdmconsolekit.c deleted file mode 100644 index b07647071..000000000 --- a/x11/gdm/files/patch-daemon_gdmconsolekit.c +++ /dev/null @@ -1,11 +0,0 @@ ---- daemon/gdmconsolekit.c.orig 2007-08-30 22:57:18.000000000 -0400 -+++ daemon/gdmconsolekit.c 2007-08-30 22:57:35.000000000 -0400 -@@ -457,7 +457,7 @@ open_ck_session (struct passwd *pwent, - char *device; - - /* FIXME: how does xorg construct this */ -- device = g_strdup_printf ("/dev/tty%d", d->vt); -+ device = g_strdup_printf ("/dev/ttyv%d", d->vt - 1); - add_param_string (&iter_struct, "x11-display-device", device); - g_free (device); - } diff --git a/x11/gdm/files/patch-gui_gdmsetup.c b/x11/gdm/files/patch-gui_gdmsetup.c deleted file mode 100644 index 423000cb6..000000000 --- a/x11/gdm/files/patch-gui_gdmsetup.c +++ /dev/null @@ -1,11 +0,0 @@ ---- gui/gdmsetup.c.orig Thu Jun 30 16:47:06 2005 -+++ gui/gdmsetup.c Mon Jul 4 02:53:12 2005 -@@ -3270,7 +3271,7 @@ theme_install_response (GtkWidget *choos - /* HACK! */ - argv[0] = chown; - argv[1] = "-R"; -- argv[2] = "root:root"; -+ argv[2] = "root:wheel"; - argv[3] = quoted; - argv[4] = NULL; - simple_spawn_sync (argv); diff --git a/x11/gdm/pkg-descr b/x11/gdm/pkg-descr deleted file mode 100644 index 1699cf5b7..000000000 --- a/x11/gdm/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -The GNOME 2.0 version of the xdm display manager. It supports user -icons, multiple sessions, and clean system shutdowns. - -WWW: http://www.gnome.org/projects/gdm/ diff --git a/x11/gdm/pkg-install b/x11/gdm/pkg-install deleted file mode 100644 index b775c1072..000000000 --- a/x11/gdm/pkg-install +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh - -case $2 in -POST-INSTALL) - USER=gdm - GROUP=${USER} - UID=92 - GID=${UID} - PW=/usr/sbin/pw - CHMOD=/bin/chmod - CHOWN=/usr/sbin/chown - MKDIR=/bin/mkdir - - if ${PW} group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if ${PW} groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if ${PW} user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if ${PW} useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d "/nonexistent" -s /sbin/nologin -c "GNOME Display Manager" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - ${MKDIR} -p /var/gdm - ${MKDIR} -p /var/log/gdm - ${CHOWN} -R root:${GROUP} /var/gdm - ${CHMOD} 1770 /var/gdm - ${CHOWN} root:wheel ${PKG_PREFIX}/share/gdm - ${CHMOD} 0755 ${PKG_PREFIX}/share/gdm - - ${MKDIR} -p ${PKG_PREFIX}/etc/dm/Sessions - exit 0 - ;; -esac diff --git a/x11/gdm/pkg-message b/x11/gdm/pkg-message deleted file mode 100644 index 9131c3eb4..000000000 --- a/x11/gdm/pkg-message +++ /dev/null @@ -1,12 +0,0 @@ -GDM is installed. - -Do _NOT_ use /etc/ttys to start gdm at boot time. This will result in gdm -hanging or restarting constantly. Instead, add gdm_enable="YES" to -/etc/rc.conf. GDM will be started automatic on the next reboot. - -GDM uses its own locale.alias file to determine its language and especially -the GNOME 2 fontencoding. This file is located in -%%PREFIX%%/etc/gdm/locale.alias. By default, the character set for every -country using the EURO currency is set to ISO8859-15 in order to enable the -EURO sign. If you do not feel comfortable with this, edit this file according -to your preferences. diff --git a/x11/gdm/pkg-plist b/x11/gdm/pkg-plist deleted file mode 100644 index 2a1730847..000000000 --- a/x11/gdm/pkg-plist +++ /dev/null @@ -1,265 +0,0 @@ -bin/gdm-dmx-reconnect-proxy -bin/gdmXnest -bin/gdmXnestchooser -bin/gdmdynamic -bin/gdmflexiserver -bin/gdmphotosetup -bin/gdmthemetester -etc/gdm/Init/Default -etc/gdm/PostLogin/Default.sample -etc/gdm/PostSession/Default -etc/gdm/PreSession/Default -etc/gdm/XKeepsCrashing -etc/gdm/Xsession -@unexec if cmp -s %D/etc/gdm/custom.conf %D/etc/gdm/custom.conf.default; then rm -f %D/etc/gdm/custom.conf; fi -etc/gdm/custom.conf.default -@exec [ -f %B/custom.conf ] || cp %B/%f %B/custom.conf -etc/gdm/locale.alias -@unexec if cmp -s %D/etc/gdm/modules/AccessDwellMouseEvents %D/etc/gdm/modules/factory-AccessDwellMouseEvents; then rm -f %D/etc/gdm/modules/AccessDwellMouseEvents; fi -etc/gdm/modules/factory-AccessDwellMouseEvents -@exec [ -f %B/AccessDwellMouseEvents ] || cp %B/%f %B/AccessDwellMouseEvents -@unexec if cmp -s %D/etc/gdm/modules/AccessKeyMouseEvents %D/etc/gdm/modules/factory-AccessKeyMouseEvents; then rm -f %D/etc/gdm/modules/AccessKeyMouseEvents; fi -etc/gdm/modules/factory-AccessKeyMouseEvents -@exec [ -f %B/AccessKeyMouseEvents ] || cp %B/%f %B/AccessKeyMouseEvents -lib/gtk-2.0/modules/libdwellmouselistener.a -lib/gtk-2.0/modules/libdwellmouselistener.la -lib/gtk-2.0/modules/libdwellmouselistener.so -lib/gtk-2.0/modules/libkeymouselistener.a -lib/gtk-2.0/modules/libkeymouselistener.la -lib/gtk-2.0/modules/libkeymouselistener.so -%%PAM_MISC%%libexec/gdmaskpass -libexec/gdmchooser -libexec/gdmgreeter -libexec/gdmlogin -libexec/gdmtranslate -sbin/gdm -sbin/gdm-binary -sbin/gdm-restart -sbin/gdm-safe-restart -sbin/gdm-stop -sbin/gdmsetup -%%DATADIR%%/BuiltInSessions/default.desktop -%%DATADIR%%/applications/gdmflexiserver-xnest.desktop -%%DATADIR%%/applications/gdmflexiserver.desktop -%%DATADIR%%/applications/gdmphotosetup.desktop -%%DATADIR%%/applications/gdmsetup.desktop -%%DATADIR%%/defaults.conf -%%DATADIR%%/factory-defaults.conf -%%DATADIR%%/gdmchooser.glade -%%DATADIR%%/gdmphotosetup.glade -%%DATADIR%%/gdmsetup.glade -%%DATADIR%%/themes/circles/GdmGreeterTheme.desktop -%%DATADIR%%/themes/circles/background.svg -%%DATADIR%%/themes/circles/circles.xml -%%DATADIR%%/themes/circles/flower.png -%%DATADIR%%/themes/circles/screenshot.png -%%DATADIR%%/themes/happygnome-list/GdmGreeterTheme.desktop -%%DATADIR%%/themes/happygnome-list/background.svg -%%DATADIR%%/themes/happygnome-list/gnome-logo.svg -%%DATADIR%%/themes/happygnome-list/happygnome-list.xml -%%DATADIR%%/themes/happygnome-list/screenshot.png -%%DATADIR%%/themes/happygnome/GdmGreeterTheme.desktop -%%DATADIR%%/themes/happygnome/background.svg -%%DATADIR%%/themes/happygnome/gnome-logo.svg -%%DATADIR%%/themes/happygnome/happygnome.xml -%%DATADIR%%/themes/happygnome/screenshot.png -share/gnome/help/gdm/C/gdm.xml -share/gnome/help/gdm/C/legal.xml -share/gnome/help/gdm/en_GB/gdm.xml -share/gnome/help/gdm/es/gdm.xml -share/gnome/help/gdm/fr/gdm.xml -share/gnome/help/gdm/ko/gdm.xml -share/gnome/help/gdm/oc/gdm.xml -share/gnome/help/gdm/sv/gdm.xml -share/gnome/help/gdm/uk/gdm.xml -share/icons/hicolor/16x16/apps/gdm-xnest.png -share/icons/hicolor/32x32/apps/gdm-setup.png -share/icons/hicolor/32x32/apps/gdm-xnest.png -share/icons/hicolor/48x48/apps/gdm-login-photo.png -share/icons/hicolor/48x48/apps/gdm-setup.png -share/icons/hicolor/48x48/apps/gdm-xnest.png -share/icons/hicolor/48x48/apps/gdm.png -share/locale/af/LC_MESSAGES/gdm.mo -share/locale/am/LC_MESSAGES/gdm.mo -share/locale/ar/LC_MESSAGES/gdm.mo -share/locale/as/LC_MESSAGES/gdm.mo -share/locale/az/LC_MESSAGES/gdm.mo -share/locale/be/LC_MESSAGES/gdm.mo -share/locale/bg/LC_MESSAGES/gdm.mo -share/locale/bn/LC_MESSAGES/gdm.mo -share/locale/bn_IN/LC_MESSAGES/gdm.mo -share/locale/bs/LC_MESSAGES/gdm.mo -share/locale/ca/LC_MESSAGES/gdm.mo -share/locale/cs/LC_MESSAGES/gdm.mo -share/locale/cy/LC_MESSAGES/gdm.mo -share/locale/da/LC_MESSAGES/gdm.mo -share/locale/de/LC_MESSAGES/gdm.mo -share/locale/dz/LC_MESSAGES/gdm.mo -share/locale/el/LC_MESSAGES/gdm.mo -share/locale/en_CA/LC_MESSAGES/gdm.mo -share/locale/en_GB/LC_MESSAGES/gdm.mo -share/locale/es/LC_MESSAGES/gdm.mo -share/locale/et/LC_MESSAGES/gdm.mo -share/locale/eu/LC_MESSAGES/gdm.mo -share/locale/fa/LC_MESSAGES/gdm.mo -share/locale/fi/LC_MESSAGES/gdm.mo -share/locale/fr/LC_MESSAGES/gdm.mo -share/locale/ga/LC_MESSAGES/gdm.mo -share/locale/gl/LC_MESSAGES/gdm.mo -share/locale/gu/LC_MESSAGES/gdm.mo -share/locale/he/LC_MESSAGES/gdm.mo -share/locale/hi/LC_MESSAGES/gdm.mo -share/locale/hr/LC_MESSAGES/gdm.mo -share/locale/hu/LC_MESSAGES/gdm.mo -share/locale/hy/LC_MESSAGES/gdm.mo -share/locale/id/LC_MESSAGES/gdm.mo -share/locale/is/LC_MESSAGES/gdm.mo -share/locale/it/LC_MESSAGES/gdm.mo -share/locale/ja/LC_MESSAGES/gdm.mo -share/locale/ka/LC_MESSAGES/gdm.mo -share/locale/kn/LC_MESSAGES/gdm.mo -share/locale/ko/LC_MESSAGES/gdm.mo -share/locale/ku/LC_MESSAGES/gdm.mo -share/locale/lt/LC_MESSAGES/gdm.mo -share/locale/lv/LC_MESSAGES/gdm.mo -share/locale/mg/LC_MESSAGES/gdm.mo -share/locale/mi/LC_MESSAGES/gdm.mo -share/locale/mk/LC_MESSAGES/gdm.mo -share/locale/ml/LC_MESSAGES/gdm.mo -share/locale/mn/LC_MESSAGES/gdm.mo -share/locale/mr/LC_MESSAGES/gdm.mo -share/locale/ms/LC_MESSAGES/gdm.mo -share/locale/nb/LC_MESSAGES/gdm.mo -share/locale/ne/LC_MESSAGES/gdm.mo -share/locale/nl/LC_MESSAGES/gdm.mo -share/locale/nn/LC_MESSAGES/gdm.mo -share/locale/nso/LC_MESSAGES/gdm.mo -share/locale/oc/LC_MESSAGES/gdm.mo -share/locale/or/LC_MESSAGES/gdm.mo -share/locale/pa/LC_MESSAGES/gdm.mo -share/locale/pl/LC_MESSAGES/gdm.mo -share/locale/pt/LC_MESSAGES/gdm.mo -share/locale/pt_BR/LC_MESSAGES/gdm.mo -share/locale/ro/LC_MESSAGES/gdm.mo -share/locale/ru/LC_MESSAGES/gdm.mo -share/locale/rw/LC_MESSAGES/gdm.mo -share/locale/si/LC_MESSAGES/gdm.mo -share/locale/sk/LC_MESSAGES/gdm.mo -share/locale/sl/LC_MESSAGES/gdm.mo -share/locale/sq/LC_MESSAGES/gdm.mo -share/locale/sr/LC_MESSAGES/gdm.mo -share/locale/sr@Latn/LC_MESSAGES/gdm.mo -share/locale/sv/LC_MESSAGES/gdm.mo -share/locale/ta/LC_MESSAGES/gdm.mo -share/locale/te/LC_MESSAGES/gdm.mo -share/locale/th/LC_MESSAGES/gdm.mo -share/locale/tr/LC_MESSAGES/gdm.mo -share/locale/uk/LC_MESSAGES/gdm.mo -share/locale/vi/LC_MESSAGES/gdm.mo -share/locale/wa/LC_MESSAGES/gdm.mo -share/locale/xh/LC_MESSAGES/gdm.mo -share/locale/zh_CN/LC_MESSAGES/gdm.mo -share/locale/zh_HK/LC_MESSAGES/gdm.mo -share/locale/zh_TW/LC_MESSAGES/gdm.mo -share/locale/zu/LC_MESSAGES/gdm.mo -share/omf/gdm/gdm-C.omf -share/omf/gdm/gdm-en_GB.omf -share/omf/gdm/gdm-es.omf -share/omf/gdm/gdm-fr.omf -share/omf/gdm/gdm-ko.omf -share/omf/gdm/gdm-oc.omf -share/omf/gdm/gdm-sv.omf -share/omf/gdm/gdm-uk.omf -share/pixmaps/faces/astronaut.jpg -share/pixmaps/faces/baseball.png -share/pixmaps/faces/butterfly.png -share/pixmaps/faces/cat-eye.jpg -share/pixmaps/faces/chess.jpg -share/pixmaps/faces/coffee.jpg -share/pixmaps/faces/dice.jpg -share/pixmaps/faces/energy-arc.jpg -share/pixmaps/faces/fish.jpg -share/pixmaps/faces/flake.jpg -share/pixmaps/faces/flower.jpg -share/pixmaps/faces/grapes.jpg -share/pixmaps/faces/guitar.jpg -share/pixmaps/faces/launch.jpg -share/pixmaps/faces/leaf.jpg -share/pixmaps/faces/lightning.jpg -share/pixmaps/faces/penguin.jpg -share/pixmaps/faces/puppy.jpg -share/pixmaps/faces/sky.jpg -share/pixmaps/faces/soccerball.png -share/pixmaps/faces/sunflower.jpg -share/pixmaps/faces/sunset.jpg -share/pixmaps/faces/tennis-ball.png -share/pixmaps/faces/yellow-rose.jpg -share/pixmaps/gdm-foot-logo.png -share/pixmaps/nobody.png -share/pixmaps/nohost.png -share/xsessions/gnome.desktop -@dirrm share/xsessions -@dirrm share/pixmaps/faces -@dirrm share/omf/gdm -@dirrm share/gnome/help/gdm/uk -@dirrm share/gnome/help/gdm/sv -@dirrm share/gnome/help/gdm/oc -@dirrm share/gnome/help/gdm/ko -@dirrm share/gnome/help/gdm/fr -@dirrm share/gnome/help/gdm/es -@dirrm share/gnome/help/gdm/en_GB -@dirrm share/gnome/help/gdm/C -@dirrm share/gnome/help/gdm -@dirrm %%DATADIR%%/themes/happygnome-list -@dirrm %%DATADIR%%/themes/happygnome -@dirrm %%DATADIR%%/themes/circles -@dirrm %%DATADIR%%/themes -@dirrm %%DATADIR%%/applications -@dirrm %%DATADIR%%/BuiltInSessions -@dirrm %%DATADIR%% -@dirrm etc/gdm/modules -@dirrm etc/gdm/Sessions -@dirrm etc/gdm/PreSession -@dirrm etc/gdm/PostSession -@dirrm etc/gdm/PostLogin -@dirrm etc/gdm/Init -@dirrm etc/gdm -@dirrmtry etc/dm/Sessions -@dirrmtry etc/dm -@dirrmtry sbin -@dirrmtry share/log/gdm -@dirrmtry share/log -@unexec /bin/rm -rf /var/gdm 2>/dev/null || /usr/bin/true -@unexec /bin/rm -rf /var/log/gdm 2>/dev/null || /usr/bin/true -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@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/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/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/gnome-applets/Makefile b/x11/gnome-applets/Makefile deleted file mode 100644 index 7759c2c55..000000000 --- a/x11/gnome-applets/Makefile +++ /dev/null @@ -1,107 +0,0 @@ -# New ports collection makefile for: gnomeapplets2 -# Date created: 26th May 2000 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-applets/Makefile,v 1.164 2007/09/03 17:08:08 mezz Exp $ -# - -PORTNAME= gnome-applets -PORTVERSION= 2.20.0 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Applets components for the GNOME 2 Desktop Environment - -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/system-tools-backends-2.0.pc:${PORTSDIR}/sysutils/system-tools-backends \ - ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-control-center -LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop \ - xklavier.11:${PORTSDIR}/x11/libxklavier \ - gucharmap.6:${PORTSDIR}/deskutils/gucharmap -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/system-tools-backends-2.0.pc:${PORTSDIR}/sysutils/system-tools-backends \ - ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-control-center - -USE_GETTEXT= yes -USE_BZIP2= yes -USE_XLIB= yes -USE_GMAKE= yes -GNOME_DESKTOP_VERSION=2 -INSTALLS_OMF= yes -INSTALLS_ICONS= yes -USE_LDCONFIG= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomepanel \ - gail gnomedocutils libgnomekbd -WANT_GNOME= yes -USE_GSTREAMER= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-gstreamer=0.10 \ - --enable-stickynotes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ - LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ - OS_SYS="/usr/include" - -GCONF_SCHEMAS= charpick.schemas drivemount.schemas geyes.schemas \ - gweather.schemas mixer.schemas multiload.schemas \ - stickynotes.schemas - -OPTIONS= MINI_COMMANDER "Enable mini-commander applet" off - -.if defined(PACKAGE_BUILDING) -.undef WITHOUT_GNOME -WITH_GNOME= yes -.endif - -.include <bsd.port.pre.mk> - -.if exists(${LOCALBASE}/libdata/pkgconfig/libnotify.pc) || \ - !defined(WITHOUT_LIBNOTIFY) -LIB_DEPENDS+= notify:${PORTSDIR}/devel/libnotify -.endif - -.if ${ARCH} != "i386" && ${ARCH} != "amd64" -CONFIGURE_ENV+= CFLAGS="${CFLAGS} -fPIC" -PLIST_SUB= BATTERY="@comment " -.else -GCONF_SCHEMAS+= battstat.schemas -PLIST_SUB= BATTERY="" -.endif - -.if ${ARCH} != "i386" && ${ARCH} != "amd64" -PLIST_SUB+= CPUFREQ="@comment " -.else -PLIST_SUB+= CPUFREQ="" -GCONF_SCHEMAS+= cpufreq-applet.schemas -.endif - -.if defined(WITH_MINI_COMMANDER) -CONFIGURE_ARGS+= --enable-mini-commander -GCONF_SCHEMAS+= mini-commander-global.schemas mini-commander.schemas -PLIST_SUB+= COMMANDER="" -.else -PLIST_SUB+= COMMANDER="@comment " -.endif - -.if ( exists(${pygnomedesktop_DETECT}) ) || \ - ( ( ${HAVE_GNOME:Mpygnomedesktop}!="" ) && ${ARCH}!="sparc64" ) -USE_PYTHON= yes -.include "${PORTSDIR}/Mk/bsd.python.mk" -USE_GNOME+= pygnomedesktop -PLIST_SUB+= PYTHON="" -.else -PLIST_SUB+= PYTHON="@comment " -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|g' \ - ${WRKSRC}/libgweather/weather-met.c - @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ - 's|" == "|" = "|g' -.if !defined(USE_PYTHON) - @${REINPLACE_CMD} -e 's|HAVE_PYGTK="yes"|HAVE_PYGTK="no"|' \ - ${WRKSRC}/configure -.endif - -.include <bsd.port.post.mk> diff --git a/x11/gnome-applets/distinfo b/x11/gnome-applets/distinfo deleted file mode 100644 index cbb7fa73c..000000000 --- a/x11/gnome-applets/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-applets-2.20.0.tar.bz2) = 985cfc3c58a72e1a92201bf4a4873b87 -SHA256 (gnome2/gnome-applets-2.20.0.tar.bz2) = 7a0f23a99c6c2166786578ede34a81939aa771d25502c33e9c29236a8233acff -SIZE (gnome2/gnome-applets-2.20.0.tar.bz2) = 7488862 diff --git a/x11/gnome-applets/files/patch-aa b/x11/gnome-applets/files/patch-aa deleted file mode 100644 index 7d1f86084..000000000 --- a/x11/gnome-applets/files/patch-aa +++ /dev/null @@ -1,104 +0,0 @@ ---- configure.orig 2007-07-09 18:13:48.000000000 -0400 -+++ configure 2007-07-09 18:14:19.000000000 -0400 -@@ -25117,7 +25117,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${datadir}/locale"` -+ ac_define_dir=`eval echo "${datadir}/locale"` - ac_define_dir=`eval echo $ac_define_dir` - GNOMELOCALEDIR="$ac_define_dir" - -@@ -27157,8 +27157,8 @@ fi - - ;; - # list of supported OS cores that do not use libapm -- i386-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*kfreebsd*-gnu) -- if -n "${OS_SYS}" ; then -+ i386-*-freebsd*|amd64-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*kfreebsd*-gnu) -+ if test -n "${OS_SYS}" ; then - ACPIINC="-I${OS_SYS}" - else - ACPIINC="-I/usr/src/sys" -@@ -27924,7 +27924,7 @@ echo "${ECHO_T}no" >&6; } - fi - - -- stb="system-tools-backends" -+ stb="system-tools-backends-2.0" - - if test x$PKG_CONFIG != xno ; then - if $PKG_CONFIG --atleast-pkgconfig-version 0.12 ; then -@@ -28166,6 +28166,9 @@ if test x$disable_cpufreq = xno; then - *linux*) - build_cpufreq_applet=yes - ;; -+ i386-*-freebsd*|amd64-*-freebsd*) -+ build_cpufreq_applet=yes -+ ;; - *) - { echo "$as_me:$LINENO: WARNING: ${host} is not supported by cpufreq applet, not building" >&5 - echo "$as_me: WARNING: ${host} is not supported by cpufreq applet, not building" >&2;} -@@ -28684,7 +28687,7 @@ gladedir="${pkgdatadir}/glade" - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${iconsdir}"` -+ ac_define_dir=`eval echo "${iconsdir}"` - ac_define_dir=`eval echo $ac_define_dir` - GNOME_ICONDIR="$ac_define_dir" - -@@ -28697,7 +28700,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${pixmapsdir}"` -+ ac_define_dir=`eval echo "${pixmapsdir}"` - ac_define_dir=`eval echo $ac_define_dir` - GNOME_PIXMAPSDIR="$ac_define_dir" - -@@ -28710,7 +28713,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${gladedir}"` -+ ac_define_dir=`eval echo "${gladedir}"` - ac_define_dir=`eval echo $ac_define_dir` - GNOME_GLADEDIR="$ac_define_dir" - -@@ -28723,7 +28726,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${datadir}"` -+ ac_define_dir=`eval echo "${datadir}"` - ac_define_dir=`eval echo $ac_define_dir` - DATADIR="$ac_define_dir" - -@@ -28736,7 +28739,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${sysconfdir}"` -+ ac_define_dir=`eval echo "${sysconfdir}"` - ac_define_dir=`eval echo $ac_define_dir` - SYSCONFDIR="$ac_define_dir" - -@@ -28749,7 +28752,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"${libdir}"` -+ ac_define_dir=`eval echo "${libdir}"` - ac_define_dir=`eval echo $ac_define_dir` - LIBDIR="$ac_define_dir" - -@@ -28762,7 +28765,7 @@ _ACEOF - - test "x$prefix" = xNONE && prefix="$ac_default_prefix" - test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -- ac_define_dir=`eval echo $"$prefix"` -+ ac_define_dir=`eval echo "$prefix"` - ac_define_dir=`eval echo $ac_define_dir` - PREFIX="$ac_define_dir" - diff --git a/x11/gnome-applets/files/patch-battstat_acpi-freebsd.c b/x11/gnome-applets/files/patch-battstat_acpi-freebsd.c deleted file mode 100644 index 48746fa03..000000000 --- a/x11/gnome-applets/files/patch-battstat_acpi-freebsd.c +++ /dev/null @@ -1,152 +0,0 @@ ---- battstat/acpi-freebsd.c.orig Sun Jul 3 16:41:26 2005 -+++ battstat/acpi-freebsd.c Sun Jul 3 16:49:55 2005 -@@ -31,9 +31,13 @@ - - #include <stdio.h> - #include <sys/types.h> -+#include <sys/socket.h> - #include <sys/sysctl.h> -+#include <sys/un.h> - #include <sys/ioctl.h> -+#if defined(__i386__) - #include <machine/apm_bios.h> -+#endif - #include <stdlib.h> - #include <errno.h> - #include <unistd.h> -@@ -92,16 +96,36 @@ gboolean - acpi_freebsd_init(struct acpi_info * acpiinfo) - { - int acpi_fd; -+ int event_fd; - - g_assert(acpiinfo); - -- acpi_fd = open(ACPIDEV, O_RDONLY); -- if (acpi_fd >= 0) { -- acpiinfo->acpifd = acpi_fd; -+ if (acpiinfo->acpifd == -1) { -+ acpi_fd = open(ACPIDEV, O_RDONLY); -+ if (acpi_fd >= 0) { -+ acpiinfo->acpifd = acpi_fd; -+ } -+ else { -+ acpiinfo->acpifd = -1; -+ return FALSE; -+ } - } -- else { -- acpiinfo->acpifd = -1; -- return FALSE; -+ -+ event_fd = socket(PF_UNIX, SOCK_STREAM, 0); -+ if (event_fd >= 0) { -+ struct sockaddr_un addr; -+ addr.sun_family = AF_UNIX; -+ strcpy(addr.sun_path, "/var/run/devd.pipe"); -+ if (connect(event_fd, (struct sockaddr *) &addr, sizeof(addr)) == 0) { -+ acpiinfo->event_fd = event_fd; -+ acpiinfo->event_inited = TRUE; -+ acpiinfo->channel = g_io_channel_unix_new(event_fd); -+ } -+ else { -+ close(event_fd); -+ acpiinfo->event_fd = -1; -+ acpiinfo->event_inited = FALSE; -+ } - } - - update_battery_info(acpiinfo); -@@ -110,6 +134,65 @@ acpi_freebsd_init(struct acpi_info * acp - return TRUE; - } - -+#define ACPI_EVENT_IGNORE 0 -+#define ACPI_EVENT_AC 1 -+#define ACPI_EVENT_BATTERY_INFO 2 -+ -+static int parse_acpi_event(GString *buffer) -+{ -+ if (strstr(buffer->str, "system=ACPI")) { -+ if (strstr(buffer->str, "subsystem=ACAD")) -+ return ACPI_EVENT_AC; -+ if (strstr(buffer->str, "subsystem=CMBAT")) -+ return ACPI_EVENT_BATTERY_INFO; -+ } -+ -+ return ACPI_EVENT_IGNORE; -+} -+ -+void acpi_freebsd_update(struct acpi_info *acpiinfo) -+{ -+ /* XXX This is needed for systems where devd does not have permissions -+ * to allow for event-driven updates. -+ */ -+ update_ac_info(acpiinfo); -+ update_battery_info(acpiinfo); -+} -+ -+gboolean acpi_process_event(struct acpi_info *acpiinfo, gboolean *read_error) -+{ -+ gsize i; -+ int evt; -+ gboolean result = FALSE; -+ GString *buffer; -+ GIOStatus stat; -+ buffer = g_string_new(NULL); -+ -+ *read_error = FALSE; -+ stat = g_io_channel_read_line_string(acpiinfo->channel, buffer, &i, NULL); -+ -+ if (stat == G_IO_STATUS_ERROR || stat == G_IO_STATUS_EOF) { -+ *read_error = TRUE; -+ g_string_free(buffer, TRUE); -+ return FALSE; -+ } -+ -+ evt = parse_acpi_event(buffer); -+ switch (evt) { -+ case ACPI_EVENT_AC: -+ update_ac_info(acpiinfo); -+ result = TRUE; -+ break; -+ case ACPI_EVENT_BATTERY_INFO: -+ update_battery_info(acpiinfo); -+ result = TRUE; -+ break; -+ } -+ -+ g_string_free(buffer, TRUE); -+ return result; -+} -+ - void - acpi_freebsd_cleanup(struct acpi_info * acpiinfo) - { -@@ -119,21 +202,12 @@ acpi_freebsd_cleanup(struct acpi_info * - close(acpiinfo->acpifd); - acpiinfo->acpifd = -1; - } --} - --/* XXX This is a hack since user-land applications can't get ACPI events yet. -- * Devd provides this (or supposedly provides this), but you need to be -- * root to access devd. -- */ --gboolean --acpi_process_event(struct acpi_info * acpiinfo) --{ -- g_assert(acpiinfo); -- -- update_ac_info(acpiinfo); -- update_battery_info(acpiinfo); -- -- return TRUE; -+ if (acpiinfo->event_fd >= 0) { -+ g_io_channel_unref(acpiinfo->channel); -+ close(acpiinfo->event_fd); -+ acpiinfo->event_fd = -1; -+ } - } - - gboolean diff --git a/x11/gnome-applets/files/patch-battstat_acpi-freebsd.h b/x11/gnome-applets/files/patch-battstat_acpi-freebsd.h deleted file mode 100644 index 918cd59eb..000000000 --- a/x11/gnome-applets/files/patch-battstat_acpi-freebsd.h +++ /dev/null @@ -1,78 +0,0 @@ ---- battstat/acpi-freebsd.h.orig Sun Jul 3 16:50:22 2005 -+++ battstat/acpi-freebsd.h Sun Jul 3 16:54:14 2005 -@@ -29,61 +29,31 @@ - #define ACPI_LIFE "hw.acpi.battery.life" - #define ACPI_STATE "hw.acpi.battery.state" - --struct acpi_info { -- gboolean ac_online; -- int acpifd; -- int max_capacity; -- int low_capacity; -- int critical_capacity; -+/* XXX: AMD64 does not have machine/apm_bios.h. */ -+#if !defined(__i386__) -+struct apm_info { -+ guint ai_acline; -+ guint ai_batt_stat; -+ guint ai_batt_life; -+ int ai_batt_time; -+ guint ai_status; - }; -- --gboolean acpi_freebsd_read(struct apm_info *apminfo, struct acpi_info * acpiinfo); --gboolean acpi_process_event(struct acpi_info * acpiinfo); --gboolean acpi_freebsd_init(struct acpi_info * acpiinfo); --void acpi_freebsd_cleanup(struct acpi_info * acpiinfo); -- --#endif /* __ACPI_FREEBSD_H__ */ --/* -- * Copyright (C) 2004 by Joe Marcus Clarke <marcus@FreeBSD.org> -- * -- * This program is free software; you can redistribute it and/or modify -- * it under the terms of the GNU General Public License as published by -- * the Free Software Foundation; either version 2 of the License, or -- * (at your option) any later version. -- * -- * This program is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- * GNU General Public License for more details. -- * -- * You should have received a copy of the GNU General Public License -- * along with this program; if not, write to the Free Software -- * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. -- */ -- --#ifndef __ACPI_FREEBSD_H__ --#define __ACPI_FREEBSD_H__ -- --#define ACPIDEV "/dev/acpi" -- --#define BATT_MIN 0 --#define BATT_MAX 64 -- --#define ACPI_ACLINE "hw.acpi.acline" --#define ACPI_TIME "hw.acpi.battery.time" --#define ACPI_LIFE "hw.acpi.battery.life" --#define ACPI_STATE "hw.acpi.battery.state" -+#endif - - struct acpi_info { - gboolean ac_online; -+ gboolean event_inited; - int acpifd; -+ int event_fd; - int max_capacity; - int low_capacity; - int critical_capacity; -+ GIOChannel * channel; - }; - - gboolean acpi_freebsd_read(struct apm_info *apminfo, struct acpi_info * acpiinfo); --gboolean acpi_process_event(struct acpi_info * acpiinfo); -+void acpi_freebsd_update(struct acpi_info * acpiinfo); -+gboolean acpi_process_event(struct acpi_info * acpiinfo, gboolean *read_error); - gboolean acpi_freebsd_init(struct acpi_info * acpiinfo); - void acpi_freebsd_cleanup(struct acpi_info * acpiinfo); - diff --git a/x11/gnome-applets/files/patch-battstat_battstat_applet.c b/x11/gnome-applets/files/patch-battstat_battstat_applet.c deleted file mode 100644 index a95b7b569..000000000 --- a/x11/gnome-applets/files/patch-battstat_battstat_applet.c +++ /dev/null @@ -1,21 +0,0 @@ ---- battstat/battstat_applet.c.orig Fri Aug 19 22:13:49 2005 -+++ battstat/battstat_applet.c Tue Aug 23 20:37:13 2005 -@@ -430,14 +430,14 @@ battery_full_notify (GtkWidget *applet) - static void - battery_full_dialog (GtkWidget *applet) - { -- /* first attempt to use libnotify */ -- if (battery_full_notify (applet)) -- return; -- - GtkWidget *dialog, *hbox, *image, *label; - GdkPixbuf *pixbuf; - - gchar *new_label; -+ /* first attempt to use libnotify */ -+ if (battery_full_notify (applet)) -+ return; -+ - dialog = gtk_dialog_new_with_buttons ( - _("Battery Notice"), - NULL, diff --git a/x11/gnome-applets/files/patch-battstat_power-management.c b/x11/gnome-applets/files/patch-battstat_power-management.c deleted file mode 100644 index 9cea2d65b..000000000 --- a/x11/gnome-applets/files/patch-battstat_power-management.c +++ /dev/null @@ -1,123 +0,0 @@ ---- battstat/power-management.c.orig Thu Aug 25 23:45:47 2005 -+++ battstat/power-management.c Tue Aug 30 01:28:40 2005 -@@ -61,9 +61,7 @@ - - static const char *apm_readinfo (BatteryStatus *status); - static int pm_initialised; --#ifdef HAVE_HAL --static int using_hal; --#endif -+static int using_hal = FALSE; - - /* - * What follows is a series of platform-specific apm_readinfo functions -@@ -173,16 +171,40 @@ apm_readinfo (BatteryStatus *status) - - #elif __FreeBSD__ - -+#if defined(__i386__) - #include <machine/apm_bios.h> -+#endif - #include "acpi-freebsd.h" - - static struct acpi_info acpiinfo; - static gboolean using_acpi; - static int acpi_count; -+static int acpiwatch; - static struct apm_info apminfo; - -+gboolean acpi_freebsd_read(struct apm_info *apminfo, struct acpi_info *acpiinfo); -+ - #define APMDEVICE "/dev/apm" - -+static gboolean acpi_callback (GIOChannel * chan, GIOCondition cond, gpointer data) -+{ -+ gboolean read_error; -+ if (cond & (G_IO_ERR | G_IO_HUP)) { -+ acpi_freebsd_cleanup(&acpiinfo); -+ return FALSE; -+ } -+ -+ if (acpi_process_event(&acpiinfo, &read_error)) { -+ acpi_freebsd_read(&apminfo, &acpiinfo); -+ } -+ else if (read_error) { -+ acpi_freebsd_cleanup(&acpiinfo); -+ return FALSE; -+ } -+ -+ return TRUE; -+} -+ - static const char * - apm_readinfo (BatteryStatus *status) - { -@@ -190,21 +212,27 @@ apm_readinfo (BatteryStatus *status) - - if (DEBUG) g_print("apm_readinfo() (FreeBSD)\n"); - -- if (using_acpi) { -+ if (using_acpi && (!acpiinfo.event_inited || acpiinfo.event_fd >= 0)) { - if (acpi_count <= 0) { - acpi_count = 30; -- acpi_process_event(&acpiinfo); -+ if (!acpiinfo.event_inited) { -+ acpi_freebsd_update(&acpiinfo); -+ } - if (acpi_freebsd_read(&apminfo, &acpiinfo) == FALSE) - return ERR_FREEBSD_ACPI; - } - acpi_count--; - } -- else -- { -- /* This is how I read the information from the APM subsystem under -- FreeBSD. Each time this functions is called (once every second) -- the APM device is opened, read from and then closed. -- */ -+ else if (using_acpi && acpiinfo.event_inited) { -+ if (acpi_freebsd_init(&acpiinfo)) { -+ acpiwatch = g_io_add_watch (acpiinfo.channel, -+ G_IO_IN | G_IO_ERR | G_IO_HUP, -+ acpi_callback, NULL); -+ acpi_freebsd_read(&apminfo, &acpiinfo); -+ } -+ } -+ else { -+#if defined(__i386__) - fd = open(APMDEVICE, O_RDONLY); - if (fd == -1) { - return ERR_OPEN_APMDEV; -@@ -217,6 +245,9 @@ apm_readinfo (BatteryStatus *status) - - if(apminfo.ai_status == 0) - return ERR_APM_E; -+#else -+ return ERR_OPEN_APMDEV; -+#endif - } - - status->present = TRUE; -@@ -480,6 +511,12 @@ power_management_initialise( int no_hal - } - else - using_acpi = FALSE; -+ -+ if (using_acpi && acpiinfo.event_fd >= 0) { -+ acpiwatch = g_io_add_watch (acpiinfo.channel, -+ G_IO_IN | G_IO_ERR | G_IO_HUP, -+ acpi_callback, NULL); -+ } - #endif - pm_initialised = 1; - -@@ -513,6 +550,9 @@ power_management_cleanup( void ) - } - #elif defined(__FreeBSD__) - if (using_acpi) { -+ if (acpiwatch != 0) -+ g_source_remove(acpiwatch); -+ acpiwatch = 0; - acpi_freebsd_cleanup(&acpiinfo); - } - #endif diff --git a/x11/gnome-applets/files/patch-cpufreq-freebsd b/x11/gnome-applets/files/patch-cpufreq-freebsd deleted file mode 100644 index a597e6725..000000000 --- a/x11/gnome-applets/files/patch-cpufreq-freebsd +++ /dev/null @@ -1,436 +0,0 @@ ---- cpufreq/src/cpufreq-monitor-cpuinfo.c.orig Thu Jun 15 01:01:54 2006 -+++ cpufreq/src/cpufreq-monitor-cpuinfo.c Sat Jun 17 13:48:19 2006 -@@ -22,6 +22,10 @@ - #include <glib.h> - #include <glib/gi18n.h> - -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#include <sys/sysctl.h> -+#endif /* __FreeBSD__ */ - #include <string.h> - #include <stdio.h> - -@@ -59,15 +63,20 @@ cpufreq_monitor_cpuinfo_new (guint cpu) - static gboolean - cpufreq_monitor_cpuinfo_run (CPUFreqMonitor *monitor) - { -+#ifndef __FreeBSD__ - gchar *file; - gchar **lines; - gchar *buffer = NULL; - gchar *p; -+#else -+ size_t len; -+#endif /* __FreeBSD__ */ - gint cpu, i; - gint cur_freq, max_freq; - gchar *governor; - GError *error = NULL; - -+#ifndef __FreeBSD__ - file = g_strdup ("/proc/cpuinfo"); - if (!g_file_get_contents (file, &buffer, NULL, &error)) { - g_warning (error->message); -@@ -112,6 +121,12 @@ cpufreq_monitor_cpuinfo_run (CPUFreqMoni - - g_strfreev (lines); - g_free (buffer); -+#else -+ len = sizeof (cpu); -+ -+ if (sysctlbyname ("hw.clockrate", &cpu, &len, NULL, 0) == -1) -+ return FALSE; -+#endif /* __FreeBSD__ */ - - governor = g_strdup (_("Frequency Scaling Unsupported")); - cur_freq = cpu * 1000; ---- cpufreq/src/cpufreq-applet.c.orig Thu Jun 15 01:01:53 2006 -+++ cpufreq/src/cpufreq-applet.c Sat Jun 17 13:42:50 2006 -@@ -17,6 +17,7 @@ - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - * Authors : Carlos García Campos <carlosgc@gnome.org> -+ * Joe Marcus Clarke <marcus@FreeBSD.org> - */ - - #ifdef HAVE_CONFIG_H -@@ -519,6 +524,7 @@ cpufreq_applet_about_cb (BonoboUICompone - { - static const gchar *const authors[] = { - "Carlos Garcia Campos <carlosgc@gnome.org>", -+ "Joe Marcus Clarke <marcus@FreeBSD.org> (FreeBSD support)", - NULL - }; - static const gchar *const documenters[] = { ---- cpufreq/src/cpufreq-monitor-sysctl.h.orig Sat Jun 17 14:05:37 2006 -+++ cpufreq/src/cpufreq-monitor-sysctl.h Sat Jun 17 14:14:13 2006 -@@ -0,0 +1,49 @@ -+/* -+ * Copyright (C) 2001, 2002 Free Software Foundation -+ * -+ * This library is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU General Public -+ * License as published by the Free Software Foundation; either -+ * version 2 of the License, or (at your option) any later version. -+ * -+ * This library is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * General Public License for more details. -+ * -+ * You should have received a copy of the GNU General Public -+ * License along with this library; if not, write to the Free -+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ * -+ * Authors : Joe Marcus Clarke <marcus@FreeBSD.org> -+ */ -+ -+#ifndef __CPUFREQ_MONITOR_SYSCTL_H__ -+#define __CPUFREQ_MONITOR_SYSCTL_H__ -+ -+#include <glib-object.h> -+ -+#include "cpufreq-monitor.h" -+ -+#define TYPE_CPUFREQ_MONITOR_SYSCTL (cpufreq_monitor_sysctl_get_type ()) -+#define CPUFREQ_MONITOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_CPUFREQ_MONITOR_SYSCTL, CPUFreqMonitorSysctl)) -+#define CPUFREQ_MONITOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), TYPE_CPUFREQ_MONITOR_SYSCTL, CPUFreqMonitorSysctlClass)) -+#define IS_CPUFREQ_MONITOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_CPUFREQ_MONITOR_SYSCTL)) -+#define IS_CPUFREQ_MONITOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_CPUFREQ_MONITOR_SYSCTL)) -+#define CPUFREQ_MONITOR_SYSCTL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_CPUFREQ_MONITOR_SYSCTL, CPUFreqMonitorSysctlClass)) -+ -+typedef struct _CPUFreqMonitorSysctl CPUFreqMonitorSysctl; -+typedef struct _CPUFreqMonitorSysctlClass CPUFreqMonitorSysctlClass; -+ -+struct _CPUFreqMonitorSysctl { -+ CPUFreqMonitor parent; -+}; -+ -+struct _CPUFreqMonitorSysctlClass { -+ CPUFreqMonitorClass parent_class; -+}; -+ -+GType cpufreq_monitor_sysctl_get_type (void) G_GNUC_CONST; -+CPUFreqMonitor *cpufreq_monitor_sysctl_new (guint cpu); -+ -+#endif /* __CPUFREQ_MONITOR_SYSCTL_H__ */ ---- cpufreq/src/cpufreq-monitor-factory.c.orig Sat Jun 17 06:28:02 2006 -+++ cpufreq/src/cpufreq-monitor-factory.c Sat Jun 24 01:45:54 2006 -@@ -17,6 +17,7 @@ - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - * Authors : Carlos García Campos <carlosgc@gnome.org> -+ * Joe Marcus Clarke <marcus@FreeBSD.org> - */ - - #ifdef HAVE_CONFIG_H -@@ -25,11 +26,18 @@ - - #include <glib.h> - #include <glib/gi18n.h> -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#include <sys/sysctl.h> -+#endif /* __FreeBSD__ */ - - #include "cpufreq-applet.h" - #include "cpufreq-utils.h" - #include "cpufreq-monitor-sysfs.h" - #include "cpufreq-monitor-procfs.h" -+#ifdef __FreeBSD__ -+#include "cpufreq-monitor-sysctl.h" -+#endif /* __FreeBSD__ */ - #include "cpufreq-monitor-cpuinfo.h" - #ifdef HAVE_LIBCPUFREQ - #include "cpufreq-monitor-libcpufreq.h" -@@ -40,6 +48,7 @@ CPUFreqMonitor * - cpufreq_monitor_factory_create_monitor (guint cpu) - { - CPUFreqMonitor *monitor = NULL; -+#ifndef __FreeBSD__ - - #ifdef HAVE_LIBCPUFREQ - monitor = cpufreq_monitor_libcpufreq_new (cpu); -@@ -63,6 +72,19 @@ cpufreq_monitor_factory_create_monitor ( - - monitor = cpufreq_monitor_cpuinfo_new (cpu); - } -+#else -+ size_t len; -+ -+ if (sysctlbyname ("dev.cpu.0.freq", NULL, &len, NULL, 0) == 0) { -+ monitor = cpufreq_monitor_sysctl_new (cpu); -+ } else { -+ cpufreq_utils_display_error (_("CPU frequency scaling unsupported"), -+ _("You will not be able to modify the frequency of your machine. " -+ "Your machine may be misconfigured or not have hardware support " -+ "for CPU frequency scaling.")); -+ monitor = cpufreq_monitor_cpuinfo_new (cpu); -+ } -+#endif /* __FreeBSD__ */ - - return monitor; - } ---- cpufreq/src/cpufreq-utils.c.orig Sat Aug 12 21:26:50 2006 -+++ cpufreq/src/cpufreq-utils.c Tue Aug 22 11:07:32 2006 -@@ -22,6 +22,9 @@ - #include <glib.h> - #include <gtk/gtkmessagedialog.h> - #include <sys/types.h> -+#ifdef __FreeBSD__ -+#include <sys/sysctl.h> -+#endif - #include <sys/stat.h> - #include <fcntl.h> - #include <unistd.h> -@@ -30,6 +33,24 @@ - - #include "cpufreq-utils.h" - -+#ifdef __FreeBSD__ -+guint -+cpufreq_utils_get_n_cpus (void) -+{ -+ size_t len; -+ static guint n_cpus = 0; -+ -+ if (n_cpus > 0) -+ return n_cpus; -+ -+ len = sizeof (n_cpus); -+ if (sysctlbyname ("hw.ncpu", &n_cpus, &len, NULL, 0) == -1) { -+ return 1; -+ } -+ -+ return n_cpus; -+} -+#else - guint - cpufreq_utils_get_n_cpus (void) - { -@@ -72,6 +93,7 @@ cpufreq_utils_get_n_cpus (void) - - return 1; - } -+#endif /* __FreeBSD__ */ - - void - cpufreq_utils_display_error (const gchar *message, ---- cpufreq/src/cpufreq-monitor-sysctl.c.orig Wed Feb 28 14:03:58 2007 -+++ cpufreq/src/cpufreq-monitor-sysctl.c Wed Feb 28 14:28:47 2007 -@@ -0,0 +1,176 @@ -+/* -+ * Copyright (C) 2001, 2002 Free Software Foundation -+ * -+ * This library is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU General Public -+ * License as published by the Free Software Foundation; either -+ * version 2 of the License, or (at your option) any later version. -+ * -+ * This library is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * General Public License for more details. -+ * -+ * You should have received a copy of the GNU General Public -+ * License along with this library; if not, write to the Free -+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ * -+ * Authors : Joe Marcus Clarke <marcus@FreeBSD.org> -+ */ -+ -+#include <glib.h> -+#include <glib/gi18n.h> -+ -+#include <string.h> -+ -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#include <sys/sysctl.h> -+ -+#include "cpufreq-monitor-sysctl.h" -+ -+#define PARENT_TYPE TYPE_CPUFREQ_MONITOR -+ -+#define CPUFREQ_MONITOR_GET_PROTECTED(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), PARENT_TYPE, CPUFreqMonitorProtected)) -+ -+static void cpufreq_monitor_sysctl_class_init (CPUFreqMonitorSysctlClass *klass); -+ -+static gboolean cpufreq_monitor_sysctl_run (CPUFreqMonitor *monitor); -+static GList *cpufreq_monitor_sysctl_get_available_frequencies (CPUFreqMonitor *monitor); -+static GList *cpufreq_monitor_sysctl_get_available_governors (CPUFreqMonitor *monitor); -+ -+static gboolean cpufreq_monitor_sysctl_get (gpointer gdata); -+ -+G_DEFINE_TYPE (CPUFreqMonitorSysctl, cpufreq_monitor_sysctl, CPUFREQ_TYPE_MONITOR) -+ -+static void -+cpufreq_monitor_sysctl_init (CPUFreqMonitorSysctl *monitor) -+{ -+} -+ -+static void -+cpufreq_monitor_sysctl_class_init (CPUFreqMonitorSysctlClass *klass) -+{ -+ CPUFreqMonitorClass *monitor_class = CPUFREQ_MONITOR_CLASS (klass); -+ -+ monitor_class->run = cpufreq_monitor_sysctl_run; -+ monitor_class->get_available_frequencies = cpufreq_monitor_sysctl_get_available_frequencies; -+ monitor_class->get_available_governors = cpufreq_monitor_sysctl_get_available_governors; -+} -+ -+CPUFreqMonitor * -+cpufreq_monitor_sysctl_new (guint cpu) -+{ -+ CPUFreqMonitorSysctl *monitor; -+ -+ monitor = g_object_new (TYPE_CPUFREQ_MONITOR_SYSCTL, "cpu", cpu, NULL); -+ -+ return CPUFREQ_MONITOR (monitor); -+} -+ -+static gboolean -+cpufreq_monitor_sysctl_run (CPUFreqMonitor *monitor) -+{ -+ gint fmax, fmin, ifreq; -+ gchar *governor; -+ size_t len; -+ gchar *freq_oid; -+ guint mon_cpu; -+ GList *list; -+ -+ list = cpufreq_monitor_sysctl_get_available_frequencies (CPUFREQ_MONITOR (monitor)); -+ -+ fmax = atoi ((gchar *) list->data); -+ fmin = atoi ((gchar *) g_list_nth_data (list, (g_list_length (list) - 1))); -+ -+ g_object_get (G_OBJECT (monitor), "cpu", &mon_cpu, NULL); -+ len = sizeof (ifreq); -+ freq_oid = g_strdup_printf ("dev.cpu.%d.freq", 0); -+ -+ if (sysctlbyname (freq_oid, &ifreq, &len, NULL, 0) == -1) { -+ g_free (freq_oid); -+ return FALSE; -+ } -+ -+ ifreq *= 1000; -+ -+ if (ifreq == fmax) -+ governor = g_strdup ("performance"); -+ else if (ifreq == fmin) -+ governor = g_strdup ("economy"); -+ else -+ governor = g_strdup ("userspace"); -+ -+ g_object_set (G_OBJECT (monitor), -+ "online", TRUE, -+ "governor", governor, -+ "frequency", ifreq, -+ "max-frequency", fmax, -+ NULL); -+ -+ return TRUE; -+} -+ -+static GList * -+cpufreq_monitor_sysctl_get_available_frequencies (CPUFreqMonitor *monitor) -+{ -+ gchar *levels_oid, *levels; -+ gchar **levelsp, **l; -+ GList *list = NULL; -+ gint mib[4]; -+ guint mon_cpu; -+ size_t len; -+ -+ g_object_get (G_OBJECT (monitor), "cpu", &mon_cpu, NULL); -+ -+ levels_oid = g_strdup_printf ("dev.cpu.%d.freq_levels", -+ 0); -+ len = 4; -+ sysctlnametomib (levels_oid, mib, &len); -+ len = sizeof (levels); -+ g_free (levels_oid); -+ -+ if (sysctl (mib, 4, NULL, &len, NULL, 0) == -1) -+ return NULL; -+ -+ levels = g_malloc (len); -+ if (sysctl (mib, 4, levels, &len, NULL, 0) == -1) -+ return NULL; -+ -+ levelsp = g_strsplit (levels, " ", 0); -+ g_free (levels); -+ -+ for (l = levelsp; l && *l; l++) { -+ gchar **frpr; -+ -+ frpr = g_strsplit (*l, "/", 0); -+ if (frpr && frpr[0] != NULL) { -+ /* sysctl format is %d/%d where the -+ * first %d is the frequency, and -+ * the second is the power used in -+ * mW. -+ */ -+ int freq = atoi (frpr[0]); -+ list = -+ g_list_append (list, g_strdup_printf ("%d", freq * 1000)); -+ } -+ g_strfreev (frpr); -+ } -+ -+ g_strfreev (levelsp); -+ -+ return (list); -+} -+ -+static GList * -+cpufreq_monitor_sysctl_get_available_governors (CPUFreqMonitor *monitor) -+{ -+ GList *list = NULL; -+ -+ list = g_list_prepend (list, g_strdup ("performance")); -+ list = g_list_prepend (list, g_strdup ("userspace")); -+ list = g_list_prepend (list, g_strdup ("economy")); -+ -+ return list; -+} -+#endif /* __FreeBSD__ */ ---- cpufreq/src/Makefile.in.orig 2007-07-30 21:06:58.000000000 -0400 -+++ cpufreq/src/Makefile.in 2007-07-30 21:06:58.000000000 -0400 -@@ -61,7 +61,8 @@ am__cpufreq_applet_SOURCES_DIST = cpufre - cpufreq-monitor-procfs.h cpufreq-monitor-sysfs.c \ - cpufreq-monitor-sysfs.h cpufreq-monitor-libcpufreq.c \ - cpufreq-monitor-libcpufreq.h cpufreq-monitor-cpuinfo.c \ -- cpufreq-monitor-cpuinfo.h -+ cpufreq-monitor-cpuinfo.h cpufreq-monitor-sysctl.c \ -+ cpufreq-monitor-sysctl.h - @HAVE_LIBCPUFREQ_TRUE@am__objects_1 = \ - @HAVE_LIBCPUFREQ_TRUE@ cpufreq-monitor-libcpufreq.$(OBJEXT) - am_cpufreq_applet_OBJECTS = cpufreq-applet.$(OBJEXT) \ -@@ -70,7 +71,8 @@ am_cpufreq_applet_OBJECTS = cpufreq-appl - cpufreq-monitor-factory.$(OBJEXT) \ - cpufreq-monitor-procfs.$(OBJEXT) \ - cpufreq-monitor-sysfs.$(OBJEXT) $(am__objects_1) \ -- cpufreq-monitor-cpuinfo.$(OBJEXT) -+ cpufreq-monitor-cpuinfo.$(OBJEXT) \ -+ cpufreq-monitor-sysctl.$(OBJEXT) - cpufreq_applet_OBJECTS = $(am_cpufreq_applet_OBJECTS) - am__DEPENDENCIES_1 = - cpufreq_applet_DEPENDENCIES = $(am__DEPENDENCIES_1) \ -@@ -402,6 +404,7 @@ cpufreq_applet_SOURCES = \ - cpufreq-monitor.c cpufreq-monitor.h \ - cpufreq-monitor-factory.c cpufreq-monitor-factory.h \ - cpufreq-monitor-procfs.c cpufreq-monitor-procfs.h \ -+ cpufreq-monitor-sysctl.c cpufreq-monitor-sysctl.h \ - cpufreq-monitor-sysfs.c cpufreq-monitor-sysfs.h \ - $(cpufreq_files) \ - cpufreq-monitor-cpuinfo.c cpufreq-monitor-cpuinfo.h -@@ -487,6 +490,7 @@ distclean-compile: - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-factory.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-libcpufreq.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-procfs.Po@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-sysctl.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-sysfs.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-popup.Po@am__quote@ diff --git a/x11/gnome-applets/files/patch-cpufreq-selector-freebsd b/x11/gnome-applets/files/patch-cpufreq-selector-freebsd deleted file mode 100644 index 734bd6c74..000000000 --- a/x11/gnome-applets/files/patch-cpufreq-selector-freebsd +++ /dev/null @@ -1,228 +0,0 @@ ---- cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.h.orig Sat Jun 24 01:52:35 2006 -+++ cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.h Sat Jun 24 02:13:05 2006 -@@ -0,0 +1,53 @@ -+/* -+ * Copyright (C) 2001, 2002 Free Software Foundation -+ * -+ * This library is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU General Public -+ * License as published by the Free Software Foundation; either -+ * version 2 of the License, or (at your option) any later version. -+ * -+ * This library is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * General Public License for more details. -+ * -+ * You should have received a copy of the GNU General Public -+ * License along with this library; if not, write to the Free -+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ * -+ * Authors : Joe Marcus Clarke <marcus@FreeBSD.org> -+ */ -+ -+#ifndef __CPUFREQ_SELECTOR_SYSCTL_H__ -+#define __CPUFREQ_SELECTOR_SYSCTL_H__ -+ -+#include <glib-object.h> -+ -+#include "cpufreq-selector.h" -+ -+G_BEGIN_DECLS -+ -+#define CPUFREQ_TYPE_SELECTOR_SYSCTL (cpufreq_selector_sysctl_get_type ()) -+#define CPUFREQ_SELECTOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfs)) -+#define CPUFREQ_SELECTOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfsClass)) -+#define CPUFREQ_IS_SELECTOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL)) -+#define CPUFREQ_IS_SELECTOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CPUFREQ_TYPE_SELECTOR_SYSCTL)) -+#define CPUFREQ_SELECTOR_SYSCTL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfsClass)) -+ -+typedef struct _CPUFreqSelectorSysctl CPUFreqSelectorSysctl; -+typedef struct _CPUFreqSelectorSysctlClass CPUFreqSelectorSysctlClass; -+ -+struct _CPUFreqSelectorSysctl { -+ CPUFreqSelector parent; -+}; -+ -+struct _CPUFreqSelectorSysctlClass { -+ CPUFreqSelectorClass parent_class; -+}; -+ -+GType cpufreq_selector_sysctl_get_type (void) G_GNUC_CONST; -+CPUFreqSelector *cpufreq_selector_sysctl_new (guint cpu); -+ -+G_END_DECLS -+ -+#endif /* __CPUFREQ_SELECTOR_SYSCTL_H__ */ ---- cpufreq/src/cpufreq-selector/main.c.orig Sat Jun 17 22:13:41 2006 -+++ cpufreq/src/cpufreq-selector/main.c Sat Jun 24 02:15:02 2006 -@@ -17,6 +17,7 @@ - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - * Authors : Carlos García Campos <carlosgc@gnome.org> -+ * Joe Marcus Clarke <marcus@FreeBSD.org> - */ - - #ifdef HAVE_CONFIG_H -@@ -33,6 +34,9 @@ - #ifdef HAVE_LIBCPUFREQ - #include "cpufreq-selector-libcpufreq.h" - #endif -+#ifdef __FreeBSD__ -+#include "cpufreq-selector-sysctl.h" -+#endif /* __FreeBSD__ */ - - static gint cpu = 0; - static gchar *governor = NULL; -@@ -51,6 +55,9 @@ main (gint argc, gchar **argv) - CPUFreqSelector *selector; - GOptionContext *context; - GError *error = NULL; -+#ifdef __FreeBSD__ -+ size_t len; -+#endif - - if (geteuid () != 0) { - g_printerr ("You must be root\n"); -@@ -83,10 +90,15 @@ main (gint argc, gchar **argv) - #ifdef HAVE_LIBCPUFREQ - selector = cpufreq_selector_libcpufreq_new (cpu); - #else -+#ifndef __FreeBSD__ - if (g_file_test ("/sys/devices/system/cpu/cpu0/cpufreq", G_FILE_TEST_EXISTS)) { /* 2.6 kernel */ - selector = cpufreq_selector_sysfs_new (cpu); - } else if (g_file_test ("/proc/cpufreq", G_FILE_TEST_EXISTS)) { /* 2.4 kernel */ - selector = cpufreq_selector_procfs_new (cpu); -+#else -+ if (sysctlbyname ("dev.cpu.0.freq", NULL, &len, NULL, 0) == 0) { -+ selector = cpufreq_selector_sysctl_new (cpu); -+#endif /* __FreeBSD__ */ - } else { - g_printerr ("No cpufreq support\n"); - return 1; ---- cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.c.orig Wed Jul 26 01:34:18 2006 -+++ cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.c Wed Jul 26 01:42:00 2006 -@@ -0,0 +1,87 @@ -+/* -+ * Copyright (C) 2001, 2002 Free Software Foundation -+ * -+ * This library is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU General Public -+ * License as published by the Free Software Foundation; either -+ * version 2 of the License, or (at your option) any later version. -+ * -+ * This library is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * General Public License for more details. -+ * -+ * You should have received a copy of the GNU General Public -+ * License along with this library; if not, write to the Free -+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ * -+ * Authors : Joe Marcus Clarke <marcus@FreeBSD.org> -+ */ -+ -+#include <glib.h> -+#include <stdio.h> -+#include <stdlib.h> -+ -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#include <sys/sysctl.h> -+#endif /* __FreeBSD__ */ -+ -+#include "cpufreq-selector-sysctl.h" -+ -+static void cpufreq_selector_sysctl_init (CPUFreqSelectorSysctl *selector); -+static void cpufreq_selector_sysctl_class_init (CPUFreqSelectorSysctlClass *klass); -+ -+static gboolean cpufreq_selector_sysctl_set_frequency (CPUFreqSelector *selector, guint frequency, GError **error); -+static gboolean cpufreq_selector_sysctl_set_governor (CPUFreqSelector *selector, const gchar *governor, GError **error); -+ -+G_DEFINE_TYPE (CPUFreqSelectorSysctl, cpufreq_selector_sysctl, CPUFREQ_TYPE_SELECTOR) -+ -+static void -+cpufreq_selector_sysctl_init (CPUFreqSelectorSysctl *selector) -+{ -+} -+ -+static void -+cpufreq_selector_sysctl_class_init (CPUFreqSelectorSysctlClass *klass) -+{ -+ CPUFreqSelectorClass *selector_class = CPUFREQ_SELECTOR_CLASS (klass); -+ -+ selector_class->set_frequency = cpufreq_selector_sysctl_set_frequency; -+ selector_class->set_governor = cpufreq_selector_sysctl_set_governor; -+} -+ -+CPUFreqSelector * -+cpufreq_selector_sysctl_new (guint cpu) -+{ -+ CPUFreqSelector *selector; -+ -+ selector = CPUFREQ_SELECTOR (g_object_new (CPUFREQ_TYPE_SELECTOR_SYSCTL, -+ "cpu", cpu, NULL)); -+ -+ return selector; -+} -+ -+static gboolean -+cpufreq_selector_sysctl_set_governor (CPUFreqSelector *selector, const gchar *governor, GError **error) -+{ -+ return TRUE; -+} -+ -+static gboolean -+cpufreq_selector_sysctl_set_frequency (CPUFreqSelector *selector, guint frequency, GError **error) -+{ -+ guint cpu, i; -+ size_t len; -+ gchar *freq_oid; -+ -+ g_object_get (G_OBJECT (selector), "cpu", &cpu, NULL); -+ -+ frequency = (guint) ((gdouble) frequency / 1000); /* Convert back to MHz*/ -+ freq_oid = g_strdup_printf ("dev.cpu.%d.freq", (gint) 0); -+ -+ sysctlbyname (freq_oid, NULL, &len, &frequency, sizeof (frequency)); -+ g_free (freq_oid); -+ -+ return TRUE; -+} ---- cpufreq/src/cpufreq-selector/Makefile.in.orig 2007-07-30 21:08:35.000000000 -0400 -+++ cpufreq/src/cpufreq-selector/Makefile.in 2007-07-30 21:08:36.000000000 -0400 -@@ -57,13 +57,15 @@ am__cpufreq_selector_SOURCES_DIST = cpuf - cpufreq-selector.h cpufreq-selector-sysfs.c \ - cpufreq-selector-sysfs.h cpufreq-selector-procfs.c \ - cpufreq-selector-procfs.h cpufreq-selector-libcpufreq.c \ -- cpufreq-selector-libcpufreq.h main.c -+ cpufreq-selector-libcpufreq.h main.c \ -+ cpufreq-selector-sysctl.c cpufreq-selector-sysctl.h - @HAVE_LIBCPUFREQ_TRUE@am__objects_1 = \ - @HAVE_LIBCPUFREQ_TRUE@ cpufreq-selector-libcpufreq.$(OBJEXT) - am_cpufreq_selector_OBJECTS = cpufreq-selector.$(OBJEXT) \ - cpufreq-selector-sysfs.$(OBJEXT) \ - cpufreq-selector-procfs.$(OBJEXT) $(am__objects_1) \ -- main.$(OBJEXT) -+ main.$(OBJEXT) \ -+ cpufreq-selector-sysctl.$(OBJEXT) - cpufreq_selector_OBJECTS = $(am_cpufreq_selector_OBJECTS) - am__DEPENDENCIES_1 = - cpufreq_selector_DEPENDENCIES = $(am__DEPENDENCIES_1) \ -@@ -381,6 +383,7 @@ cpufreq_selector_SOURCES = \ - cpufreq-selector.c cpufreq-selector.h \ - cpufreq-selector-sysfs.c cpufreq-selector-sysfs.h \ - cpufreq-selector-procfs.c cpufreq-selector-procfs.h \ -+ cpufreq-selector-sysctl.c cpufreq-selector-sysctl.h \ - $(cpufreq_files) \ - main.c - -@@ -462,6 +465,7 @@ distclean-compile: - - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector-libcpufreq.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector-procfs.Po@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector-sysctl.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector-sysfs.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ diff --git a/x11/gnome-applets/files/patch-invest-applet_invest_invest-applet.py b/x11/gnome-applets/files/patch-invest-applet_invest_invest-applet.py deleted file mode 100644 index 0dc24164e..000000000 --- a/x11/gnome-applets/files/patch-invest-applet_invest_invest-applet.py +++ /dev/null @@ -1,13 +0,0 @@ ---- invest-applet/invest/invest-applet.py.orig Wed Sep 13 20:42:15 2006 -+++ invest-applet/invest/invest-applet.py Wed Sep 13 20:42:28 2006 -@@ -26,8 +26,8 @@ import invest, invest.applet, invest.def - import gettext, locale - gettext.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) - gettext.textdomain(invest.defs.GETTEXT_PACKAGE) --locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) --locale.textdomain(invest.defs.GETTEXT_PACKAGE) -+#locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) -+#locale.textdomain(invest.defs.GETTEXT_PACKAGE) - gtk.glade.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) - gtk.glade.textdomain(invest.defs.GETTEXT_PACKAGE) - diff --git a/x11/gnome-applets/files/patch-invest-applet_invest_invest-chart b/x11/gnome-applets/files/patch-invest-applet_invest_invest-chart deleted file mode 100644 index 2eddc8154..000000000 --- a/x11/gnome-applets/files/patch-invest-applet_invest_invest-chart +++ /dev/null @@ -1,13 +0,0 @@ ---- invest-applet/invest/invest-chart.orig Wed Sep 13 20:41:18 2006 -+++ invest-applet/invest/invest-chart Wed Sep 13 20:41:33 2006 -@@ -6,8 +6,8 @@ import sys, invest.chart, gtk - import gettext, locale - gettext.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) - gettext.textdomain(invest.defs.GETTEXT_PACKAGE) --locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) --locale.textdomain(invest.defs.GETTEXT_PACKAGE) -+#locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) -+#locale.textdomain(invest.defs.GETTEXT_PACKAGE) - gtk.glade.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) - gtk.glade.textdomain(invest.defs.GETTEXT_PACKAGE) - diff --git a/x11/gnome-applets/files/patch-mixer_applet.c b/x11/gnome-applets/files/patch-mixer_applet.c deleted file mode 100644 index d7c0eb517..000000000 --- a/x11/gnome-applets/files/patch-mixer_applet.c +++ /dev/null @@ -1,11 +0,0 @@ ---- mixer/applet.c.orig Mon Nov 7 09:53:52 2005 -+++ mixer/applet.c Mon Nov 28 01:16:50 2005 -@@ -953,7 +953,7 @@ gnome_volume_applet_adjust_volume (GstMi - - volumes = g_new (gint, track->num_channels); - for (n = 0; n < track->num_channels; n++) -- volumes[n] = lrint (volume); -+ volumes[n] = (int) rint (volume); - gst_mixer_set_volume (mixer, track, volumes); - g_free (volumes); - } diff --git a/x11/gnome-applets/files/patch-modemlights_Makefile.in b/x11/gnome-applets/files/patch-modemlights_Makefile.in deleted file mode 100644 index 874884722..000000000 --- a/x11/gnome-applets/files/patch-modemlights_Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- modemlights/Makefile.in.orig Fri Jan 14 00:08:52 2005 -+++ modemlights/Makefile.in Fri Jan 14 00:09:20 2005 -@@ -319,6 +319,7 @@ - modem_applet_LDADD = \ - $(GNOME_APPLETS_LIBS) \ - $(LIBGLADE_LIBS) \ -+ -lutil \ - $(MODEMLIGHTS_LIBS) - - uidir = $(datadir)/gnome-2.0/ui diff --git a/x11/gnome-applets/pkg-descr b/x11/gnome-applets/pkg-descr deleted file mode 100644 index 5f715cf9a..000000000 --- a/x11/gnome-applets/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Panel applets for the Gnome 2.0 Desktop Environment. - -WWW: http://www.gnome.org/ diff --git a/x11/gnome-applets/pkg-plist b/x11/gnome-applets/pkg-plist deleted file mode 100644 index aab3b345a..000000000 --- a/x11/gnome-applets/pkg-plist +++ /dev/null @@ -1,1626 +0,0 @@ -%%CPUFREQ%%bin/cpufreq-selector -%%PYTHON%%bin/invest-chart -%%BATTERY%%etc/sound/events/battstat_applet.soundlist -include/libgweather/gweather-gconf.h -include/libgweather/gweather-prefs.h -include/libgweather/weather.h -lib/libgweather.a -lib/libgweather.la -lib/libgweather.so -lib/libgweather.so.0 -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/__init__.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/__init__.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/__init__.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/about.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/about.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/about.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/applet.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/applet.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/applet.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/chart.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/chart.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/chart.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/defs.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/defs.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/defs.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/preferences.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/preferences.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/preferences.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/quotes.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/quotes.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/quotes.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/widgets.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/widgets.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/widgets.pyo -libdata/bonobo/servers/GNOME_AccessxStatusApplet.server -%%BATTERY%%libdata/bonobo/servers/GNOME_BattstatApplet.server -libdata/bonobo/servers/GNOME_CDPlayerApplet.server -%%CPUFREQ%%libdata/bonobo/servers/GNOME_CPUFreqApplet.server -libdata/bonobo/servers/GNOME_CharpickerApplet.server -libdata/bonobo/servers/GNOME_DriveMountApplet.server -libdata/bonobo/servers/GNOME_GWeatherApplet_Factory.server -libdata/bonobo/servers/GNOME_GeyesApplet.server -%%PYTHON%%libdata/bonobo/servers/GNOME_GtikApplet.server -libdata/bonobo/servers/GNOME_KeyboardApplet.server -libdata/bonobo/servers/GNOME_MailcheckApplet_Factory.server -libdata/bonobo/servers/GNOME_MiniCommanderApplet.server -libdata/bonobo/servers/GNOME_MixerApplet.server -libdata/bonobo/servers/GNOME_ModemLights.server -libdata/bonobo/servers/GNOME_MultiLoadApplet_Factory.server -libdata/bonobo/servers/GNOME_NullApplet_Factory.server -libdata/bonobo/servers/GNOME_Panel_TrashApplet.server -libdata/bonobo/servers/GNOME_Panel_WirelessApplet.server -libdata/bonobo/servers/GNOME_StickyNotesApplet.server -%%PYTHON%%libdata/bonobo/servers/Invest_Applet.server -libdata/pkgconfig/gweather.pc -libexec/accessx-status-applet -%%BATTERY%%libexec/battstat-applet-2 -libexec/charpick_applet2 -%%CPUFREQ%%libexec/cpufreq-applet -libexec/drivemount_applet2 -libexec/geyes_applet2 -%%COMMANDER%%libexec/gnome-applets/mc-install-default-macros -libexec/gnome-keyboard-applet -libexec/gweather-applet-2 -%%PYTHON%%libexec/invest-applet -%%COMMANDER%%libexec/mini_commander_applet -libexec/mixer_applet2 -libexec/modem_applet -libexec/multiload-applet-2 -libexec/null_applet -libexec/stickynotes_applet -libexec/trashapplet -share/gnome-2.0/ui/GNOME_AccessxApplet.xml -%%BATTERY%%share/gnome-2.0/ui/GNOME_BattstatApplet.xml -%%CPUFREQ%%share/gnome-2.0/ui/GNOME_CPUFreqApplet.xml -share/gnome-2.0/ui/GNOME_CharpickerApplet.xml -share/gnome-2.0/ui/GNOME_DriveMountApplet.xml -share/gnome-2.0/ui/GNOME_GSwitchItApplet.xml -share/gnome-2.0/ui/GNOME_GWeatherApplet.xml -share/gnome-2.0/ui/GNOME_GeyesApplet.xml -%%COMMANDER%%share/gnome-2.0/ui/GNOME_MiniCommanderApplet.xml -share/gnome-2.0/ui/GNOME_MixerApplet.xml -share/gnome-2.0/ui/GNOME_ModemLights.xml -share/gnome-2.0/ui/GNOME_MultiloadApplet.xml -share/gnome-2.0/ui/GNOME_Panel_TrashApplet.xml -share/gnome-2.0/ui/GNOME_StickyNotesApplet.xml -%%PYTHON%%share/gnome-2.0/ui/Invest_Applet.xml -%%DATADIR%%/geyes/Bizarre/Bizarre-eye.png -%%DATADIR%%/geyes/Bizarre/Bizarre-pupil.png -%%DATADIR%%/geyes/Bizarre/config -%%DATADIR%%/geyes/Bloodshot/Bloodshot-eye.png -%%DATADIR%%/geyes/Bloodshot/Bloodshot-pupil.png -%%DATADIR%%/geyes/Bloodshot/config -%%DATADIR%%/geyes/Default-tiny/Default-tiny-eye.png -%%DATADIR%%/geyes/Default-tiny/Default-tiny-pupil.png -%%DATADIR%%/geyes/Default-tiny/config -%%DATADIR%%/geyes/Default/Default-eye.png -%%DATADIR%%/geyes/Default/Default-pupil.png -%%DATADIR%%/geyes/Default/config -%%DATADIR%%/geyes/Horrid/config -%%DATADIR%%/geyes/Horrid/horrid_eye.png -%%DATADIR%%/geyes/Horrid/horrid_pupil.png -%%DATADIR%%/geyes/Tango/config -%%DATADIR%%/geyes/Tango/tango-eye.png -%%DATADIR%%/geyes/Tango/tango-pupil.png -%%BATTERY%%%%DATADIR%%/glade/battstat_applet.glade -%%CPUFREQ%%%%DATADIR%%/glade/cpufreq-preferences.glade -%%PYTHON%%%%DATADIR%%/glade/financialchart.glade -%%DATADIR%%/glade/gswitchit.glade -%%COMMANDER%%%%DATADIR%%/glade/mini-commander.glade -%%DATADIR%%/glade/modemlights.glade -%%PYTHON%%%%DATADIR%%/glade/prefs-dialog.glade -%%DATADIR%%/glade/stickynotes.glade -%%DATADIR%%/glade/trashapplet.glade -%%DATADIR%%/gweather/Locations.xml -%%DATADIR%%/gweather/locations.dtd -%%PYTHON%%%%DATADIR%%/invest-applet/invest-16.png -%%PYTHON%%%%DATADIR%%/invest-applet/invest-button.png -%%PYTHON%%%%DATADIR%%/invest-applet/invest.svg -share/gnome/help/accessx-status/C/accessx-status.xml -share/gnome/help/accessx-status/C/figures/accessx-status-applet.png -share/gnome/help/accessx-status/C/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/C/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/C/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/C/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/C/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/C/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/C/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/C/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/C/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/C/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/C/legal.xml -share/gnome/help/accessx-status/bg/accessx-status.xml -share/gnome/help/accessx-status/bg/figures/accessx-status-applet.png -share/gnome/help/accessx-status/bg/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/bg/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/bg/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/bg/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/bg/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/bg/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/bg/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/bg/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/bg/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/bg/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/ca/accessx-status.xml -share/gnome/help/accessx-status/ca/figures/accessx-status-applet.png -share/gnome/help/accessx-status/ca/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/ca/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/ca/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/ca/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/ca/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/ca/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/ca/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/ca/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/ca/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/ca/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/en_GB/accessx-status.xml -share/gnome/help/accessx-status/en_GB/figures/accessx-status-applet.png -share/gnome/help/accessx-status/en_GB/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/en_GB/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/en_GB/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/en_GB/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/es/accessx-status.xml -share/gnome/help/accessx-status/es/figures/accessx-status-applet.png -share/gnome/help/accessx-status/es/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/es/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/es/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/es/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/es/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/es/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/es/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/es/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/es/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/es/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/fr/accessx-status.xml -share/gnome/help/accessx-status/fr/figures/accessx-status-applet.png -share/gnome/help/accessx-status/fr/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/fr/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/fr/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/fr/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/fr/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/fr/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/fr/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/fr/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/fr/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/fr/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/it/accessx-status.xml -share/gnome/help/accessx-status/it/figures/accessx-status-applet.png -share/gnome/help/accessx-status/it/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/it/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/it/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/it/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/it/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/it/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/it/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/it/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/it/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/it/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/nl/accessx-status.xml -share/gnome/help/accessx-status/nl/figures/accessx-status-applet.png -share/gnome/help/accessx-status/nl/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/nl/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/nl/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/nl/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/nl/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/nl/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/nl/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/nl/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/nl/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/nl/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/oc/accessx-status.xml -share/gnome/help/accessx-status/oc/figures/accessx-status-applet.png -share/gnome/help/accessx-status/oc/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/oc/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/oc/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/oc/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/oc/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/oc/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/oc/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/oc/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/oc/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/oc/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/sv/accessx-status.xml -share/gnome/help/accessx-status/sv/figures/accessx-status-applet.png -share/gnome/help/accessx-status/sv/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/sv/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/sv/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/sv/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/sv/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/sv/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/sv/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/sv/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/sv/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/sv/figures/accessx_sticky-windows-key.png -share/gnome/help/accessx-status/uk/accessx-status.xml -share/gnome/help/accessx-status/uk/figures/accessx-status-applet.png -share/gnome/help/accessx-status/uk/figures/accessx-status-disabled.png -share/gnome/help/accessx-status/uk/figures/accessx_bounce-keys.png -share/gnome/help/accessx-status/uk/figures/accessx_mouse-keys.png -share/gnome/help/accessx-status/uk/figures/accessx_slow-keys.png -share/gnome/help/accessx-status/uk/figures/accessx_sticky-altGr-key.png -share/gnome/help/accessx-status/uk/figures/accessx_sticky-ctrl-key.png -share/gnome/help/accessx-status/uk/figures/accessx_sticky-keys.png -share/gnome/help/accessx-status/uk/figures/accessx_sticky-meta-key.png -share/gnome/help/accessx-status/uk/figures/accessx_sticky-shift-key.png -share/gnome/help/accessx-status/uk/figures/accessx_sticky-windows-key.png -%%BATTERY%%share/gnome/help/battstat/C/battstat.xml -%%BATTERY%%share/gnome/help/battstat/C/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/C/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/C/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/C/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/C/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/C/legal.xml -%%BATTERY%%share/gnome/help/battstat/bg/battstat.xml -%%BATTERY%%share/gnome/help/battstat/bg/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/bg/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/bg/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/bg/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/bg/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/en_GB/battstat.xml -%%BATTERY%%share/gnome/help/battstat/en_GB/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/en_GB/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/en_GB/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/en_GB/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/en_GB/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/es/battstat.xml -%%BATTERY%%share/gnome/help/battstat/es/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/es/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/es/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/es/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/es/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/fr/battstat.xml -%%BATTERY%%share/gnome/help/battstat/fr/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/fr/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/fr/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/fr/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/fr/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/oc/battstat.xml -%%BATTERY%%share/gnome/help/battstat/oc/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/oc/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/oc/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/oc/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/oc/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/pa/battstat.xml -%%BATTERY%%share/gnome/help/battstat/pa/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/pa/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/pa/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/pa/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/pa/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/sv/battstat.xml -%%BATTERY%%share/gnome/help/battstat/sv/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/sv/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/sv/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/sv/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/sv/figures/context-menu.png -%%BATTERY%%share/gnome/help/battstat/uk/battstat.xml -%%BATTERY%%share/gnome/help/battstat/uk/figures/battstat-applet-expanded.png -%%BATTERY%%share/gnome/help/battstat/uk/figures/battstat-applet.png -%%BATTERY%%share/gnome/help/battstat/uk/figures/battstat-credits-hal.png -%%BATTERY%%share/gnome/help/battstat/uk/figures/battstat-preferences.png -%%BATTERY%%share/gnome/help/battstat/uk/figures/context-menu.png -share/gnome/help/char-palette/C/char-palette.xml -share/gnome/help/char-palette/C/figures/charpalette_applet.png -share/gnome/help/char-palette/C/figures/charpalette_chargroup.png -share/gnome/help/char-palette/C/figures/charpick-preferences.png -share/gnome/help/char-palette/C/figures/charpick_characters.png -share/gnome/help/char-palette/C/legal.xml -share/gnome/help/char-palette/bg/char-palette.xml -share/gnome/help/char-palette/bg/figures/charpalette_applet.png -share/gnome/help/char-palette/bg/figures/charpalette_chargroup.png -share/gnome/help/char-palette/bg/figures/charpick-preferences.png -share/gnome/help/char-palette/bg/figures/charpick_characters.png -share/gnome/help/char-palette/en_GB/char-palette.xml -share/gnome/help/char-palette/en_GB/figures/charpalette_applet.png -share/gnome/help/char-palette/en_GB/figures/charpalette_chargroup.png -share/gnome/help/char-palette/en_GB/figures/charpick-preferences.png -share/gnome/help/char-palette/en_GB/figures/charpick_characters.png -share/gnome/help/char-palette/es/char-palette.xml -share/gnome/help/char-palette/es/figures/charpalette_applet.png -share/gnome/help/char-palette/es/figures/charpalette_chargroup.png -share/gnome/help/char-palette/es/figures/charpick-preferences.png -share/gnome/help/char-palette/es/figures/charpick_characters.png -share/gnome/help/char-palette/fr/char-palette.xml -share/gnome/help/char-palette/fr/figures/charpalette_applet.png -share/gnome/help/char-palette/fr/figures/charpalette_chargroup.png -share/gnome/help/char-palette/fr/figures/charpick-preferences.png -share/gnome/help/char-palette/fr/figures/charpick_characters.png -share/gnome/help/char-palette/it/char-palette.xml -share/gnome/help/char-palette/it/figures/charpalette_applet.png -share/gnome/help/char-palette/it/figures/charpalette_chargroup.png -share/gnome/help/char-palette/it/figures/charpick-preferences.png -share/gnome/help/char-palette/it/figures/charpick_characters.png -share/gnome/help/char-palette/nl/char-palette.xml -share/gnome/help/char-palette/nl/figures/charpalette_applet.png -share/gnome/help/char-palette/nl/figures/charpalette_chargroup.png -share/gnome/help/char-palette/nl/figures/charpick-preferences.png -share/gnome/help/char-palette/nl/figures/charpick_characters.png -share/gnome/help/char-palette/oc/char-palette.xml -share/gnome/help/char-palette/oc/figures/charpalette_applet.png -share/gnome/help/char-palette/oc/figures/charpalette_chargroup.png -share/gnome/help/char-palette/oc/figures/charpick-preferences.png -share/gnome/help/char-palette/oc/figures/charpick_characters.png -share/gnome/help/char-palette/pt_BR/char-palette.xml -share/gnome/help/char-palette/pt_BR/figures/charpalette_applet.png -share/gnome/help/char-palette/pt_BR/figures/charpalette_chargroup.png -share/gnome/help/char-palette/pt_BR/figures/charpick-preferences.png -share/gnome/help/char-palette/pt_BR/figures/charpick_characters.png -share/gnome/help/char-palette/ru/char-palette.xml -share/gnome/help/char-palette/ru/figures/charpalette_applet.png -share/gnome/help/char-palette/ru/figures/charpalette_chargroup.png -share/gnome/help/char-palette/ru/figures/charpick-preferences.png -share/gnome/help/char-palette/ru/figures/charpick_characters.png -share/gnome/help/char-palette/sv/char-palette.xml -share/gnome/help/char-palette/sv/figures/charpalette_applet.png -share/gnome/help/char-palette/sv/figures/charpalette_chargroup.png -share/gnome/help/char-palette/sv/figures/charpick-preferences.png -share/gnome/help/char-palette/sv/figures/charpick_characters.png -share/gnome/help/char-palette/uk/char-palette.xml -share/gnome/help/char-palette/uk/figures/charpalette_applet.png -share/gnome/help/char-palette/uk/figures/charpalette_chargroup.png -share/gnome/help/char-palette/uk/figures/charpick-preferences.png -share/gnome/help/char-palette/uk/figures/charpick_characters.png -%%COMMANDER%%share/gnome/help/command-line/C/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/C/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/C/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/C/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/C/legal.xml -%%COMMANDER%%share/gnome/help/command-line/en_GB/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/en_GB/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/en_GB/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/en_GB/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/es/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/es/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/es/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/es/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/fr/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/fr/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/fr/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/fr/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/oc/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/oc/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/oc/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/oc/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/pt_BR/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/pt_BR/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/pt_BR/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/pt_BR/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/sv/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/sv/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/sv/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/sv/figures/prefs.png -%%COMMANDER%%share/gnome/help/command-line/uk/command-line.xml -%%COMMANDER%%share/gnome/help/command-line/uk/figures/command-line.png -%%COMMANDER%%share/gnome/help/command-line/uk/figures/prefs-macros.png -%%COMMANDER%%share/gnome/help/command-line/uk/figures/prefs.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/legal.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/cpufreq-applet.xml -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-100.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-25.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-50.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-75.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet-preferences-smp.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet-preferences.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet-selector-both.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet-selector.png -%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet.png -share/gnome/help/drivemount/C/drivemount.xml -share/gnome/help/drivemount/C/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/C/figures/drivemount-applet_example.png -share/gnome/help/drivemount/C/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/C/figures/drivemount-applet_open.png -share/gnome/help/drivemount/C/figures/drivemount-applet_status.png -share/gnome/help/drivemount/C/legal.xml -share/gnome/help/drivemount/en_GB/drivemount.xml -share/gnome/help/drivemount/en_GB/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/en_GB/figures/drivemount-applet_example.png -share/gnome/help/drivemount/en_GB/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/en_GB/figures/drivemount-applet_open.png -share/gnome/help/drivemount/en_GB/figures/drivemount-applet_status.png -share/gnome/help/drivemount/es/drivemount.xml -share/gnome/help/drivemount/es/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/es/figures/drivemount-applet_example.png -share/gnome/help/drivemount/es/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/es/figures/drivemount-applet_open.png -share/gnome/help/drivemount/es/figures/drivemount-applet_status.png -share/gnome/help/drivemount/fr/drivemount.xml -share/gnome/help/drivemount/fr/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/fr/figures/drivemount-applet_example.png -share/gnome/help/drivemount/fr/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/fr/figures/drivemount-applet_open.png -share/gnome/help/drivemount/fr/figures/drivemount-applet_status.png -share/gnome/help/drivemount/it/drivemount.xml -share/gnome/help/drivemount/it/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/it/figures/drivemount-applet_example.png -share/gnome/help/drivemount/it/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/it/figures/drivemount-applet_open.png -share/gnome/help/drivemount/it/figures/drivemount-applet_status.png -share/gnome/help/drivemount/oc/drivemount.xml -share/gnome/help/drivemount/oc/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/oc/figures/drivemount-applet_example.png -share/gnome/help/drivemount/oc/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/oc/figures/drivemount-applet_open.png -share/gnome/help/drivemount/oc/figures/drivemount-applet_status.png -share/gnome/help/drivemount/pa/drivemount.xml -share/gnome/help/drivemount/pa/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/pa/figures/drivemount-applet_example.png -share/gnome/help/drivemount/pa/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/pa/figures/drivemount-applet_open.png -share/gnome/help/drivemount/pa/figures/drivemount-applet_status.png -share/gnome/help/drivemount/ru/drivemount.xml -share/gnome/help/drivemount/ru/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/ru/figures/drivemount-applet_example.png -share/gnome/help/drivemount/ru/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/ru/figures/drivemount-applet_open.png -share/gnome/help/drivemount/ru/figures/drivemount-applet_status.png -share/gnome/help/drivemount/sv/drivemount.xml -share/gnome/help/drivemount/sv/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/sv/figures/drivemount-applet_example.png -share/gnome/help/drivemount/sv/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/sv/figures/drivemount-applet_open.png -share/gnome/help/drivemount/sv/figures/drivemount-applet_status.png -share/gnome/help/drivemount/uk/drivemount.xml -share/gnome/help/drivemount/uk/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/uk/figures/drivemount-applet_example.png -share/gnome/help/drivemount/uk/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/uk/figures/drivemount-applet_open.png -share/gnome/help/drivemount/uk/figures/drivemount-applet_status.png -share/gnome/help/drivemount/zh_CN/drivemount.xml -share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_eject.png -share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_example.png -share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_mount.png -share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_open.png -share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_status.png -share/gnome/help/geyes/C/figures/geyes_applet.png -share/gnome/help/geyes/C/geyes.xml -share/gnome/help/geyes/C/legal.xml -share/gnome/help/geyes/bg/figures/geyes_applet.png -share/gnome/help/geyes/bg/geyes.xml -share/gnome/help/geyes/ca/figures/geyes_applet.png -share/gnome/help/geyes/ca/geyes.xml -share/gnome/help/geyes/en_GB/figures/geyes_applet.png -share/gnome/help/geyes/en_GB/geyes.xml -share/gnome/help/geyes/es/figures/geyes_applet.png -share/gnome/help/geyes/es/geyes.xml -share/gnome/help/geyes/fr/figures/geyes_applet.png -share/gnome/help/geyes/fr/geyes.xml -share/gnome/help/geyes/it/figures/geyes_applet.png -share/gnome/help/geyes/it/geyes.xml -share/gnome/help/geyes/oc/figures/geyes_applet.png -share/gnome/help/geyes/oc/geyes.xml -share/gnome/help/geyes/ru/figures/geyes_applet.png -share/gnome/help/geyes/ru/geyes.xml -share/gnome/help/geyes/sv/figures/geyes_applet.png -share/gnome/help/geyes/sv/geyes.xml -share/gnome/help/geyes/uk/figures/geyes_applet.png -share/gnome/help/geyes/uk/geyes.xml -share/gnome/help/gswitchit/C/gswitchit.xml -share/gnome/help/gswitchit/C/legal.xml -share/gnome/help/gswitchit/el/gswitchit.xml -share/gnome/help/gswitchit/en_GB/gswitchit.xml -share/gnome/help/gswitchit/es/gswitchit.xml -share/gnome/help/gswitchit/fr/gswitchit.xml -share/gnome/help/gswitchit/oc/gswitchit.xml -share/gnome/help/gswitchit/ru/gswitchit.xml -share/gnome/help/gswitchit/sv/gswitchit.xml -share/gnome/help/gswitchit/uk/gswitchit.xml -share/gnome/help/gweather/C/figures/gweather-details.png -share/gnome/help/gweather/C/figures/gweather-menu-prefs.png -share/gnome/help/gweather/C/figures/gweather-prefs-general.png -share/gnome/help/gweather/C/figures/gweather-prefs-locations.png -share/gnome/help/gweather/C/figures/gweather_applet.png -share/gnome/help/gweather/C/figures/stock_weather-cloudy.png -share/gnome/help/gweather/C/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/C/figures/stock_weather-fog.png -share/gnome/help/gweather/C/figures/stock_weather-night-clear.png -share/gnome/help/gweather/C/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/C/figures/stock_weather-showers.png -share/gnome/help/gweather/C/figures/stock_weather-snow.png -share/gnome/help/gweather/C/figures/stock_weather-storm.png -share/gnome/help/gweather/C/figures/stock_weather-sunny.png -share/gnome/help/gweather/C/gweather.xml -share/gnome/help/gweather/C/legal.xml -share/gnome/help/gweather/en_GB/figures/gweather-details.png -share/gnome/help/gweather/en_GB/figures/gweather-menu-prefs.png -share/gnome/help/gweather/en_GB/figures/gweather-prefs-general.png -share/gnome/help/gweather/en_GB/figures/gweather-prefs-locations.png -share/gnome/help/gweather/en_GB/figures/gweather_applet.png -share/gnome/help/gweather/en_GB/figures/stock_weather-cloudy.png -share/gnome/help/gweather/en_GB/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/en_GB/figures/stock_weather-fog.png -share/gnome/help/gweather/en_GB/figures/stock_weather-night-clear.png -share/gnome/help/gweather/en_GB/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/en_GB/figures/stock_weather-showers.png -share/gnome/help/gweather/en_GB/figures/stock_weather-snow.png -share/gnome/help/gweather/en_GB/figures/stock_weather-storm.png -share/gnome/help/gweather/en_GB/figures/stock_weather-sunny.png -share/gnome/help/gweather/en_GB/gweather.xml -share/gnome/help/gweather/es/figures/gweather-details.png -share/gnome/help/gweather/es/figures/gweather-menu-prefs.png -share/gnome/help/gweather/es/figures/gweather-prefs-general.png -share/gnome/help/gweather/es/figures/gweather-prefs-locations.png -share/gnome/help/gweather/es/figures/gweather_applet.png -share/gnome/help/gweather/es/figures/stock_weather-cloudy.png -share/gnome/help/gweather/es/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/es/figures/stock_weather-fog.png -share/gnome/help/gweather/es/figures/stock_weather-night-clear.png -share/gnome/help/gweather/es/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/es/figures/stock_weather-showers.png -share/gnome/help/gweather/es/figures/stock_weather-snow.png -share/gnome/help/gweather/es/figures/stock_weather-storm.png -share/gnome/help/gweather/es/figures/stock_weather-sunny.png -share/gnome/help/gweather/es/gweather.xml -share/gnome/help/gweather/fr/figures/gweather-details.png -share/gnome/help/gweather/fr/figures/gweather-menu-prefs.png -share/gnome/help/gweather/fr/figures/gweather-prefs-general.png -share/gnome/help/gweather/fr/figures/gweather-prefs-locations.png -share/gnome/help/gweather/fr/figures/gweather_applet.png -share/gnome/help/gweather/fr/figures/stock_weather-cloudy.png -share/gnome/help/gweather/fr/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/fr/figures/stock_weather-fog.png -share/gnome/help/gweather/fr/figures/stock_weather-night-clear.png -share/gnome/help/gweather/fr/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/fr/figures/stock_weather-showers.png -share/gnome/help/gweather/fr/figures/stock_weather-snow.png -share/gnome/help/gweather/fr/figures/stock_weather-storm.png -share/gnome/help/gweather/fr/figures/stock_weather-sunny.png -share/gnome/help/gweather/fr/gweather.xml -share/gnome/help/gweather/nl/figures/gweather-details.png -share/gnome/help/gweather/nl/figures/gweather-menu-prefs.png -share/gnome/help/gweather/nl/figures/gweather-prefs-general.png -share/gnome/help/gweather/nl/figures/gweather-prefs-locations.png -share/gnome/help/gweather/nl/figures/gweather_applet.png -share/gnome/help/gweather/nl/figures/stock_weather-cloudy.png -share/gnome/help/gweather/nl/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/nl/figures/stock_weather-fog.png -share/gnome/help/gweather/nl/figures/stock_weather-night-clear.png -share/gnome/help/gweather/nl/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/nl/figures/stock_weather-showers.png -share/gnome/help/gweather/nl/figures/stock_weather-snow.png -share/gnome/help/gweather/nl/figures/stock_weather-storm.png -share/gnome/help/gweather/nl/figures/stock_weather-sunny.png -share/gnome/help/gweather/nl/gweather.xml -share/gnome/help/gweather/oc/figures/gweather-details.png -share/gnome/help/gweather/oc/figures/gweather-menu-prefs.png -share/gnome/help/gweather/oc/figures/gweather-prefs-general.png -share/gnome/help/gweather/oc/figures/gweather-prefs-locations.png -share/gnome/help/gweather/oc/figures/gweather_applet.png -share/gnome/help/gweather/oc/figures/stock_weather-cloudy.png -share/gnome/help/gweather/oc/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/oc/figures/stock_weather-fog.png -share/gnome/help/gweather/oc/figures/stock_weather-night-clear.png -share/gnome/help/gweather/oc/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/oc/figures/stock_weather-showers.png -share/gnome/help/gweather/oc/figures/stock_weather-snow.png -share/gnome/help/gweather/oc/figures/stock_weather-storm.png -share/gnome/help/gweather/oc/figures/stock_weather-sunny.png -share/gnome/help/gweather/oc/gweather.xml -share/gnome/help/gweather/pa/figures/gweather-details.png -share/gnome/help/gweather/pa/figures/gweather-menu-prefs.png -share/gnome/help/gweather/pa/figures/gweather-prefs-general.png -share/gnome/help/gweather/pa/figures/gweather-prefs-locations.png -share/gnome/help/gweather/pa/figures/gweather_applet.png -share/gnome/help/gweather/pa/figures/stock_weather-cloudy.png -share/gnome/help/gweather/pa/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/pa/figures/stock_weather-fog.png -share/gnome/help/gweather/pa/figures/stock_weather-night-clear.png -share/gnome/help/gweather/pa/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/pa/figures/stock_weather-showers.png -share/gnome/help/gweather/pa/figures/stock_weather-snow.png -share/gnome/help/gweather/pa/figures/stock_weather-storm.png -share/gnome/help/gweather/pa/figures/stock_weather-sunny.png -share/gnome/help/gweather/pa/gweather.xml -share/gnome/help/gweather/sv/figures/gweather-details.png -share/gnome/help/gweather/sv/figures/gweather-menu-prefs.png -share/gnome/help/gweather/sv/figures/gweather-prefs-general.png -share/gnome/help/gweather/sv/figures/gweather-prefs-locations.png -share/gnome/help/gweather/sv/figures/gweather_applet.png -share/gnome/help/gweather/sv/figures/stock_weather-cloudy.png -share/gnome/help/gweather/sv/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/sv/figures/stock_weather-fog.png -share/gnome/help/gweather/sv/figures/stock_weather-night-clear.png -share/gnome/help/gweather/sv/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/sv/figures/stock_weather-showers.png -share/gnome/help/gweather/sv/figures/stock_weather-snow.png -share/gnome/help/gweather/sv/figures/stock_weather-storm.png -share/gnome/help/gweather/sv/figures/stock_weather-sunny.png -share/gnome/help/gweather/sv/gweather.xml -share/gnome/help/gweather/uk/figures/gweather-details.png -share/gnome/help/gweather/uk/figures/gweather-menu-prefs.png -share/gnome/help/gweather/uk/figures/gweather-prefs-general.png -share/gnome/help/gweather/uk/figures/gweather-prefs-locations.png -share/gnome/help/gweather/uk/figures/gweather_applet.png -share/gnome/help/gweather/uk/figures/stock_weather-cloudy.png -share/gnome/help/gweather/uk/figures/stock_weather-few-clouds.png -share/gnome/help/gweather/uk/figures/stock_weather-fog.png -share/gnome/help/gweather/uk/figures/stock_weather-night-clear.png -share/gnome/help/gweather/uk/figures/stock_weather-night-few-clouds.png -share/gnome/help/gweather/uk/figures/stock_weather-showers.png -share/gnome/help/gweather/uk/figures/stock_weather-snow.png -share/gnome/help/gweather/uk/figures/stock_weather-storm.png -share/gnome/help/gweather/uk/figures/stock_weather-sunny.png -share/gnome/help/gweather/uk/gweather.xml -share/gnome/help/mixer_applet2/C/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/C/legal.xml -share/gnome/help/mixer_applet2/C/mixer_applet2.xml -share/gnome/help/mixer_applet2/ca/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/ca/mixer_applet2.xml -share/gnome/help/mixer_applet2/en_GB/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/en_GB/mixer_applet2.xml -share/gnome/help/mixer_applet2/es/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/es/mixer_applet2.xml -share/gnome/help/mixer_applet2/fr/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/fr/mixer_applet2.xml -share/gnome/help/mixer_applet2/it/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/it/mixer_applet2.xml -share/gnome/help/mixer_applet2/oc/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/oc/mixer_applet2.xml -share/gnome/help/mixer_applet2/pa/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/pa/mixer_applet2.xml -share/gnome/help/mixer_applet2/ru/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/ru/mixer_applet2.xml -share/gnome/help/mixer_applet2/sv/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/sv/mixer_applet2.xml -share/gnome/help/mixer_applet2/uk/figures/volumecontrol_applet.png -share/gnome/help/mixer_applet2/uk/mixer_applet2.xml -share/gnome/help/multiload/C/figures/multiload-preferences.png -share/gnome/help/multiload/C/figures/system-monitor-applet_window.png -share/gnome/help/multiload/C/figures/system_monitor.png -share/gnome/help/multiload/C/legal.xml -share/gnome/help/multiload/C/multiload.xml -share/gnome/help/multiload/ca/figures/multiload-preferences.png -share/gnome/help/multiload/ca/figures/system-monitor-applet_window.png -share/gnome/help/multiload/ca/figures/system_monitor.png -share/gnome/help/multiload/ca/multiload.xml -share/gnome/help/multiload/en_GB/figures/multiload-preferences.png -share/gnome/help/multiload/en_GB/figures/system-monitor-applet_window.png -share/gnome/help/multiload/en_GB/figures/system_monitor.png -share/gnome/help/multiload/en_GB/multiload.xml -share/gnome/help/multiload/es/figures/multiload-preferences.png -share/gnome/help/multiload/es/figures/system-monitor-applet_window.png -share/gnome/help/multiload/es/figures/system_monitor.png -share/gnome/help/multiload/es/multiload.xml -share/gnome/help/multiload/fr/figures/multiload-preferences.png -share/gnome/help/multiload/fr/figures/system-monitor-applet_window.png -share/gnome/help/multiload/fr/figures/system_monitor.png -share/gnome/help/multiload/fr/multiload.xml -share/gnome/help/multiload/oc/figures/multiload-preferences.png -share/gnome/help/multiload/oc/figures/system-monitor-applet_window.png -share/gnome/help/multiload/oc/figures/system_monitor.png -share/gnome/help/multiload/oc/multiload.xml -share/gnome/help/multiload/pa/figures/multiload-preferences.png -share/gnome/help/multiload/pa/figures/system-monitor-applet_window.png -share/gnome/help/multiload/pa/figures/system_monitor.png -share/gnome/help/multiload/pa/multiload.xml -share/gnome/help/multiload/ru/figures/multiload-preferences.png -share/gnome/help/multiload/ru/figures/system-monitor-applet_window.png -share/gnome/help/multiload/ru/figures/system_monitor.png -share/gnome/help/multiload/ru/multiload.xml -share/gnome/help/multiload/sv/figures/multiload-preferences.png -share/gnome/help/multiload/sv/figures/system-monitor-applet_window.png -share/gnome/help/multiload/sv/figures/system_monitor.png -share/gnome/help/multiload/sv/multiload.xml -share/gnome/help/multiload/uk/figures/multiload-preferences.png -share/gnome/help/multiload/uk/figures/system-monitor-applet_window.png -share/gnome/help/multiload/uk/figures/system_monitor.png -share/gnome/help/multiload/uk/multiload.xml -share/gnome/help/stickynotes_applet/C/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/C/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/C/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/C/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/C/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/C/legal.xml -share/gnome/help/stickynotes_applet/C/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/en_GB/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/en_GB/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/en_GB/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/en_GB/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/en_GB/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/en_GB/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/es/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/es/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/es/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/es/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/es/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/es/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/fr/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/fr/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/fr/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/fr/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/fr/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/fr/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/oc/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/oc/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/oc/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/oc/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/oc/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/oc/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/pa/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/pa/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/pa/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/pa/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/pa/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/pa/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/sv/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/sv/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/sv/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/sv/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/sv/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/sv/stickynotes_applet.xml -share/gnome/help/stickynotes_applet/uk/figures/stickynote-right-menu-lock.png -share/gnome/help/stickynotes_applet/uk/figures/stickynote-right-menu-new.png -share/gnome/help/stickynotes_applet/uk/figures/stickynotes-note-prefs.png -share/gnome/help/stickynotes_applet/uk/figures/stickynotes-prefs.png -share/gnome/help/stickynotes_applet/uk/figures/stickynotes_applet.png -share/gnome/help/stickynotes_applet/uk/stickynotes_applet.xml -share/gnome/help/trashapplet/C/figures/trash-applet.png -share/gnome/help/trashapplet/C/legal.xml -share/gnome/help/trashapplet/C/trashapplet.xml -share/gnome/help/trashapplet/en_GB/figures/trash-applet.png -share/gnome/help/trashapplet/en_GB/trashapplet.xml -share/gnome/help/trashapplet/es/figures/trash-applet.png -share/gnome/help/trashapplet/es/trashapplet.xml -share/gnome/help/trashapplet/fr/figures/trash-applet.png -share/gnome/help/trashapplet/fr/trashapplet.xml -share/gnome/help/trashapplet/it/figures/trash-applet.png -share/gnome/help/trashapplet/it/trashapplet.xml -share/gnome/help/trashapplet/nl/figures/trash-applet.png -share/gnome/help/trashapplet/nl/trashapplet.xml -share/gnome/help/trashapplet/oc/figures/trash-applet.png -share/gnome/help/trashapplet/oc/trashapplet.xml -share/gnome/help/trashapplet/pa/figures/trash-applet.png -share/gnome/help/trashapplet/pa/trashapplet.xml -share/gnome/help/trashapplet/ru/figures/trash-applet.png -share/gnome/help/trashapplet/ru/trashapplet.xml -share/gnome/help/trashapplet/sv/figures/trash-applet.png -share/gnome/help/trashapplet/sv/trashapplet.xml -share/gnome/help/trashapplet/uk/figures/trash-applet.png -share/gnome/help/trashapplet/uk/trashapplet.xml -%%CPUFREQ%%share/icons/hicolor/16x16/apps/gnome-cpu-frequency-applet.png -share/icons/hicolor/16x16/apps/gnome-eyes-applet.png -share/icons/hicolor/16x16/apps/gnome-modem-monitor-applet.png -share/icons/hicolor/16x16/apps/gnome-sticky-notes-applet.png -%%CPUFREQ%%share/icons/hicolor/22x22/apps/gnome-cpu-frequency-applet.png -share/icons/hicolor/22x22/apps/gnome-eyes-applet.png -share/icons/hicolor/22x22/apps/gnome-modem-monitor-applet.png -share/icons/hicolor/22x22/apps/gnome-sticky-notes-applet.png -%%CPUFREQ%%share/icons/hicolor/24x24/apps/gnome-cpu-frequency-applet.png -share/icons/hicolor/24x24/apps/gnome-eyes-applet.png -share/icons/hicolor/24x24/apps/gnome-modem-monitor-applet.png -share/icons/hicolor/24x24/apps/gnome-sticky-notes-applet.png -%%CPUFREQ%%share/icons/hicolor/32x32/apps/gnome-cpu-frequency-applet.png -share/icons/hicolor/32x32/apps/gnome-eyes-applet.png -share/icons/hicolor/32x32/apps/gnome-modem-monitor-applet.png -share/icons/hicolor/32x32/apps/gnome-sticky-notes-applet.png -share/icons/hicolor/48x48/apps/ax-applet.png -share/icons/hicolor/48x48/apps/charpick.png -%%COMMANDER%%share/icons/hicolor/48x48/apps/gnome-mini-commander.png -share/icons/hicolor/48x48/apps/gswitchit-applet.png -share/icons/hicolor/48x48/apps/gswitchit-properties-capplet.png -%%CPUFREQ%%share/icons/hicolor/scalable/apps/gnome-cpu-frequency-applet.svg -share/icons/hicolor/scalable/apps/gnome-eyes-applet.svg -share/icons/hicolor/scalable/apps/gnome-modem-monitor-applet.svg -share/icons/hicolor/scalable/apps/gnome-sticky-notes-applet.svg -share/locale/am/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ar/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/as/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/az/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/be/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/be@latin/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/bg/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/bn/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/bs/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ca/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/cs/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/cy/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/da/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/de/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/dz/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/el/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/en_CA/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/en_GB/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_AR/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_CL/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_CO/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_CR/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_DO/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_EC/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_ES/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_GT/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_HN/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_MX/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_NI/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_PA/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_PE/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_PR/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_SV/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_UY/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/es_VE/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/et/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/eu/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/fa/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/fi/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/fr/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ga/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/gl/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/gu/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/he/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/hi/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/hr/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/hu/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/hy/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/id/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/is/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/it/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ja/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ka/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ko/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ku/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ky/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/lt/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/lv/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/mg/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/mk/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ml/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/mn/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/mr/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ms/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/nb/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ne/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/nl/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/nn/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/oc/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/or/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/pa/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/pl/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/pt/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ro/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ru/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/rw/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/si/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/sk/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/sl/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/sq/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/sr/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/sr@Latn/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/sv/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/ta/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/te/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/th/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/tr/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/uk/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/vi/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/wa/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/xh/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gnome-applets-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gnome-applets-2.0.mo -share/omf/accessx-status/accessx-status-C.omf -share/omf/accessx-status/accessx-status-bg.omf -share/omf/accessx-status/accessx-status-ca.omf -share/omf/accessx-status/accessx-status-en_GB.omf -share/omf/accessx-status/accessx-status-es.omf -share/omf/accessx-status/accessx-status-fr.omf -share/omf/accessx-status/accessx-status-it.omf -share/omf/accessx-status/accessx-status-nl.omf -share/omf/accessx-status/accessx-status-oc.omf -share/omf/accessx-status/accessx-status-sv.omf -share/omf/accessx-status/accessx-status-uk.omf -%%BATTERY%%share/omf/battstat/battstat-C.omf -%%BATTERY%%share/omf/battstat/battstat-bg.omf -%%BATTERY%%share/omf/battstat/battstat-en_GB.omf -%%BATTERY%%share/omf/battstat/battstat-es.omf -%%BATTERY%%share/omf/battstat/battstat-fr.omf -%%BATTERY%%share/omf/battstat/battstat-oc.omf -%%BATTERY%%share/omf/battstat/battstat-pa.omf -%%BATTERY%%share/omf/battstat/battstat-sv.omf -%%BATTERY%%share/omf/battstat/battstat-uk.omf -share/omf/char-palette/char-palette-C.omf -share/omf/char-palette/char-palette-bg.omf -share/omf/char-palette/char-palette-en_GB.omf -share/omf/char-palette/char-palette-es.omf -share/omf/char-palette/char-palette-fr.omf -share/omf/char-palette/char-palette-it.omf -share/omf/char-palette/char-palette-nl.omf -share/omf/char-palette/char-palette-oc.omf -share/omf/char-palette/char-palette-pt_BR.omf -share/omf/char-palette/char-palette-ru.omf -share/omf/char-palette/char-palette-sv.omf -share/omf/char-palette/char-palette-uk.omf -%%COMMANDER%%share/omf/command-line/command-line-C.omf -%%COMMANDER%%share/omf/command-line/command-line-en_GB.omf -%%COMMANDER%%share/omf/command-line/command-line-es.omf -%%COMMANDER%%share/omf/command-line/command-line-fr.omf -%%COMMANDER%%share/omf/command-line/command-line-oc.omf -%%COMMANDER%%share/omf/command-line/command-line-pt_BR.omf -%%COMMANDER%%share/omf/command-line/command-line-sv.omf -%%COMMANDER%%share/omf/command-line/command-line-uk.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-C.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-ca.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-en_GB.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-es.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-fr.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-nl.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-oc.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-ru.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-sv.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-uk.omf -%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-zh_CN.omf -share/omf/drivemount/drivemount-C.omf -share/omf/drivemount/drivemount-en_GB.omf -share/omf/drivemount/drivemount-es.omf -share/omf/drivemount/drivemount-fr.omf -share/omf/drivemount/drivemount-it.omf -share/omf/drivemount/drivemount-oc.omf -share/omf/drivemount/drivemount-pa.omf -share/omf/drivemount/drivemount-ru.omf -share/omf/drivemount/drivemount-sv.omf -share/omf/drivemount/drivemount-uk.omf -share/omf/drivemount/drivemount-zh_CN.omf -share/omf/geyes/geyes-C.omf -share/omf/geyes/geyes-bg.omf -share/omf/geyes/geyes-ca.omf -share/omf/geyes/geyes-en_GB.omf -share/omf/geyes/geyes-es.omf -share/omf/geyes/geyes-fr.omf -share/omf/geyes/geyes-it.omf -share/omf/geyes/geyes-oc.omf -share/omf/geyes/geyes-ru.omf -share/omf/geyes/geyes-sv.omf -share/omf/geyes/geyes-uk.omf -share/omf/gswitchit/gswitchit-C.omf -share/omf/gswitchit/gswitchit-el.omf -share/omf/gswitchit/gswitchit-en_GB.omf -share/omf/gswitchit/gswitchit-es.omf -share/omf/gswitchit/gswitchit-fr.omf -share/omf/gswitchit/gswitchit-oc.omf -share/omf/gswitchit/gswitchit-ru.omf -share/omf/gswitchit/gswitchit-sv.omf -share/omf/gswitchit/gswitchit-uk.omf -share/omf/gweather/gweather-C.omf -share/omf/gweather/gweather-en_GB.omf -share/omf/gweather/gweather-es.omf -share/omf/gweather/gweather-fr.omf -share/omf/gweather/gweather-nl.omf -share/omf/gweather/gweather-oc.omf -share/omf/gweather/gweather-pa.omf -share/omf/gweather/gweather-sv.omf -share/omf/gweather/gweather-uk.omf -share/omf/mixer_applet2/mixer_applet2-C.omf -share/omf/mixer_applet2/mixer_applet2-ca.omf -share/omf/mixer_applet2/mixer_applet2-en_GB.omf -share/omf/mixer_applet2/mixer_applet2-es.omf -share/omf/mixer_applet2/mixer_applet2-fr.omf -share/omf/mixer_applet2/mixer_applet2-it.omf -share/omf/mixer_applet2/mixer_applet2-oc.omf -share/omf/mixer_applet2/mixer_applet2-pa.omf -share/omf/mixer_applet2/mixer_applet2-ru.omf -share/omf/mixer_applet2/mixer_applet2-sv.omf -share/omf/mixer_applet2/mixer_applet2-uk.omf -share/omf/multiload/multiload-C.omf -share/omf/multiload/multiload-ca.omf -share/omf/multiload/multiload-en_GB.omf -share/omf/multiload/multiload-es.omf -share/omf/multiload/multiload-fr.omf -share/omf/multiload/multiload-oc.omf -share/omf/multiload/multiload-pa.omf -share/omf/multiload/multiload-ru.omf -share/omf/multiload/multiload-sv.omf -share/omf/multiload/multiload-uk.omf -share/omf/stickynotes_applet/stickynotes_applet-C.omf -share/omf/stickynotes_applet/stickynotes_applet-en_GB.omf -share/omf/stickynotes_applet/stickynotes_applet-es.omf -share/omf/stickynotes_applet/stickynotes_applet-fr.omf -share/omf/stickynotes_applet/stickynotes_applet-oc.omf -share/omf/stickynotes_applet/stickynotes_applet-pa.omf -share/omf/stickynotes_applet/stickynotes_applet-sv.omf -share/omf/stickynotes_applet/stickynotes_applet-uk.omf -share/omf/trashapplet/trashapplet-C.omf -share/omf/trashapplet/trashapplet-en_GB.omf -share/omf/trashapplet/trashapplet-es.omf -share/omf/trashapplet/trashapplet-fr.omf -share/omf/trashapplet/trashapplet-it.omf -share/omf/trashapplet/trashapplet-nl.omf -share/omf/trashapplet/trashapplet-oc.omf -share/omf/trashapplet/trashapplet-pa.omf -share/omf/trashapplet/trashapplet-ru.omf -share/omf/trashapplet/trashapplet-sv.omf -share/omf/trashapplet/trashapplet-uk.omf -share/pixmaps/accessx-status-applet/ax-applet.png -share/pixmaps/accessx-status-applet/ax-bouncekeys.png -share/pixmaps/accessx-status-applet/ax-key-base.png -share/pixmaps/accessx-status-applet/ax-key-inverse.png -share/pixmaps/accessx-status-applet/ax-key-no.png -share/pixmaps/accessx-status-applet/ax-key-none.png -share/pixmaps/accessx-status-applet/ax-key-yes.png -share/pixmaps/accessx-status-applet/ax-slowkeys-no.png -share/pixmaps/accessx-status-applet/ax-slowkeys-pending.png -share/pixmaps/accessx-status-applet/ax-slowkeys-yes.png -share/pixmaps/accessx-status-applet/ax-slowkeys.png -share/pixmaps/accessx-status-applet/mousekeys-base.png -share/pixmaps/accessx-status-applet/mousekeys-default-left.png -share/pixmaps/accessx-status-applet/mousekeys-default-middle.png -share/pixmaps/accessx-status-applet/mousekeys-default-right.png -share/pixmaps/accessx-status-applet/mousekeys-pressed-left.png -share/pixmaps/accessx-status-applet/mousekeys-pressed-middle.png -share/pixmaps/accessx-status-applet/mousekeys-pressed-right.png -share/pixmaps/accessx-status-applet/sticky-alt-latched.png -share/pixmaps/accessx-status-applet/sticky-alt-locked.png -share/pixmaps/accessx-status-applet/sticky-alt-none.png -share/pixmaps/accessx-status-applet/sticky-ctrl-latched.png -share/pixmaps/accessx-status-applet/sticky-ctrl-locked.png -share/pixmaps/accessx-status-applet/sticky-ctrl-none.png -share/pixmaps/accessx-status-applet/sticky-hyper-latched.png -share/pixmaps/accessx-status-applet/sticky-hyper-locked.png -share/pixmaps/accessx-status-applet/sticky-hyper-none.png -share/pixmaps/accessx-status-applet/sticky-meta-latched.png -share/pixmaps/accessx-status-applet/sticky-meta-locked.png -share/pixmaps/accessx-status-applet/sticky-meta-none.png -share/pixmaps/accessx-status-applet/sticky-shift-latched.png -share/pixmaps/accessx-status-applet/sticky-shift-locked.png -share/pixmaps/accessx-status-applet/sticky-shift-none.png -share/pixmaps/accessx-status-applet/sticky-super-latched.png -share/pixmaps/accessx-status-applet/sticky-super-locked.png -share/pixmaps/accessx-status-applet/sticky-super-none.png -%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-100.png -%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-25.png -%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-50.png -%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-75.png -%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-na.png -%%PYTHON%%share/pixmaps/invest-big.png -share/pixmaps/stickynotes/close.png -share/pixmaps/stickynotes/locked.png -share/pixmaps/stickynotes/resize_se.png -share/pixmaps/stickynotes/resize_sw.png -share/pixmaps/stickynotes/unlocked.png -share/xmodmap/base.xml -share/xmodmap/xmodmap.am -share/xmodmap/xmodmap.ar -share/xmodmap/xmodmap.be -share/xmodmap/xmodmap.bg -share/xmodmap/xmodmap.br -share/xmodmap/xmodmap.ch -share/xmodmap/xmodmap.ch_de -share/xmodmap/xmodmap.ch_fr -share/xmodmap/xmodmap.cz -share/xmodmap/xmodmap.de -share/xmodmap/xmodmap.de-apple -share/xmodmap/xmodmap.dk -share/xmodmap/xmodmap.dvorak -share/xmodmap/xmodmap.ee -share/xmodmap/xmodmap.es -share/xmodmap/xmodmap.es_x86 -share/xmodmap/xmodmap.fi -share/xmodmap/xmodmap.fr -share/xmodmap/xmodmap.fr-2 -share/xmodmap/xmodmap.fr_x86 -share/xmodmap/xmodmap.gb -share/xmodmap/xmodmap.gb-102 -share/xmodmap/xmodmap.gb-105 -share/xmodmap/xmodmap.ge_la -share/xmodmap/xmodmap.ge_ru -share/xmodmap/xmodmap.gr -share/xmodmap/xmodmap.hu -share/xmodmap/xmodmap.hu-101-lat1 -share/xmodmap/xmodmap.hu-101-lat2 -share/xmodmap/xmodmap.hu-ibm -share/xmodmap/xmodmap.hu-lat1 -share/xmodmap/xmodmap.hu-sun-lat2 -share/xmodmap/xmodmap.hu.old -share/xmodmap/xmodmap.hu_latin1 -share/xmodmap/xmodmap.hu_x86 -share/xmodmap/xmodmap.il -share/xmodmap/xmodmap.il_phonetic -share/xmodmap/xmodmap.is -share/xmodmap/xmodmap.it -share/xmodmap/xmodmap.jp -share/xmodmap/xmodmap.kr -share/xmodmap/xmodmap.la -share/xmodmap/xmodmap.lt -share/xmodmap/xmodmap.lt_b -share/xmodmap/xmodmap.lt_p -share/xmodmap/xmodmap.mk -share/xmodmap/xmodmap.mn -share/xmodmap/xmodmap.mn-phonet -share/xmodmap/xmodmap.mn-rev -share/xmodmap/xmodmap.mn-uni -share/xmodmap/xmodmap.nl -share/xmodmap/xmodmap.no -share/xmodmap/xmodmap.pl -share/xmodmap/xmodmap.pl2 -share/xmodmap/xmodmap.pt -share/xmodmap/xmodmap.pt-dead -share/xmodmap/xmodmap.qc -share/xmodmap/xmodmap.qc-2 -share/xmodmap/xmodmap.ro -share/xmodmap/xmodmap.ru -share/xmodmap/xmodmap.ru-rev -share/xmodmap/xmodmap.ru_yawerty -share/xmodmap/xmodmap.se -share/xmodmap/xmodmap.sf -share/xmodmap/xmodmap.sg -share/xmodmap/xmodmap.si -share/xmodmap/xmodmap.sk -share/xmodmap/xmodmap.th -share/xmodmap/xmodmap.tr_f -share/xmodmap/xmodmap.tr_q -share/xmodmap/xmodmap.uk -share/xmodmap/xmodmap.uk_x86 -share/xmodmap/xmodmap.us -share/xmodmap/xmodmap.us-101 -share/xmodmap/xmodmap.us-84 -share/xmodmap/xmodmap.us-dec -share/xmodmap/xmodmap.us-ibm -share/xmodmap/xmodmap.us-int -share/xmodmap/xmodmap.us-mac -share/xmodmap/xmodmap.us-sgi-101 -share/xmodmap/xmodmap.us-sun -share/xmodmap/xmodmap.us.old -share/xmodmap/xmodmap.us101A_x86 -share/xmodmap/xmodmap.us_intl -share/xmodmap/xmodmap.yu -@dirrm share/pixmaps/stickynotes -%%CPUFREQ%%@dirrm share/pixmaps/cpufreq-applet -@dirrm share/pixmaps/accessx-status-applet -@dirrm share/omf/trashapplet -@dirrm share/omf/stickynotes_applet -@dirrm share/omf/multiload -@dirrm share/omf/mixer_applet2 -@dirrm share/omf/gweather -@dirrm share/omf/gswitchit -@dirrm share/omf/geyes -@dirrm share/omf/drivemount -%%CPUFREQ%%@dirrm share/omf/cpufreq-applet -%%COMMANDER%%@dirrm share/omf/command-line -@dirrm share/omf/char-palette -%%BATTERY%%@dirrm share/omf/battstat -@dirrm share/omf/accessx-status -@dirrm share/gnome/help/trashapplet/uk/figures -@dirrm share/gnome/help/trashapplet/uk -@dirrm share/gnome/help/trashapplet/sv/figures -@dirrm share/gnome/help/trashapplet/sv -@dirrm share/gnome/help/trashapplet/ru/figures -@dirrm share/gnome/help/trashapplet/ru -@dirrm share/gnome/help/trashapplet/pa/figures -@dirrm share/gnome/help/trashapplet/pa -@dirrm share/gnome/help/trashapplet/oc/figures -@dirrm share/gnome/help/trashapplet/oc -@dirrm share/gnome/help/trashapplet/nl/figures -@dirrm share/gnome/help/trashapplet/nl -@dirrm share/gnome/help/trashapplet/it/figures -@dirrm share/gnome/help/trashapplet/it -@dirrm share/gnome/help/trashapplet/fr/figures -@dirrm share/gnome/help/trashapplet/fr -@dirrm share/gnome/help/trashapplet/es/figures -@dirrm share/gnome/help/trashapplet/es -@dirrm share/gnome/help/trashapplet/en_GB/figures -@dirrm share/gnome/help/trashapplet/en_GB -@dirrm share/gnome/help/trashapplet/C/figures -@dirrm share/gnome/help/trashapplet/C -@dirrm share/gnome/help/trashapplet -@dirrm share/gnome/help/stickynotes_applet/uk/figures -@dirrm share/gnome/help/stickynotes_applet/uk -@dirrm share/gnome/help/stickynotes_applet/sv/figures -@dirrm share/gnome/help/stickynotes_applet/sv -@dirrm share/gnome/help/stickynotes_applet/pa/figures -@dirrm share/gnome/help/stickynotes_applet/pa -@dirrm share/gnome/help/stickynotes_applet/oc/figures -@dirrm share/gnome/help/stickynotes_applet/oc -@dirrm share/gnome/help/stickynotes_applet/fr/figures -@dirrm share/gnome/help/stickynotes_applet/fr -@dirrm share/gnome/help/stickynotes_applet/es/figures -@dirrm share/gnome/help/stickynotes_applet/es -@dirrm share/gnome/help/stickynotes_applet/en_GB/figures -@dirrm share/gnome/help/stickynotes_applet/en_GB -@dirrm share/gnome/help/stickynotes_applet/C/figures -@dirrm share/gnome/help/stickynotes_applet/C -@dirrm share/gnome/help/stickynotes_applet -@dirrm share/gnome/help/multiload/uk/figures -@dirrm share/gnome/help/multiload/uk -@dirrm share/gnome/help/multiload/sv/figures -@dirrm share/gnome/help/multiload/sv -@dirrm share/gnome/help/multiload/ru/figures -@dirrm share/gnome/help/multiload/ru -@dirrm share/gnome/help/multiload/pa/figures -@dirrm share/gnome/help/multiload/pa -@dirrm share/gnome/help/multiload/oc/figures -@dirrm share/gnome/help/multiload/oc -@dirrm share/gnome/help/multiload/fr/figures -@dirrm share/gnome/help/multiload/fr -@dirrm share/gnome/help/multiload/es/figures -@dirrm share/gnome/help/multiload/es -@dirrm share/gnome/help/multiload/en_GB/figures -@dirrm share/gnome/help/multiload/en_GB -@dirrm share/gnome/help/multiload/ca/figures -@dirrm share/gnome/help/multiload/ca -@dirrm share/gnome/help/multiload/C/figures -@dirrm share/gnome/help/multiload/C -@dirrm share/gnome/help/multiload -@dirrm share/gnome/help/mixer_applet2/uk/figures -@dirrm share/gnome/help/mixer_applet2/uk -@dirrm share/gnome/help/mixer_applet2/sv/figures -@dirrm share/gnome/help/mixer_applet2/sv -@dirrm share/gnome/help/mixer_applet2/ru/figures -@dirrm share/gnome/help/mixer_applet2/ru -@dirrm share/gnome/help/mixer_applet2/pa/figures -@dirrm share/gnome/help/mixer_applet2/pa -@dirrm share/gnome/help/mixer_applet2/oc/figures -@dirrm share/gnome/help/mixer_applet2/oc -@dirrm share/gnome/help/mixer_applet2/it/figures -@dirrm share/gnome/help/mixer_applet2/it -@dirrm share/gnome/help/mixer_applet2/fr/figures -@dirrm share/gnome/help/mixer_applet2/fr -@dirrm share/gnome/help/mixer_applet2/es/figures -@dirrm share/gnome/help/mixer_applet2/es -@dirrm share/gnome/help/mixer_applet2/en_GB/figures -@dirrm share/gnome/help/mixer_applet2/en_GB -@dirrm share/gnome/help/mixer_applet2/ca/figures -@dirrm share/gnome/help/mixer_applet2/ca -@dirrm share/gnome/help/mixer_applet2/C/figures -@dirrm share/gnome/help/mixer_applet2/C -@dirrm share/gnome/help/mixer_applet2 -@dirrm share/gnome/help/gweather/uk/figures -@dirrm share/gnome/help/gweather/uk -@dirrm share/gnome/help/gweather/sv/figures -@dirrm share/gnome/help/gweather/sv -@dirrm share/gnome/help/gweather/pa/figures -@dirrm share/gnome/help/gweather/pa -@dirrm share/gnome/help/gweather/oc/figures -@dirrm share/gnome/help/gweather/oc -@dirrm share/gnome/help/gweather/nl/figures -@dirrm share/gnome/help/gweather/nl -@dirrm share/gnome/help/gweather/fr/figures -@dirrm share/gnome/help/gweather/fr -@dirrm share/gnome/help/gweather/es/figures -@dirrm share/gnome/help/gweather/es -@dirrm share/gnome/help/gweather/en_GB/figures -@dirrm share/gnome/help/gweather/en_GB -@dirrm share/gnome/help/gweather/C/figures -@dirrm share/gnome/help/gweather/C -@dirrm share/gnome/help/gweather -@dirrm share/gnome/help/gswitchit/uk -@dirrm share/gnome/help/gswitchit/sv -@dirrm share/gnome/help/gswitchit/ru -@dirrm share/gnome/help/gswitchit/oc -@dirrm share/gnome/help/gswitchit/fr -@dirrm share/gnome/help/gswitchit/es -@dirrm share/gnome/help/gswitchit/en_GB -@dirrm share/gnome/help/gswitchit/el -@dirrm share/gnome/help/gswitchit/C -@dirrm share/gnome/help/gswitchit -@dirrm share/gnome/help/geyes/uk/figures -@dirrm share/gnome/help/geyes/uk -@dirrm share/gnome/help/geyes/sv/figures -@dirrm share/gnome/help/geyes/sv -@dirrm share/gnome/help/geyes/ru/figures -@dirrm share/gnome/help/geyes/ru -@dirrm share/gnome/help/geyes/oc/figures -@dirrm share/gnome/help/geyes/oc -@dirrm share/gnome/help/geyes/it/figures -@dirrm share/gnome/help/geyes/it -@dirrm share/gnome/help/geyes/fr/figures -@dirrm share/gnome/help/geyes/fr -@dirrm share/gnome/help/geyes/es/figures -@dirrm share/gnome/help/geyes/es -@dirrm share/gnome/help/geyes/en_GB/figures -@dirrm share/gnome/help/geyes/en_GB -@dirrm share/gnome/help/geyes/ca/figures -@dirrm share/gnome/help/geyes/ca -@dirrm share/gnome/help/geyes/bg/figures -@dirrm share/gnome/help/geyes/bg -@dirrm share/gnome/help/geyes/C/figures -@dirrm share/gnome/help/geyes/C -@dirrm share/gnome/help/geyes -@dirrm share/gnome/help/drivemount/zh_CN/figures -@dirrm share/gnome/help/drivemount/zh_CN -@dirrm share/gnome/help/drivemount/uk/figures -@dirrm share/gnome/help/drivemount/uk -@dirrm share/gnome/help/drivemount/sv/figures -@dirrm share/gnome/help/drivemount/sv -@dirrm share/gnome/help/drivemount/ru/figures -@dirrm share/gnome/help/drivemount/ru -@dirrm share/gnome/help/drivemount/pa/figures -@dirrm share/gnome/help/drivemount/pa -@dirrm share/gnome/help/drivemount/oc/figures -@dirrm share/gnome/help/drivemount/oc -@dirrm share/gnome/help/drivemount/it/figures -@dirrm share/gnome/help/drivemount/it -@dirrm share/gnome/help/drivemount/fr/figures -@dirrm share/gnome/help/drivemount/fr -@dirrm share/gnome/help/drivemount/es/figures -@dirrm share/gnome/help/drivemount/es -@dirrm share/gnome/help/drivemount/en_GB/figures -@dirrm share/gnome/help/drivemount/en_GB -@dirrm share/gnome/help/drivemount/C/figures -@dirrm share/gnome/help/drivemount/C -@dirrm share/gnome/help/drivemount -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/zh_CN/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/zh_CN -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/uk/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/uk -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/sv/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/sv -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/ru/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/ru -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/oc/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/oc -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/nl/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/nl -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/fr/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/fr -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/es/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/es -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/en_GB/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/en_GB -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/ca/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/ca -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/C/figures -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/C -%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet -%%COMMANDER%%@dirrm share/gnome/help/command-line/uk/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/uk -%%COMMANDER%%@dirrm share/gnome/help/command-line/sv/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/sv -%%COMMANDER%%@dirrm share/gnome/help/command-line/pt_BR/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/pt_BR -%%COMMANDER%%@dirrm share/gnome/help/command-line/oc/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/oc -%%COMMANDER%%@dirrm share/gnome/help/command-line/fr/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/fr -%%COMMANDER%%@dirrm share/gnome/help/command-line/es/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/es -%%COMMANDER%%@dirrm share/gnome/help/command-line/en_GB/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/en_GB -%%COMMANDER%%@dirrm share/gnome/help/command-line/C/figures -%%COMMANDER%%@dirrm share/gnome/help/command-line/C -%%COMMANDER%%@dirrm share/gnome/help/command-line -@dirrm share/gnome/help/char-palette/uk/figures -@dirrm share/gnome/help/char-palette/uk -@dirrm share/gnome/help/char-palette/sv/figures -@dirrm share/gnome/help/char-palette/sv -@dirrm share/gnome/help/char-palette/ru/figures -@dirrm share/gnome/help/char-palette/ru -@dirrm share/gnome/help/char-palette/pt_BR/figures -@dirrm share/gnome/help/char-palette/pt_BR -@dirrm share/gnome/help/char-palette/oc/figures -@dirrm share/gnome/help/char-palette/oc -@dirrm share/gnome/help/char-palette/nl/figures -@dirrm share/gnome/help/char-palette/nl -@dirrm share/gnome/help/char-palette/it/figures -@dirrm share/gnome/help/char-palette/it -@dirrm share/gnome/help/char-palette/fr/figures -@dirrm share/gnome/help/char-palette/fr -@dirrm share/gnome/help/char-palette/es/figures -@dirrm share/gnome/help/char-palette/es -@dirrm share/gnome/help/char-palette/en_GB/figures -@dirrm share/gnome/help/char-palette/en_GB -@dirrm share/gnome/help/char-palette/bg/figures -@dirrm share/gnome/help/char-palette/bg -@dirrm share/gnome/help/char-palette/C/figures -@dirrm share/gnome/help/char-palette/C -@dirrm share/gnome/help/char-palette -%%BATTERY%%@dirrm share/gnome/help/battstat/uk/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/uk -%%BATTERY%%@dirrm share/gnome/help/battstat/sv/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/sv -%%BATTERY%%@dirrm share/gnome/help/battstat/pa/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/pa -%%BATTERY%%@dirrm share/gnome/help/battstat/oc/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/oc -%%BATTERY%%@dirrm share/gnome/help/battstat/fr/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/fr -%%BATTERY%%@dirrm share/gnome/help/battstat/es/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/es -%%BATTERY%%@dirrm share/gnome/help/battstat/en_GB/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/en_GB -%%BATTERY%%@dirrm share/gnome/help/battstat/bg/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/bg -%%BATTERY%%@dirrm share/gnome/help/battstat/C/figures -%%BATTERY%%@dirrm share/gnome/help/battstat/C -%%BATTERY%%@dirrm share/gnome/help/battstat -@dirrm share/gnome/help/accessx-status/uk/figures -@dirrm share/gnome/help/accessx-status/uk -@dirrm share/gnome/help/accessx-status/sv/figures -@dirrm share/gnome/help/accessx-status/sv -@dirrm share/gnome/help/accessx-status/oc/figures -@dirrm share/gnome/help/accessx-status/oc -@dirrm share/gnome/help/accessx-status/nl/figures -@dirrm share/gnome/help/accessx-status/nl -@dirrm share/gnome/help/accessx-status/it/figures -@dirrm share/gnome/help/accessx-status/it -@dirrm share/gnome/help/accessx-status/fr/figures -@dirrm share/gnome/help/accessx-status/fr -@dirrm share/gnome/help/accessx-status/es/figures -@dirrm share/gnome/help/accessx-status/es -@dirrm share/gnome/help/accessx-status/en_GB/figures -@dirrm share/gnome/help/accessx-status/en_GB -@dirrm share/gnome/help/accessx-status/ca/figures -@dirrm share/gnome/help/accessx-status/ca -@dirrm share/gnome/help/accessx-status/bg/figures -@dirrm share/gnome/help/accessx-status/bg -@dirrm share/gnome/help/accessx-status/C/figures -@dirrm share/gnome/help/accessx-status/C -@dirrm share/gnome/help/accessx-status -%%PYTHON%%@dirrm %%DATADIR%%/invest-applet -@dirrm %%DATADIR%%/gweather -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%%/geyes/Tango -@dirrm %%DATADIR%%/geyes/Horrid -@dirrm %%DATADIR%%/geyes/Default-tiny -@dirrm %%DATADIR%%/geyes/Default -@dirrm %%DATADIR%%/geyes/Bloodshot -@dirrm %%DATADIR%%/geyes/Bizarre -@dirrm %%DATADIR%%/geyes -@dirrm %%DATADIR%% -%%COMMANDER%%@dirrmtry libexec/gnome-applets -%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/invest -@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/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/es_VE/LC_MESSAGES -@dirrmtry share/locale/es_VE -@dirrmtry share/locale/es_UY/LC_MESSAGES -@dirrmtry share/locale/es_UY -@dirrmtry share/locale/es_SV/LC_MESSAGES -@dirrmtry share/locale/es_SV -@dirrmtry share/locale/es_PR/LC_MESSAGES -@dirrmtry share/locale/es_PR -@dirrmtry share/locale/es_PE/LC_MESSAGES -@dirrmtry share/locale/es_PE -@dirrmtry share/locale/es_PA/LC_MESSAGES -@dirrmtry share/locale/es_PA -@dirrmtry share/locale/es_NI/LC_MESSAGES -@dirrmtry share/locale/es_NI -@dirrmtry share/locale/es_HN/LC_MESSAGES -@dirrmtry share/locale/es_HN -@dirrmtry share/locale/es_GT/LC_MESSAGES -@dirrmtry share/locale/es_GT -@dirrmtry share/locale/es_EC/LC_MESSAGES -@dirrmtry share/locale/es_EC -@dirrmtry share/locale/es_DO/LC_MESSAGES -@dirrmtry share/locale/es_DO -@dirrmtry share/locale/es_CR/LC_MESSAGES -@dirrmtry share/locale/es_CR -@dirrmtry share/locale/es_CO/LC_MESSAGES -@dirrmtry share/locale/es_CO -@dirrmtry share/locale/es_CL/LC_MESSAGES -@dirrmtry share/locale/es_CL -@dirrmtry share/locale/es_AR/LC_MESSAGES -@dirrmtry share/locale/es_AR -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/gnome-desktop/Makefile b/x11/gnome-desktop/Makefile deleted file mode 100644 index a6dc56dd3..000000000 --- a/x11/gnome-desktop/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection makefile for: gnomedesktop -# Date created: 13 April 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-desktop/Makefile,v 1.126 2007/10/15 21:25:45 mezz Exp $ -# - -PORTNAME= gnome-desktop -PORTVERSION= 2.20.1 -PORTREVISION?= 1 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/gnome-desktop/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Additional UI API for GNOME 2 - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -USE_XPM= yes -USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui gnomedocutils \ - ltverhack referencehack -GNOME_DESKTOP_VERSION=2 -USE_GETTEXT= yes -USE_GMAKE= yes -USE_BISON= build -USE_XLIB= yes -INSTALLS_OMF= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ARGS= --with-gnome-distributor="FreeBSD GNOME Project" \ - --with-kde-datadir=${LOCALBASE}/share -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= gnome-about.1 - -.include <bsd.port.mk> - -.endif diff --git a/x11/gnome-desktop/distinfo b/x11/gnome-desktop/distinfo deleted file mode 100644 index 1c2a07710..000000000 --- a/x11/gnome-desktop/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-desktop-2.20.1.tar.bz2) = 19912d1e1743960ebf824684cdf8f097 -SHA256 (gnome2/gnome-desktop-2.20.1.tar.bz2) = f94a3e8962980628ae8a18135c419d239109cf1f68b4d8de7e4739194cf53391 -SIZE (gnome2/gnome-desktop-2.20.1.tar.bz2) = 1356668 diff --git a/x11/gnome-desktop/pkg-descr b/x11/gnome-desktop/pkg-descr deleted file mode 100644 index bda4df791..000000000 --- a/x11/gnome-desktop/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is a collection of APIs not included in libgnomeui. - -WWW: http://www.gnome.org/ diff --git a/x11/gnome-desktop/pkg-plist b/x11/gnome-desktop/pkg-plist deleted file mode 100644 index 2d1c2909b..000000000 --- a/x11/gnome-desktop/pkg-plist +++ /dev/null @@ -1,336 +0,0 @@ -bin/gnome-about -include/gnome-desktop-2.0/libgnome/gnome-desktop-item.h -include/gnome-desktop-2.0/libgnomeui/gnome-ditem-edit.h -include/gnome-desktop-2.0/libgnomeui/gnome-hint.h -lib/libgnome-desktop-2.a -lib/libgnome-desktop-2.la -lib/libgnome-desktop-2.so -lib/libgnome-desktop-2.so.2 -libdata/pkgconfig/gnome-desktop-2.0.pc -share/applications/gnome-about.desktop -share/gnome-about/contributors.list -share/gnome-about/foundation-members.list -share/gnome-about/gnome-64.png -share/gnome-about/gnome-version.xml -share/gnome-about/headers/header-bg-ancient01a.png -share/gnome-about/headers/header-bg-city01.png -share/gnome-about/headers/header-bg-clouds01.png -share/gnome-about/headers/header-bg-clouds02.png -share/gnome-about/headers/header-bg-hills01.png -share/gnome-about/headers/header-bg-landscape01.png -share/gnome-about/headers/header-bg-mountains01.png -share/gnome-about/headers/header-bg-snow01.png -share/gnome-about/headers/header-bg-sunset01.png -share/gnome/help/fdl/C/fdl.xml -share/gnome/help/fdl/ar/fdl.xml -share/gnome/help/fdl/es/fdl.xml -share/gnome/help/fdl/fr/fdl.xml -share/gnome/help/fdl/ko/fdl.xml -share/gnome/help/fdl/oc/fdl.xml -share/gnome/help/fdl/sv/fdl.xml -share/gnome/help/fdl/uk/fdl.xml -share/gnome/help/fdl/vi/fdl.xml -share/gnome/help/gpl/C/gpl.xml -share/gnome/help/gpl/ar/gpl.xml -share/gnome/help/gpl/ca/gpl.xml -share/gnome/help/gpl/es/gpl.xml -share/gnome/help/gpl/fi/gpl.xml -share/gnome/help/gpl/fr/gpl.xml -share/gnome/help/gpl/ko/gpl.xml -share/gnome/help/gpl/oc/gpl.xml -share/gnome/help/gpl/pa/gpl.xml -share/gnome/help/gpl/sv/gpl.xml -share/gnome/help/gpl/uk/gpl.xml -share/gnome/help/gpl/vi/gpl.xml -share/gnome/help/gpl/zh_CN/gpl.xml -share/gnome/help/lgpl/C/lgpl.xml -share/gnome/help/lgpl/ar/lgpl.xml -share/gnome/help/lgpl/es/lgpl.xml -share/gnome/help/lgpl/fr/lgpl.xml -share/gnome/help/lgpl/ko/lgpl.xml -share/gnome/help/lgpl/oc/lgpl.xml -share/gnome/help/lgpl/pa/lgpl.xml -share/gnome/help/lgpl/sv/lgpl.xml -share/gnome/help/lgpl/uk/lgpl.xml -share/gnome/help/lgpl/vi/lgpl.xml -share/gnome/help/lgpl/zh_CN/lgpl.xml -share/locale/af/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/am/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ar/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/az/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/be/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/be@latin/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/bg/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/bn/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/br/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/bs/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ca/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/cs/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/cy/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/da/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/de/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/dz/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/el/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/en_CA/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/en_GB/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/eo/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/es/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/et/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/eu/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/fa/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/fi/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/fr/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ga/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/gl/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/gu/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/he/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/hi/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/hr/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/hu/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/hy/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/id/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/is/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/it/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ja/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ka/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/kn/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ko/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ku/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ky/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/li/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/lt/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/lv/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/mg/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/mi/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/mk/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ml/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/mn/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/mr/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ms/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/nb/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ne/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/nl/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/nn/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/nso/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/oc/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/or/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/pa/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/pl/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/pt/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ro/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ru/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/rw/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/si/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/sk/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/sl/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/sq/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/sr/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/sr@Latn/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/sv/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ta/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/te/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/th/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/tk/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/tr/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ug/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/uk/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/ur/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/uz@cyrillic/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/vi/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/wa/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/xh/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/yi/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/yo/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gnome-desktop-2.0.mo -share/locale/zu/LC_MESSAGES/gnome-desktop-2.0.mo -share/omf/fdl/fdl-C.omf -share/omf/fdl/fdl-ar.omf -share/omf/fdl/fdl-es.omf -share/omf/fdl/fdl-fr.omf -share/omf/fdl/fdl-ko.omf -share/omf/fdl/fdl-oc.omf -share/omf/fdl/fdl-sv.omf -share/omf/fdl/fdl-uk.omf -share/omf/fdl/fdl-vi.omf -share/omf/gpl/gpl-C.omf -share/omf/gpl/gpl-ar.omf -share/omf/gpl/gpl-ca.omf -share/omf/gpl/gpl-es.omf -share/omf/gpl/gpl-fi.omf -share/omf/gpl/gpl-fr.omf -share/omf/gpl/gpl-ko.omf -share/omf/gpl/gpl-oc.omf -share/omf/gpl/gpl-pa.omf -share/omf/gpl/gpl-sv.omf -share/omf/gpl/gpl-uk.omf -share/omf/gpl/gpl-vi.omf -share/omf/gpl/gpl-zh_CN.omf -share/omf/lgpl/lgpl-C.omf -share/omf/lgpl/lgpl-ar.omf -share/omf/lgpl/lgpl-es.omf -share/omf/lgpl/lgpl-fr.omf -share/omf/lgpl/lgpl-ko.omf -share/omf/lgpl/lgpl-oc.omf -share/omf/lgpl/lgpl-pa.omf -share/omf/lgpl/lgpl-sv.omf -share/omf/lgpl/lgpl-uk.omf -share/omf/lgpl/lgpl-vi.omf -share/omf/lgpl/lgpl-zh_CN.omf -share/pixmaps/apple-green.png -share/pixmaps/apple-red.png -share/pixmaps/gnome-aorta.png -share/pixmaps/gnome-applets.png -share/pixmaps/gnome-background-image.png -share/pixmaps/gnome-background-pattern.png -share/pixmaps/gnome-background.png -share/pixmaps/gnome-calc2.png -share/pixmaps/gnome-calc3.png -share/pixmaps/gnome-calendar.png -share/pixmaps/gnome-ccbackground.png -share/pixmaps/gnome-ccdesktop.png -share/pixmaps/gnome-ccdialog.png -share/pixmaps/gnome-ccmime.png -share/pixmaps/gnome-ccperiph.png -share/pixmaps/gnome-ccscreensaver.png -share/pixmaps/gnome-ccwindowmanager.png -share/pixmaps/gnome-color-browser.png -share/pixmaps/gnome-color-xterm.png -share/pixmaps/gnome-computer.png -share/pixmaps/gnome-cromagnon.png -share/pixmaps/gnome-day.png -share/pixmaps/gnome-debian.png -share/pixmaps/gnome-diskfree.png -share/pixmaps/gnome-emacs.png -share/pixmaps/gnome-eterm.png -share/pixmaps/gnome-file-c.png -share/pixmaps/gnome-file-h.png -share/pixmaps/gnome-folder.png -share/pixmaps/gnome-gemvt.png -share/pixmaps/gnome-gimp.png -share/pixmaps/gnome-gmenu.png -share/pixmaps/gnome-gmush.png -share/pixmaps/gnome-gnomoku.png -share/pixmaps/gnome-home.png -share/pixmaps/gnome-html.png -share/pixmaps/gnome-image-gif.png -share/pixmaps/gnome-image-jpeg.png -share/pixmaps/gnome-irc.png -share/pixmaps/gnome-laptop.png -share/pixmaps/gnome-log.png -share/pixmaps/gnome-logo-icon-transparent.png -share/pixmaps/gnome-logo-icon.png -share/pixmaps/gnome-logo-large.png -share/pixmaps/gnome-mdi.png -share/pixmaps/gnome-mnemonic.png -share/pixmaps/gnome-month.png -share/pixmaps/gnome-mouse.png -share/pixmaps/gnome-news.png -share/pixmaps/gnome-note.png -share/pixmaps/gnome-qeye.png -share/pixmaps/gnome-set-time.png -share/pixmaps/gnome-spider.png -share/pixmaps/gnome-squeak.png -share/pixmaps/gnome-suse.png -share/pixmaps/gnome-talk.png -share/pixmaps/gnome-term-linux.png -share/pixmaps/gnome-term-linux2.png -share/pixmaps/gnome-term-night.png -share/pixmaps/gnome-term-tiger.png -share/pixmaps/gnome-term.png -share/pixmaps/gnome-tigert.png -share/pixmaps/gnome-touristinfo.png -share/pixmaps/gnome-user-interface.png -share/pixmaps/gnome-week.png -share/pixmaps/gnome-windows.png -share/pixmaps/gnome-word.png -share/pixmaps/gnome-xterm.png -share/pixmaps/gtkvim.png -share/pixmaps/kterm.xpm -share/pixmaps/monitor.png -share/pixmaps/vnterm.xpm -@dirrm share/omf/lgpl -@dirrm share/omf/gpl -@dirrm share/omf/fdl -@dirrm share/gnome/help/lgpl/zh_CN -@dirrm share/gnome/help/lgpl/vi -@dirrm share/gnome/help/lgpl/uk -@dirrm share/gnome/help/lgpl/sv -@dirrm share/gnome/help/lgpl/pa -@dirrm share/gnome/help/lgpl/oc -@dirrm share/gnome/help/lgpl/ko -@dirrm share/gnome/help/lgpl/fr -@dirrm share/gnome/help/lgpl/es -@dirrm share/gnome/help/lgpl/ar -@dirrm share/gnome/help/gpl/zh_CN -@dirrm share/gnome/help/gpl/vi -@dirrm share/gnome/help/gpl/uk -@dirrm share/gnome/help/gpl/sv -@dirrm share/gnome/help/gpl/pa -@dirrm share/gnome/help/gpl/oc -@dirrm share/gnome/help/gpl/ko -@dirrm share/gnome/help/gpl/fr -@dirrm share/gnome/help/gpl/fi -@dirrm share/gnome/help/gpl/es -@dirrm share/gnome/help/gpl/ca -@dirrm share/gnome/help/gpl/ar -@dirrm share/gnome/help/fdl/vi -@dirrm share/gnome/help/fdl/uk -@dirrm share/gnome/help/fdl/sv -@dirrm share/gnome/help/fdl/oc -@dirrm share/gnome/help/fdl/ko -@dirrm share/gnome/help/fdl/fr -@dirrm share/gnome/help/fdl/es -@dirrm share/gnome/help/fdl/ar -@dirrm share/gnome-about/headers -@dirrm include/gnome-desktop-2.0/libgnomeui -@dirrm include/gnome-desktop-2.0/libgnome -@dirrm include/gnome-desktop-2.0 -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yo/LC_MESSAGES -@dirrmtry share/locale/yo -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@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/ur/LC_MESSAGES -@dirrmtry share/locale/ur -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@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/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/applications diff --git a/x11/gnome-libs/Makefile b/x11/gnome-libs/Makefile deleted file mode 100644 index 4534e931f..000000000 --- a/x11/gnome-libs/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# New ports collection makefile for: gnomelibs -# Date created: 17 June 1998 -# Whom: Yukihiro Nakai <Nakai@technologist.com> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-libs/Makefile,v 1.6 2007/05/19 21:36:28 marcus Exp $ -# - -PORTNAME= gnome-libs -PORTVERSION= 1.4.2 -PORTREVISION= 10 -CATEGORIES?= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/gnome-libs/1.4 -DIST_SUBDIR= gnome - -MAINTAINER?= gnome@FreeBSD.org -COMMENT= Libraries for GNOME, a GNU desktop environment - -BUILD_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian -RUN_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian - -USE_BZIP2= yes -USE_XLIB= yes -USE_XPM= yes -USE_PERL5= yes -USE_GMAKE= yes -USE_GNOME= gnomehack gnomeprefix esound gtk12 imlib libxml orbit -USE_GETTEXT= yes -USE_LDCONFIG= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-test-gnome -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" - -MAN1= dns-helper.1 gconfigger.1 gnome-bug.1 gnome-config.1 \ - gnome-doc.1 gnome-dump-metadata.1 gnome-gen-mimedb.1 \ - gnome-mkstub.1 gnome-moz-remote.1 gnome-name-service.1 \ - gnome-pty-helper.1 gnome.1 gnome_segv.1 goad-browser.1 \ - libart-config.1 loadshlib.1 new-object.1 -MAN5= gnome-mime.5 - -DOCSDIR= ${PREFIX}/share/doc/gnomelibs - -post-patch: - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ - ${WRKSRC}/gnome-config.in ${WRKSRC}/libgnome/gnome-util.c - @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \ - ${WRKSRC}/configure \ - ${WRKSRC}/libart_lgpl/configure - -# need to make launched gnome-terminals appear in utmp/wtmp -.if !target(post-install) -post-install: - @${CHMOD} u+s ${PREFIX}/bin/gnome-pty-helper -.endif - -.include <bsd.port.mk> diff --git a/x11/gnome-libs/distinfo b/x11/gnome-libs/distinfo deleted file mode 100644 index 25c43a25d..000000000 --- a/x11/gnome-libs/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome/gnome-libs-1.4.2.tar.bz2) = 6111e91b143a90afb30f7a8c1e6cbbd6 -SHA256 (gnome/gnome-libs-1.4.2.tar.bz2) = 84a7ff35e69341d5c297b633b3d64c01e7844e3b428f8926e823638911788c28 -SIZE (gnome/gnome-libs-1.4.2.tar.bz2) = 2875219 diff --git a/x11/gnome-libs/files/patch-aa b/x11/gnome-libs/files/patch-aa deleted file mode 100644 index 8ec33082e..000000000 --- a/x11/gnome-libs/files/patch-aa +++ /dev/null @@ -1,63 +0,0 @@ ---- configure.orig Mon Apr 29 12:07:59 2002 -+++ configure Mon Apr 29 12:08:54 2002 -@@ -5339,6 +5339,7 @@ - - # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS - - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' -@@ -8775,7 +8776,7 @@ - else - - save_LDFLAGS="$LDFLAGS" -- LDFLAGS="$LDFLAGS `glib-config --libs gmodule`" -+ LDFLAGS="$LDFLAGS `$GLIB_CONFIG --libs gmodule`" - if test "$cross_compiling" = yes; then - ac_cv_gmodule=yes - else -@@ -10394,7 +10395,7 @@ - echo $ac_n "(cached) $ac_c" 1>&6 - else - ac_save_LIBS="$LIBS" --LIBS="-ltiff -lm $LIBS" -+LIBS="-ltiff -ljpeg -lz -lm $LIBS" - cat > conftest.$ac_ext <<EOF - #line 10400 "configure" - #include "confdefs.h" -@@ -13483,13 +13484,13 @@ - SUPPORTINCS='-DNEED_GNOMESUPPORT_H -I$(top_builddir)/support -I$(top_srcdir)/support' - - ART_LIBS="-lart_lgpl" --GNOME_LIBS="-lgnome -lgnomesupport $LIBGNOME_LIBS" -+GNOME_LIBS="-lgnome -lgnomesupport -lintl $LIBGNOME_LIBS" - GNOMEUI_LIBS="-lgnomeui $ART_LIBS $GDK_IMLIB_LIBS $GTK_LIBS $GNOME_LIBS" - GTKXMHTML_LIBS="-lgtkxmhtml $LIBGTKXMHTML_LIBS" - ZVT_LIBS="-lzvt $UTIL_LIBS $GTK_LIBS" - - GNOME_LIBDIR='-L${libdir}' --GNOME_INCLUDEDIR='-I${includedir}/gnome-1.0 -DNEED_GNOMESUPPORT_H -I${pkglibdir}/include' -+GNOME_INCLUDEDIR='-I${includedir}/gnome-1.0 -I${includedir} -DNEED_GNOMESUPPORT_H -I${pkglibdir}/include' - GNOME_IDLDIR='-I${datadir}/idl' - - -@@ -13887,6 +13888,7 @@ - s%@MAINTAINER_MODE_FALSE@%$MAINTAINER_MODE_FALSE%g - s%@MAINT@%$MAINT%g - s%@cflags_set@%$cflags_set%g -+s%@GLIB_CONFIG@%$GLIB_CONFIG%g - s%@GTK_CONFIG@%$GTK_CONFIG%g - s%@GTK_CFLAGS@%$GTK_CFLAGS%g - s%@GTK_LIBS@%$GTK_LIBS%g -@@ -14356,10 +14358,6 @@ - *) # Relative path. - ac_sub_cache_file="$ac_dots$cache_file" ;; - esac -- case "$ac_given_INSTALL" in -- [/$]*) INSTALL="$ac_given_INSTALL" ;; -- *) INSTALL="$ac_dots$ac_given_INSTALL" ;; -- esac - - echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir" - # The eval makes quoting arguments work. diff --git a/x11/gnome-libs/files/patch-ac b/x11/gnome-libs/files/patch-ac deleted file mode 100644 index 0d8f8a75e..000000000 --- a/x11/gnome-libs/files/patch-ac +++ /dev/null @@ -1,62 +0,0 @@ ---- gnome-config.in.orig Wed Oct 20 07:36:58 1999 -+++ gnome-config.in Tue Feb 15 20:50:22 2000 -@@ -19,7 +19,7 @@ - pkglibdir=${libdir}/@PACKAGE@ - pkgincludedir=${includedir}/@PACKAGE@ - MODULE_VERSION=@PACKAGE@-@VERSION@ --module_dirs="$libdir" -+module_dirs="$sysconfdir:%%LOCALBASE%%/etc" - - # stolen from autoconf - if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then -@@ -65,20 +65,21 @@ - - Known values for LIBRARY are: - -- glib (calls glib-config) -+ glib (calls @GLIB_CONFIG@) - idl (to be used with orbit-idl) - gnome - gnomeui - gnorba -- gtk (calls gtk-config) -+ gtk (calls @GTK_CONFIG@) - gtkxmhtml (only --libs) - zvt (only --libs) - - If LIBRARY is none of these, - -- ${libdir}/<LIBRARY>Conf.sh -+ ${sysconfdir}/<LIBRARY>Conf.sh -+and %%LOCALBASE%%/etc/<LIBRARY>Conf.sh - --is looked in for the necessary information. Those currently installed -+are looked in for the necessary information. Those currently installed - appear to be: - - EOF -@@ -161,19 +162,19 @@ - usage 1 - ;; - glib) -- the_libs="$the_libs `glib-config --libs`" -- the_flags="$the_flags `glib-config --cflags`" -+ the_libs="$the_libs `@GLIB_CONFIG@ --libs`" -+ the_flags="$the_flags `@GLIB_CONFIG@ --cflags`" - ;; - gtk) -- the_libs="$the_libs `gtk-config --libs`" -- the_flags="$the_flags `gtk-config --cflags`" -+ the_libs="$the_libs `@GTK_CONFIG@ --libs`" -+ the_flags="$the_flags `@GTK_CONFIG@ --cflags`" - ;; - gnome) - the_libs="$the_libs @GNOME_LIBDIR@ @GNOME_LIBS@" - the_flags="$the_flags @GNOME_INCLUDEDIR@ @GTK_CFLAGS@" - ;; - gnomeui) -- the_libs="$the_libs @GNOME_LIBDIR@ @GNOMEUI_LIBS@" -+ the_libs="$the_libs @GNOME_LIBDIR@ -lXpm -ljpeg -lpng -lz -ltiff -lungif @GNOMEUI_LIBS@" - the_flags="$the_flags @GNOME_INCLUDEDIR@ @GTK_CFLAGS@" - ;; - gtkxmhtml) diff --git a/x11/gnome-libs/files/patch-ag b/x11/gnome-libs/files/patch-ag deleted file mode 100644 index 1045193a6..000000000 --- a/x11/gnome-libs/files/patch-ag +++ /dev/null @@ -1,14 +0,0 @@ ---- libgnome/gnome-util.c.orig Fri Apr 23 16:14:08 1999 -+++ libgnome/gnome-util.c Mon Jul 12 10:31:19 1999 -@@ -371,8 +371,9 @@ - int i; - char *shell; - static char *shells [] = { -- "/bin/bash", "/bin/zsh", "/bin/tcsh", "/bin/ksh", -- "/bin/csh", "/bin/sh", 0 -+ "/bin/csh", "/bin/sh", "/bin/tcsh", "%%LOCALBASE%%/bin/tcsh", -+ "%%LOCALBASE%%/bin/bash", "%%LOCALBASE%%/bin/ksh", -+ "%%LOCALBASE%%/bin/zsh", 0 - }; - - if ((shell = getenv ("SHELL"))){ diff --git a/x11/gnome-libs/files/patch-ba b/x11/gnome-libs/files/patch-ba deleted file mode 100644 index d26ccd3bf..000000000 --- a/x11/gnome-libs/files/patch-ba +++ /dev/null @@ -1,7 +0,0 @@ ---- Makefile.in.orig Sun Jan 21 16:37:06 2001 -+++ Makefile.in Mon Jan 22 14:07:50 2001 -@@ -163,3 +163,3 @@ - --confexecdir = $(libdir) -+confexecdir = $(sysconfdir) - confexec_DATA = gnomeConf.sh diff --git a/x11/gnome-libs/files/patch-bb b/x11/gnome-libs/files/patch-bb deleted file mode 100644 index d6564a00e..000000000 --- a/x11/gnome-libs/files/patch-bb +++ /dev/null @@ -1,29 +0,0 @@ ---- gtk-xmhtml/Makefile.in.orig Mon Jan 14 12:02:33 2002 -+++ gtk-xmhtml/Makefile.in Mon Jan 14 12:03:13 2002 -@@ -151,7 +151,7 @@ - libgtkxmhtmlincludedir = $(includedir)/gnome-1.0/gtk-xmhtml - - INCLUDES = -I.. -I$(srcdir)/.. -I$(includedir) @GTK_CFLAGS@ \ -- -DWITH_GTK -DDEBUG -DGNOME_LIB -+ -DWITH_GTK -DGNOME_LIB - - - lib_LTLIBRARIES = libgtkxmhtml.la -@@ -204,7 +204,7 @@ - toolkit.h - - --libgtkxmhtml_la_LDFLAGS = -version-info 1:1:0 -rpath $(libdir) -+libgtkxmhtml_la_LDFLAGS = -version-info 5:0:0 -rpath $(libdir) - libgtkxmhtml_la_LIBADD = $(LIBGTKXMHTML_LIBS) - - noinst_PROGRAMS = htmltest -@@ -520,7 +520,7 @@ - uninstall-am: uninstall-libLTLIBRARIES \ - uninstall-libgtkxmhtmlincludeHEADERS - uninstall: uninstall-am --all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS) -+all-am: Makefile $(LTLIBRARIES) $(HEADERS) - all-redirect: all-am - install-strip: - $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install diff --git a/x11/gnome-libs/files/patch-bc b/x11/gnome-libs/files/patch-bc deleted file mode 100644 index fc6ef3c2f..000000000 --- a/x11/gnome-libs/files/patch-bc +++ /dev/null @@ -1,7 +0,0 @@ ---- libgnome/Makefile.in.orig Sun Jan 21 16:37:20 2001 -+++ libgnome/Makefile.in Mon Jan 22 13:45:00 2001 -@@ -170,3 +170,3 @@ - --libgnome_la_LDFLAGS = -version-info 36:3:4 #-rpath $(libdir) -+libgnome_la_LDFLAGS = -version-info 5:0:0 #-rpath $(libdir) - libgnome_la_LIBADD = $(GLIB_LIBS) -lm $(DL_LIB) diff --git a/x11/gnome-libs/files/patch-bd b/x11/gnome-libs/files/patch-bd deleted file mode 100644 index 8aaaa45d3..000000000 --- a/x11/gnome-libs/files/patch-bd +++ /dev/null @@ -1,12 +0,0 @@ ---- libgnomeui/Makefile.in.orig Wed Jan 24 14:25:06 2001 -+++ libgnomeui/Makefile.in Thu Jan 25 10:17:02 2001 -@@ -201,3 +201,3 @@ - --libgnomeui_la_LDFLAGS = -version-info 46:1:14 -rpath $(libdir) -+libgnomeui_la_LDFLAGS = -version-info 5:0:0 -rpath $(libdir) - libgnomeui_la_LIBADD = $(LIBGNOMEUI_LIBS) -@@ -260,3 +260,3 @@ - gtk-ted.lo gtkdial.lo gtkpixmapmenuitem.lo --PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) -+PROGRAMS = $(bin_PROGRAMS) - diff --git a/x11/gnome-libs/files/patch-be b/x11/gnome-libs/files/patch-be deleted file mode 100644 index 4dfb80f96..000000000 --- a/x11/gnome-libs/files/patch-be +++ /dev/null @@ -1,20 +0,0 @@ ---- libgnorba/Makefile.in.orig Thu Oct 7 11:35:06 1999 -+++ libgnorba/Makefile.in Wed Oct 13 21:19:16 1999 -@@ -182,7 +182,7 @@ - libgnorbainclude_HEADERS = gnorba.h gnome-factory.h gnome-unknown.h Table.h - - --libgnorba_la_LDFLAGS = -version-info 28:8:1 -rpath $(libdir) -+libgnorba_la_LDFLAGS = -version-info 5:0:0 -rpath $(libdir) - libgnorba_la_LIBADD = $(ORBIT_LIBS) $(GLIB_LIBS) -lm - - loadshlib_SOURCES = loadshlib.c -@@ -225,7 +225,7 @@ - gnome-factory-common.lo Table-skels.lo Table-stubs.lo Table-common.lo \ - gnome-unknown-skels.lo gnome-unknown-stubs.lo gnome-unknown-common.lo \ - goad.lo orbitgtk.lo orbitgnome.lo orbitns.lo --libgnorbagtk_la_LDFLAGS = -+libgnorbagtk_la_LDFLAGS = -version-info 5:0:0 -rpath $(libdir) - libgnorbagtk_la_LIBADD = - libgnorbagtk_la_OBJECTS = gnome-factory-skels.lo gnome-factory-stubs.lo \ - gnome-factory-common.lo Table-skels.lo Table-stubs.lo Table-common.lo \ diff --git a/x11/gnome-libs/files/patch-bf b/x11/gnome-libs/files/patch-bf deleted file mode 100644 index 4e10c904b..000000000 --- a/x11/gnome-libs/files/patch-bf +++ /dev/null @@ -1,20 +0,0 @@ ---- support/Makefile.in.orig Thu Apr 8 11:33:39 1999 -+++ support/Makefile.in Thu Apr 8 08:46:59 1999 -@@ -148,7 +148,7 @@ - mcserv = @mcserv@ - need_gnome_support = @need_gnome_support@ - --supportexecincludedir = $(pkglibdir)/include -+supportexecincludedir = $(includedir) - - INCLUDES = -D_GNU_SOURCE - -@@ -170,7 +170,7 @@ - - libgnomesupport_la_SOURCES = gnomesupport.h $(popt_sources) gnome-argp.c - libgnomesupport_la_LIBADD = @LTLIBOBJS@ --libgnomesupport_la_LDFLAGS = -version-info 0:0:0 -+libgnomesupport_la_LDFLAGS = -version-info 5:0:0 - - BUILT_SOURCES = gnomesupport.h - diff --git a/x11/gnome-libs/files/patch-bg b/x11/gnome-libs/files/patch-bg deleted file mode 100644 index 87aecf289..000000000 --- a/x11/gnome-libs/files/patch-bg +++ /dev/null @@ -1,20 +0,0 @@ ---- zvt/Makefile.in.orig Sat Apr 6 19:22:07 2002 -+++ zvt/Makefile.in Sat Apr 6 19:23:02 2002 -@@ -20,7 +20,7 @@ - exec_prefix = @exec_prefix@ - - bindir = @bindir@ --sbindir = @sbindir@ -+sbindir = @bindir@ - libexecdir = @libexecdir@ - datadir = @datadir@ - sysconfdir = @sysconfdir@ -@@ -226,7 +226,7 @@ - update.lo vt.lo zvtterm.lo - noinst_PROGRAMS = zterm$(EXEEXT) test-utmp$(EXEEXT) - sbin_PROGRAMS = gnome-pty-helper$(EXEEXT) --PROGRAMS = $(noinst_PROGRAMS) $(sbin_PROGRAMS) -+PROGRAMS = $(sbin_PROGRAMS) - - zterm_OBJECTS = zterm.$(OBJEXT) - zterm_DEPENDENCIES = libzvt.la diff --git a/x11/gnome-libs/files/patch-bi b/x11/gnome-libs/files/patch-bi deleted file mode 100644 index 3b2325030..000000000 --- a/x11/gnome-libs/files/patch-bi +++ /dev/null @@ -1,29 +0,0 @@ ---- libart_lgpl/Makefile.in.orig Sun Jun 23 11:41:23 2002 -+++ libart_lgpl/Makefile.in Sun Jun 23 11:42:23 2002 -@@ -145,7 +145,7 @@ - libart-features.c - - --libart_lgpl_la_LDFLAGS = -version-info @LIBART_VERSION_INFO@ -+libart_lgpl_la_LDFLAGS = -version-info 5:0:0 - libart_lgpl_la_LIBADD = -lm - - libart_lgplincdir = $(includedir)/gnome-1.0/libart_lgpl -@@ -207,7 +207,7 @@ - m4datadir = $(prefix)/share/aclocal - m4data_DATA = libart.m4 - --confexecdir = $(libdir) -+confexecdir = $(sysconfdir) - confexec_DATA = libartConf.sh - ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 - mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs -@@ -790,7 +790,7 @@ - uninstall-man uninstall-confexecDATA \ - uninstall-m4dataDATA uninstall-libart_lgplincHEADERS - uninstall: uninstall-recursive --all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(MANS) $(DATA) \ -+all-am: Makefile $(LTLIBRARIES) $(SCRIPTS) $(MANS) $(DATA) \ - $(HEADERS) config.h - all-redirect: all-recursive-am - install-strip: diff --git a/x11/gnome-libs/files/patch-bj b/x11/gnome-libs/files/patch-bj deleted file mode 100644 index cd77cec42..000000000 --- a/x11/gnome-libs/files/patch-bj +++ /dev/null @@ -1,30 +0,0 @@ ---- ./zvt/gnome-pty-helper.c.org Sat Mar 18 02:57:13 2000 -+++ ./zvt/gnome-pty-helper.c Sun Aug 5 11:37:41 2001 -@@ -41,6 +41,7 @@ - #include <limits.h> - #include <unistd.h> - #include <string.h> -+#include <sys/param.h> - #include <signal.h> - #include <fcntl.h> - #include <termios.h> -@@ -115,7 +116,7 @@ - #endif - #endif /* CMSG_DATA */ - --#define CONTROLLEN (sizeof (struct cmsghdr) + sizeof (int)) -+#define CONTROLLEN (sizeof (struct cmsghdr) + sizeof (long)) - - static struct cmsghdr *cmptr; - ---- ./zvt/subshell.c.org Mon May 22 17:24:16 2000 -+++ ./zvt/subshell.c Sun Aug 5 11:35:50 2001 -@@ -102,7 +102,7 @@ - #endif /* CMSG_DATA */ - - static struct cmsghdr *cmptr; --#define CONTROLLEN sizeof (struct cmsghdr) + sizeof (int) -+#define CONTROLLEN sizeof (struct cmsghdr) + sizeof (long) - - static int - receive_fd (int helper_fd) diff --git a/x11/gnome-libs/files/patch-bk b/x11/gnome-libs/files/patch-bk deleted file mode 100644 index a04008ce4..000000000 --- a/x11/gnome-libs/files/patch-bk +++ /dev/null @@ -1,10 +0,0 @@ ---- ./zvt/subshell-includes.h.org Wed Oct 20 05:51:19 1999 -+++ ./zvt/subshell-includes.h Fri Mar 10 17:21:01 2000 -@@ -12,6 +12,7 @@ - #include <sys/resource.h> - #include <limits.h> - #include <fcntl.h> -+#include <sys/param.h> - #include <sys/signal.h> - #include <stdlib.h> /* For errno, putenv, etc. */ - #include <errno.h> /* For errno on SunOS systems */ diff --git a/x11/gnome-libs/files/patch-bl b/x11/gnome-libs/files/patch-bl deleted file mode 100644 index 4944ca278..000000000 --- a/x11/gnome-libs/files/patch-bl +++ /dev/null @@ -1,35 +0,0 @@ ---- libgnomeui/gnome-init.c.orig Tue May 14 06:32:19 2002 -+++ libgnomeui/gnome-init.c Tue Jul 16 00:33:12 2002 -@@ -205,32 +205,8 @@ - switch(reason) { - case POPT_CALLBACK_REASON_PRE: - { -- char *ctype, *old_ctype = NULL; -- gboolean ctype_set; -- - gnome_segv_setup (FALSE); -- ctype = setlocale (LC_CTYPE, NULL); -- -- if (ctype && !strcmp(ctype, "C")) { -- old_ctype = g_strdup (getenv ("LC_CTYPE")); -- putenv ("LC_CTYPE=en_US"); -- ctype_set = TRUE; -- } else -- ctype_set = FALSE; -- - gtk_set_locale (); -- -- if (ctype_set) { -- char *setme; -- -- if (old_ctype) { -- setme = g_strconcat ("LC_CTYPE=", old_ctype, NULL); -- g_free(old_ctype); -- } else -- setme = "LC_CTYPE="; -- -- putenv (setme); -- } - client = gnome_master_client(); - } - break; diff --git a/x11/gnome-libs/files/patch-bm b/x11/gnome-libs/files/patch-bm deleted file mode 100644 index ab6caa847..000000000 --- a/x11/gnome-libs/files/patch-bm +++ /dev/null @@ -1,11 +0,0 @@ ---- zvt/vt.h.orig Sat Sep 9 01:33:07 2000 -+++ zvt/vt.h Sat Sep 9 01:35:18 2000 -@@ -23,7 +23,7 @@ - - #include <unistd.h> - --#include "lists.h" -+#include <zvt/lists.h> - - /* for utf-8 input support */ - #define ZVT_UTF 1 diff --git a/x11/gnome-libs/files/patch-bn b/x11/gnome-libs/files/patch-bn deleted file mode 100644 index b00458878..000000000 --- a/x11/gnome-libs/files/patch-bn +++ /dev/null @@ -1,13 +0,0 @@ ---- devel-docs/Makefile.in.orig Sun Jan 21 16:37:33 2001 -+++ devel-docs/Makefile.in Tue Jan 23 23:12:20 2001 -@@ -158,4 +158,4 @@ - --docdir = $(prefix)/doc --doc_DATA = $(TEXT_FILES) -+docdir = -+doc_DATA = - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -@@ -185,3 +185,2 @@ - @$(NORMAL_INSTALL) -- $(mkinstalldirs) $(DESTDIR)$(docdir) - @list='$(doc_DATA)'; for p in $$list; do \ diff --git a/x11/gnome-libs/files/patch-devel-docs::gnome::Makefile.in b/x11/gnome-libs/files/patch-devel-docs::gnome::Makefile.in deleted file mode 100644 index 17709b79f..000000000 --- a/x11/gnome-libs/files/patch-devel-docs::gnome::Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- devel-docs/gnome/Makefile.in 2002/05/01 01:47:18 1.1 -+++ devel-docs/gnome/Makefile.in 2002/05/01 01:50:40 -@@ -158,7 +158,7 @@ - # The directory containing the source code (if it contains documentation). - DOC_SOURCE_DIR = $(GNOME_LIBS_DIR)/libgnome - --HTML_DIR = $(datadir)/gnome/html -+HTML_DIR = $(prefix)/share/doc/gnomelibs - - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - diff --git a/x11/gnome-libs/files/patch-devel-docs::gnomeui::Makefile.in b/x11/gnome-libs/files/patch-devel-docs::gnomeui::Makefile.in deleted file mode 100644 index de8b5960f..000000000 --- a/x11/gnome-libs/files/patch-devel-docs::gnomeui::Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- devel-docs/gnomeui/Makefile.in 2002/05/01 01:47:18 1.1 -+++ devel-docs/gnomeui/Makefile.in 2002/05/01 01:50:55 -@@ -161,7 +161,7 @@ - CFLAGS = `gnome-config --cflags gnomeui` - LDFLAGS = `gnome-config --libs gnomeui` - --HTML_DIR = $(datadir)/gnome/html -+HTML_DIR = $(prefix)/share/doc/gnomelibs - - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - diff --git a/x11/gnome-libs/files/patch-devel-docs::gnorba::Makefile.in b/x11/gnome-libs/files/patch-devel-docs::gnorba::Makefile.in deleted file mode 100644 index e5a6981cd..000000000 --- a/x11/gnome-libs/files/patch-devel-docs::gnorba::Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- devel-docs/gnorba/Makefile.in 2002/05/01 01:47:18 1.1 -+++ devel-docs/gnorba/Makefile.in 2002/05/01 01:51:15 -@@ -158,7 +158,7 @@ - # The directory containing the source code (if it contains documentation). - DOC_SOURCE_DIR = $(GNOME_LIBS_DIR)/libgnorba - --HTML_DIR = $(datadir)/gnome/html -+HTML_DIR = $(prefix)/share/doc/gnomelibs - - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - diff --git a/x11/gnome-libs/files/patch-devel-docs::zvt::Makefile.in b/x11/gnome-libs/files/patch-devel-docs::zvt::Makefile.in deleted file mode 100644 index 60b6affec..000000000 --- a/x11/gnome-libs/files/patch-devel-docs::zvt::Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- devel-docs/zvt/Makefile.in 2002/05/01 01:47:18 1.1 -+++ devel-docs/zvt/Makefile.in 2002/05/01 01:51:06 -@@ -158,7 +158,7 @@ - # The directory containing the source code (if it contains documentation). - DOC_SOURCE_DIR = $(GNOME_LIBS_DIR)/zvt - --HTML_DIR = $(datadir)/gnome/html -+HTML_DIR = $(prefix)/share/doc/gnomelibs - - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - diff --git a/x11/gnome-libs/files/patch-gnome-data_Makefile.in b/x11/gnome-libs/files/patch-gnome-data_Makefile.in deleted file mode 100644 index c87c81052..000000000 --- a/x11/gnome-libs/files/patch-gnome-data_Makefile.in +++ /dev/null @@ -1,10 +0,0 @@ ---- gnome-data/Makefile.in.orig Fri Nov 26 00:59:37 2004 -+++ gnome-data/Makefile.in Fri Nov 26 00:59:47 2004 -@@ -387,7 +387,6 @@ - - install-data-local: - $(mkinstalldirs) $(DESTDIR)$(scoredir) -- -chgrp $(GAMES_GROUP) $(DESTDIR)$(scoredir) && chmod g=rwXs $(DESTDIR)$(scoredir) - $(top_builddir)/libgnome/gnome-gen-mimedb $(DESTDIR)$(sysconfdir)/mime-magic - - # Tell versions [3.59,3.63) of GNU make to not export all variables. diff --git a/x11/gnome-libs/files/patch-gnome-libs-1.4.2-gcc4 b/x11/gnome-libs/files/patch-gnome-libs-1.4.2-gcc4 deleted file mode 100644 index 3f4105964..000000000 --- a/x11/gnome-libs/files/patch-gnome-libs-1.4.2-gcc4 +++ /dev/null @@ -1,13 +0,0 @@ -diff -urN ../tmp-orig/gnome-libs-1.4.2/gtk-xmhtml/XmHTMLI.h ./gtk-xmhtml/XmHTMLI.h ---- ../tmp-orig/gnome-libs-1.4.2/gtk-xmhtml/XmHTMLI.h 1999-07-29 03:26:28.000000000 +0200 -+++ ./gtk-xmhtml/XmHTMLI.h 2004-12-22 18:02:43.408331024 +0100 -@@ -1058,9 +1058,6 @@ - #include "gtk-xmhtml-p.h" - - void gtk_xmhtml_set_outline (GtkXmHTML *html, int flag); --void my_x_query_colors(GdkColormap *colormap, -- GdkColor *colors, -- gint ncolors); - void - gtk_xmhtml_set_colors (GtkXmHTML *html, - Pixel foreground, diff --git a/x11/gnome-libs/files/patch-libart_lgpl::configure b/x11/gnome-libs/files/patch-libart_lgpl::configure deleted file mode 100644 index 2f4ef6723..000000000 --- a/x11/gnome-libs/files/patch-libart_lgpl::configure +++ /dev/null @@ -1,10 +0,0 @@ ---- libart_lgpl/configure 2002/04/29 09:45:17 1.1 -+++ libart_lgpl/configure 2002/04/29 09:45:37 -@@ -5090,6 +5090,7 @@ - - # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS - - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/x11/gnome-libs/files/patch-libgnomeui_gnome_segv.c b/x11/gnome-libs/files/patch-libgnomeui_gnome_segv.c deleted file mode 100644 index 30b441dac..000000000 --- a/x11/gnome-libs/files/patch-libgnomeui_gnome_segv.c +++ /dev/null @@ -1,14 +0,0 @@ ---- libgnomeui/gnome_segv.c.orig Sun Oct 13 20:35:01 2002 -+++ libgnomeui/gnome_segv.c Sun Oct 13 20:39:29 2002 -@@ -3,9 +3,9 @@ - - /* needed for sigaction and friends under 'gcc -ansi -pedantic' on - * GNU/Linux */ --#ifndef _POSIX_SOURCE -+/*#ifndef _POSIX_SOURCE - # define _POSIX_SOURCE 1 --#endif -+#endif*/ - #include <sys/types.h> - #include <sys/wait.h> - diff --git a/x11/gnome-libs/files/patch-po::Makefile.in.in b/x11/gnome-libs/files/patch-po::Makefile.in.in deleted file mode 100644 index 8cd933b46..000000000 --- a/x11/gnome-libs/files/patch-po::Makefile.in.in +++ /dev/null @@ -1,11 +0,0 @@ ---- po/Makefile.in.in 2002/01/14 11:02:35 1.1 -+++ po/Makefile.in.in 2002/01/14 11:02:49 -@@ -106,7 +106,7 @@ - @catalogs='$(CATALOGS)'; \ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ -- lang=`echo $$cat | sed 's/\.gmo$$//'`; \ -+ lang=`echo $$cat | sed 's/\.mo$$//'`; \ - dir=$(localedir)/$$lang/LC_MESSAGES; \ - $(mkinstalldirs) $(DESTDIR)$$dir; \ - if test -r $$cat; then \ diff --git a/x11/gnome-libs/files/patch-zvt_update.c b/x11/gnome-libs/files/patch-zvt_update.c deleted file mode 100644 index ff09cf056..000000000 --- a/x11/gnome-libs/files/patch-zvt_update.c +++ /dev/null @@ -1,11 +0,0 @@ ---- zvt/update.c.orig Sat Aug 24 04:22:10 2002 -+++ zvt/update.c Sat Aug 24 04:22:20 2002 -@@ -848,7 +848,7 @@ - if (c>=256) - return 1; - ch = c&0xff; -- return vx->wordclass[ch>>3]&(1<<(ch&7))!=0; -+ return (vx->wordclass[ch>>3]&(1<<(ch&7)))!=0; - } - - /* diff --git a/x11/gnome-libs/pkg-descr b/x11/gnome-libs/pkg-descr deleted file mode 100644 index f7f156423..000000000 --- a/x11/gnome-libs/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Libraries for GNOME, a GNU desktop environment - -WWW: http://www.gnome.org/ diff --git a/x11/gnome-libs/pkg-plist b/x11/gnome-libs/pkg-plist deleted file mode 100644 index 64c3256df..000000000 --- a/x11/gnome-libs/pkg-plist +++ /dev/null @@ -1,565 +0,0 @@ -bin/dns-helper -bin/gconfigger -bin/gnome-bug -bin/gnome-config -bin/gnome-dump-metadata -bin/gnome-gen-mimedb -bin/gnome-moz-remote -bin/gnome-name-service -bin/gnome-pty-helper -bin/gnome_segv -bin/goad-browser -bin/libart-config -bin/loadshlib -bin/new-object -etc/gnomeConf.sh -etc/libartConf.sh -etc/mime-magic -etc/mime-magic.dat -etc/paper.config -etc/sound/events/gnome.soundlist -etc/sound/events/gtk-events.soundlist -include/gnome-1.0/gnome.h -include/gnome-1.0/gtk-xmhtml/HTML.h -include/gnome-1.0/gtk-xmhtml/XmHTML.h -include/gnome-1.0/gtk-xmhtml/XmHTMLI.h -include/gnome-1.0/gtk-xmhtml/XmHTMLP.h -include/gnome-1.0/gtk-xmhtml/gtk-xmhtml-p.h -include/gnome-1.0/gtk-xmhtml/gtk-xmhtml.h -include/gnome-1.0/gtk-xmhtml/miniparse.h -include/gnome-1.0/gtk-xmhtml/toolkit.h -include/gnome-1.0/libart_lgpl/art_affine.h -include/gnome-1.0/libart_lgpl/art_alphagamma.h -include/gnome-1.0/libart_lgpl/art_bpath.h -include/gnome-1.0/libart_lgpl/art_config.h -include/gnome-1.0/libart_lgpl/art_filterlevel.h -include/gnome-1.0/libart_lgpl/art_gray_svp.h -include/gnome-1.0/libart_lgpl/art_misc.h -include/gnome-1.0/libart_lgpl/art_pathcode.h -include/gnome-1.0/libart_lgpl/art_pixbuf.h -include/gnome-1.0/libart_lgpl/art_point.h -include/gnome-1.0/libart_lgpl/art_rect.h -include/gnome-1.0/libart_lgpl/art_rect_svp.h -include/gnome-1.0/libart_lgpl/art_rect_uta.h -include/gnome-1.0/libart_lgpl/art_rgb.h -include/gnome-1.0/libart_lgpl/art_rgb_affine.h -include/gnome-1.0/libart_lgpl/art_rgb_bitmap_affine.h -include/gnome-1.0/libart_lgpl/art_rgb_pixbuf_affine.h -include/gnome-1.0/libart_lgpl/art_rgb_rgba_affine.h -include/gnome-1.0/libart_lgpl/art_rgb_svp.h -include/gnome-1.0/libart_lgpl/art_svp.h -include/gnome-1.0/libart_lgpl/art_svp_ops.h -include/gnome-1.0/libart_lgpl/art_svp_point.h -include/gnome-1.0/libart_lgpl/art_svp_render_aa.h -include/gnome-1.0/libart_lgpl/art_svp_vpath.h -include/gnome-1.0/libart_lgpl/art_svp_vpath_stroke.h -include/gnome-1.0/libart_lgpl/art_svp_wind.h -include/gnome-1.0/libart_lgpl/art_uta.h -include/gnome-1.0/libart_lgpl/art_uta_ops.h -include/gnome-1.0/libart_lgpl/art_uta_rect.h -include/gnome-1.0/libart_lgpl/art_uta_svp.h -include/gnome-1.0/libart_lgpl/art_uta_vpath.h -include/gnome-1.0/libart_lgpl/art_vpath.h -include/gnome-1.0/libart_lgpl/art_vpath_bpath.h -include/gnome-1.0/libart_lgpl/art_vpath_dash.h -include/gnome-1.0/libart_lgpl/art_vpath_svp.h -include/gnome-1.0/libart_lgpl/libart-features.h -include/gnome-1.0/libart_lgpl/libart.h -include/gnome-1.0/libgnome/gnome-config.h -include/gnome-1.0/libgnome/gnome-defs.h -include/gnome-1.0/libgnome/gnome-dentry.h -include/gnome-1.0/libgnome/gnome-exec.h -include/gnome-1.0/libgnome/gnome-fileconvert.h -include/gnome-1.0/libgnome/gnome-help.h -include/gnome-1.0/libgnome/gnome-history.h -include/gnome-1.0/libgnome/gnome-i18n.h -include/gnome-1.0/libgnome/gnome-magic.h -include/gnome-1.0/libgnome/gnome-metadata.h -include/gnome-1.0/libgnome/gnome-mime-info.h -include/gnome-1.0/libgnome/gnome-mime.h -include/gnome-1.0/libgnome/gnome-paper.h -include/gnome-1.0/libgnome/gnome-popt.h -include/gnome-1.0/libgnome/gnome-regex.h -include/gnome-1.0/libgnome/gnome-remote.h -include/gnome-1.0/libgnome/gnome-score.h -include/gnome-1.0/libgnome/gnome-sound.h -include/gnome-1.0/libgnome/gnome-triggers.h -include/gnome-1.0/libgnome/gnome-url.h -include/gnome-1.0/libgnome/gnome-util.h -include/gnome-1.0/libgnome/libgnome.h -include/gnome-1.0/libgnomeui/gnome-about.h -include/gnome-1.0/libgnomeui/gnome-animator.h -include/gnome-1.0/libgnomeui/gnome-app-helper.h -include/gnome-1.0/libgnomeui/gnome-app-util.h -include/gnome-1.0/libgnomeui/gnome-app.h -include/gnome-1.0/libgnomeui/gnome-appbar.h -include/gnome-1.0/libgnomeui/gnome-calculator.h -include/gnome-1.0/libgnomeui/gnome-canvas-image.h -include/gnome-1.0/libgnomeui/gnome-canvas-line.h -include/gnome-1.0/libgnomeui/gnome-canvas-load.h -include/gnome-1.0/libgnomeui/gnome-canvas-polygon.h -include/gnome-1.0/libgnomeui/gnome-canvas-rect-ellipse.h -include/gnome-1.0/libgnomeui/gnome-canvas-text.h -include/gnome-1.0/libgnomeui/gnome-canvas-util.h -include/gnome-1.0/libgnomeui/gnome-canvas-widget.h -include/gnome-1.0/libgnomeui/gnome-canvas.h -include/gnome-1.0/libgnomeui/gnome-client.h -include/gnome-1.0/libgnomeui/gnome-color-picker.h -include/gnome-1.0/libgnomeui/gnome-compat.h -include/gnome-1.0/libgnomeui/gnome-dateedit.h -include/gnome-1.0/libgnomeui/gnome-dentry-edit.h -include/gnome-1.0/libgnomeui/gnome-dialog-util.h -include/gnome-1.0/libgnomeui/gnome-dialog.h -include/gnome-1.0/libgnomeui/gnome-dns.h -include/gnome-1.0/libgnomeui/gnome-dock-band.h -include/gnome-1.0/libgnomeui/gnome-dock-item.h -include/gnome-1.0/libgnomeui/gnome-dock-layout.h -include/gnome-1.0/libgnomeui/gnome-dock.h -include/gnome-1.0/libgnomeui/gnome-druid-page-finish.h -include/gnome-1.0/libgnomeui/gnome-druid-page-standard.h -include/gnome-1.0/libgnomeui/gnome-druid-page-start.h -include/gnome-1.0/libgnomeui/gnome-druid-page.h -include/gnome-1.0/libgnomeui/gnome-druid.h -include/gnome-1.0/libgnomeui/gnome-entry.h -include/gnome-1.0/libgnomeui/gnome-file-entry.h -include/gnome-1.0/libgnomeui/gnome-font-picker.h -include/gnome-1.0/libgnomeui/gnome-font-selector.h -include/gnome-1.0/libgnomeui/gnome-geometry.h -include/gnome-1.0/libgnomeui/gnome-guru.h -include/gnome-1.0/libgnomeui/gnome-href.h -include/gnome-1.0/libgnomeui/gnome-ice.h -include/gnome-1.0/libgnomeui/gnome-icon-entry.h -include/gnome-1.0/libgnomeui/gnome-icon-item.h -include/gnome-1.0/libgnomeui/gnome-icon-list.h -include/gnome-1.0/libgnomeui/gnome-icon-sel.h -include/gnome-1.0/libgnomeui/gnome-icon-text.h -include/gnome-1.0/libgnomeui/gnome-init.h -include/gnome-1.0/libgnomeui/gnome-less.h -include/gnome-1.0/libgnomeui/gnome-mdi-child.h -include/gnome-1.0/libgnomeui/gnome-mdi-generic-child.h -include/gnome-1.0/libgnomeui/gnome-mdi-session.h -include/gnome-1.0/libgnomeui/gnome-mdi.h -include/gnome-1.0/libgnomeui/gnome-messagebox.h -include/gnome-1.0/libgnomeui/gnome-number-entry.h -include/gnome-1.0/libgnomeui/gnome-paper-selector.h -include/gnome-1.0/libgnomeui/gnome-pixmap-entry.h -include/gnome-1.0/libgnomeui/gnome-pixmap.h -include/gnome-1.0/libgnomeui/gnome-popup-help.h -include/gnome-1.0/libgnomeui/gnome-popup-menu.h -include/gnome-1.0/libgnomeui/gnome-preferences.h -include/gnome-1.0/libgnomeui/gnome-procbar.h -include/gnome-1.0/libgnomeui/gnome-properties.h -include/gnome-1.0/libgnomeui/gnome-property-entries.h -include/gnome-1.0/libgnomeui/gnome-propertybox.h -include/gnome-1.0/libgnomeui/gnome-scores.h -include/gnome-1.0/libgnomeui/gnome-spell.h -include/gnome-1.0/libgnomeui/gnome-startup.h -include/gnome-1.0/libgnomeui/gnome-stock.h -include/gnome-1.0/libgnomeui/gnome-types.h -include/gnome-1.0/libgnomeui/gnome-uidefs.h -include/gnome-1.0/libgnomeui/gnome-window-icon.h -include/gnome-1.0/libgnomeui/gnome-window.h -include/gnome-1.0/libgnomeui/gnome-winhints.h -include/gnome-1.0/libgnomeui/gnometypebuiltins.h -include/gnome-1.0/libgnomeui/gtk-clock.h -include/gnome-1.0/libgnomeui/gtk-ted.h -include/gnome-1.0/libgnomeui/gtkcauldron.h -include/gnome-1.0/libgnomeui/gtkdial.h -include/gnome-1.0/libgnomeui/gtkpixmapmenuitem.h -include/gnome-1.0/libgnomeui/libgnomeui.h -include/gnome-1.0/libgnorba/Table.h -include/gnome-1.0/libgnorba/gnome-factory.h -include/gnome-1.0/libgnorba/gnome-unknown.h -include/gnome-1.0/libgnorba/gnorba.h -include/gnome-1.0/popt-gnome.h -include/gnome-1.0/zvt/lists.h -include/gnome-1.0/zvt/vt.h -include/gnome-1.0/zvt/vtx.h -include/gnome-1.0/zvt/zvtterm.h -include/gnomesupport.h -lib/libart_lgpl.a -lib/libart_lgpl.la -lib/libart_lgpl.so -lib/libart_lgpl.so.5 -lib/libgnome.a -lib/libgnome.la -lib/libgnome.so -lib/libgnome.so.5 -lib/libgnomesupport.a -lib/libgnomesupport.la -lib/libgnomesupport.so -lib/libgnomesupport.so.5 -lib/libgnomeui.a -lib/libgnomeui.la -lib/libgnomeui.so -lib/libgnomeui.so.5 -lib/libgnorba.a -lib/libgnorba.la -lib/libgnorba.so -lib/libgnorba.so.5 -lib/libgnorbagtk.a -lib/libgnorbagtk.la -lib/libgnorbagtk.so -lib/libgnorbagtk.so.5 -lib/libgtkxmhtml.a -lib/libgtkxmhtml.la -lib/libgtkxmhtml.so -lib/libgtkxmhtml.so.5 -lib/libzvt.a -lib/libzvt.la -lib/libzvt.so -lib/libzvt.so.5 -share/aclocal/libart.m4 -%%DOCSDIR%%/gnome-decl.txt -%%DOCSDIR%%/gnome-sections.txt -%%DOCSDIR%%/gnome.html -%%DOCSDIR%%/gnome/book1.html -%%DOCSDIR%%/gnome/gnome-gnome-config.html -%%DOCSDIR%%/gnome/gnome-gnome-defs.html -%%DOCSDIR%%/gnome/gnome-gnome-dentry.html -%%DOCSDIR%%/gnome/gnome-gnome-exec.html -%%DOCSDIR%%/gnome/gnome-gnome-fileconvert.html -%%DOCSDIR%%/gnome/gnome-gnome-help.html -%%DOCSDIR%%/gnome/gnome-gnome-history.html -%%DOCSDIR%%/gnome/gnome-gnome-i18n.html -%%DOCSDIR%%/gnome/gnome-gnome-metadata.html -%%DOCSDIR%%/gnome/gnome-gnome-mime-info.html -%%DOCSDIR%%/gnome/gnome-gnome-mime.html -%%DOCSDIR%%/gnome/gnome-gnome-paper.html -%%DOCSDIR%%/gnome/gnome-gnome-popt.html -%%DOCSDIR%%/gnome/gnome-gnome-regex.html -%%DOCSDIR%%/gnome/gnome-gnome-remote.html -%%DOCSDIR%%/gnome/gnome-gnome-score.html -%%DOCSDIR%%/gnome/gnome-gnome-sound.html -%%DOCSDIR%%/gnome/gnome-gnome-triggers.html -%%DOCSDIR%%/gnome/gnome-gnome-url.html -%%DOCSDIR%%/gnome/gnome-gnome-util.html -%%DOCSDIR%%/gnome/gnome-libgnome.html -%%DOCSDIR%%/gnome/libgnome.html -%%DOCSDIR%%/gnomeui-decl.txt -%%DOCSDIR%%/gnomeui-sections.txt -%%DOCSDIR%%/gnomeui.hierarchy -%%DOCSDIR%%/gnomeui.html -%%DOCSDIR%%/gnomeui.types -%%DOCSDIR%%/gnomeui/book1.html -%%DOCSDIR%%/gnomeui/gnome-objects.html -%%DOCSDIR%%/gnomeui/gnomeabout.html -%%DOCSDIR%%/gnomeui/gnomeanimator.html -%%DOCSDIR%%/gnomeui/gnomeapp.html -%%DOCSDIR%%/gnomeui/gnomeappbar.html -%%DOCSDIR%%/gnomeui/gnomecalculator.html -%%DOCSDIR%%/gnomeui/gnomecanvas.html -%%DOCSDIR%%/gnomeui/gnomecanvasellipse.html -%%DOCSDIR%%/gnomeui/gnomecanvasgroup.html -%%DOCSDIR%%/gnomeui/gnomecanvasimage.html -%%DOCSDIR%%/gnomeui/gnomecanvasitem.html -%%DOCSDIR%%/gnomeui/gnomecanvasline.html -%%DOCSDIR%%/gnomeui/gnomecanvaspolygon.html -%%DOCSDIR%%/gnomeui/gnomecanvasre.html -%%DOCSDIR%%/gnomeui/gnomecanvasrect.html -%%DOCSDIR%%/gnomeui/gnomecanvastext.html -%%DOCSDIR%%/gnomeui/gnomecanvaswidget.html -%%DOCSDIR%%/gnomeui/gnomeclient.html -%%DOCSDIR%%/gnomeui/gnomecolorpicker.html -%%DOCSDIR%%/gnomeui/gnomedateedit.html -%%DOCSDIR%%/gnomeui/gnomedentryedit.html -%%DOCSDIR%%/gnomeui/gnomedialog.html -%%DOCSDIR%%/gnomeui/gnomedock.html -%%DOCSDIR%%/gnomeui/gnomedockband.html -%%DOCSDIR%%/gnomeui/gnomedockitem.html -%%DOCSDIR%%/gnomeui/gnomedocklayout.html -%%DOCSDIR%%/gnomeui/gnomedruid.html -%%DOCSDIR%%/gnomeui/gnomedruidpage.html -%%DOCSDIR%%/gnomeui/gnomedruidpagefinish.html -%%DOCSDIR%%/gnomeui/gnomedruidpagestandard.html -%%DOCSDIR%%/gnomeui/gnomedruidpagestart.html -%%DOCSDIR%%/gnomeui/gnomeentry.html -%%DOCSDIR%%/gnomeui/gnomefileentry.html -%%DOCSDIR%%/gnomeui/gnomefontpicker.html -%%DOCSDIR%%/gnomeui/gnomefontselector.html -%%DOCSDIR%%/gnomeui/gnomehref.html -%%DOCSDIR%%/gnomeui/gnomeiconentry.html -%%DOCSDIR%%/gnomeui/gnomeiconlist.html -%%DOCSDIR%%/gnomeui/gnomeiconselection.html -%%DOCSDIR%%/gnomeui/gnomeicontextitem.html -%%DOCSDIR%%/gnomeui/gnomeless.html -%%DOCSDIR%%/gnomeui/gnomemdi.html -%%DOCSDIR%%/gnomeui/gnomemdichild.html -%%DOCSDIR%%/gnomeui/gnomemdigenericchild.html -%%DOCSDIR%%/gnomeui/gnomemessagebox.html -%%DOCSDIR%%/gnomeui/gnomenumberentry.html -%%DOCSDIR%%/gnomeui/gnomepaperselector.html -%%DOCSDIR%%/gnomeui/gnomepixmap.html -%%DOCSDIR%%/gnomeui/gnomepixmapentry.html -%%DOCSDIR%%/gnomeui/gnomeprocbar.html -%%DOCSDIR%%/gnomeui/gnomepropertybox.html -%%DOCSDIR%%/gnomeui/gnomescores.html -%%DOCSDIR%%/gnomeui/gnomespell.html -%%DOCSDIR%%/gnomeui/gnomestock.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-app-helper.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-app-util.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-canvas-util.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-dialog-util.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-dns.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-geometry.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-ice.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-icon-text.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-init.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-mdi-session.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-popup-help.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-popup-menu.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-preferences.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-properties.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-property-entries.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-startup.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-types.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-uidefs.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-window-icon.html -%%DOCSDIR%%/gnomeui/gnomeui-gnome-winhints.html -%%DOCSDIR%%/gnomeui/gnomeui-gtkcauldron.html -%%DOCSDIR%%/gnomeui/gtkclock.html -%%DOCSDIR%%/gnomeui/gtkdial.html -%%DOCSDIR%%/gnomeui/gtkpixmapmenuitem.html -%%DOCSDIR%%/gnomeui/gtkted.html -%%DOCSDIR%%/gnomeui/libgnomeui.html -%%DOCSDIR%%/gnorba-decl.txt -%%DOCSDIR%%/gnorba-sections.txt -%%DOCSDIR%%/gnorba/book1.html -%%DOCSDIR%%/gnorba/gnorba-gnorba.html -%%DOCSDIR%%/gnorba/gnorba-goad.html -%%DOCSDIR%%/gnorba/libgnorba.html -%%DOCSDIR%%/zvt-decl.txt -%%DOCSDIR%%/zvt-sections.txt -%%DOCSDIR%%/zvt/book1.html -%%DOCSDIR%%/zvt/x1035.html -%%DOCSDIR%%/zvt/x1065.html -%%DOCSDIR%%/zvt/x1086.html -%%DOCSDIR%%/zvt/x1106.html -%%DOCSDIR%%/zvt/x119.html -%%DOCSDIR%%/zvt/x98.html -%%DOCSDIR%%/zvt/x987.html -%%DOCSDIR%%/zvt/x995.html -%%DOCSDIR%%/zvt/zvt-zvtterm.html -%%DOCSDIR%%/zvt/zvtterm-future.html -%%DOCSDIR%%/zvt/zvtterm-input-output.html -%%DOCSDIR%%/zvt/zvtterm-notes.html -%%DOCSDIR%%/zvt/zvtterm-properties.html -%%DOCSDIR%%/zvt/zvtterm-reference.html -%%DOCSDIR%%/zvt/zvtterm-window-hints.html -%%DOCSDIR%%/zvt/zvtterm.html -%%DOCSDIR%%/zvtterm.html -share/doc/libart/basic-foo.html -share/doc/libart/basic-rendering.html -share/doc/libart/basic.html -share/doc/libart/fdl-section1.html -share/doc/libart/fdl-section10.html -share/doc/libart/fdl-section2.html -share/doc/libart/fdl-section3.html -share/doc/libart/fdl-section4.html -share/doc/libart/fdl-section5.html -share/doc/libart/fdl-section6.html -share/doc/libart/fdl-section7.html -share/doc/libart/fdl-section8.html -share/doc/libart/fdl-section9.html -share/doc/libart/fdl-using.html -share/doc/libart/fdl.html -share/doc/libart/index.sgml -share/doc/libart/internals-intersector.html -share/doc/libart/internals.html -share/doc/libart/intro-file-names.html -share/doc/libart/intro.html -share/doc/libart/libart-affine-transformation-matrices.html -share/doc/libart/libart-art-alpha-gamma-stuff.html -share/doc/libart/libart-core-construction-apis.html -share/doc/libart/libart-extended-construction-apis.html -share/doc/libart/libart-memory-management.html -share/doc/libart/libart-svp-rendering.html -share/doc/libart/libart-svps.html -share/doc/libart/libart-transformation-operations.html -share/doc/libart/libart.html -share/doc/libart/problems-memory.html -share/doc/libart/problems.html -share/doc/libart/sample-display.html -share/doc/libart/sample.html -share/doc/libart/x35.html -share/doc/gnome-doc -share/doc/gnome-doc.1 -share/doc/gnome-doc.el -share/doc/gnome-mkstub.1 -share/doc/mkstub -share/gtkrc -share/gtkrc.el -share/gtkrc.eo -share/gtkrc.he -share/gtkrc.hy -share/gtkrc.iso88592 -share/gtkrc.iso88595 -share/gtkrc.ja -share/gtkrc.ka_GE.georgianacademy -share/gtkrc.ka_GE.georgianps -share/gtkrc.ko -share/gtkrc.ru -share/gtkrc.th -share/gtkrc.tr -share/gtkrc.uk -share/gtkrc.vi_VN.tcvn -share/gtkrc.vi_VN.viscii -share/gtkrc.zh_CN -share/gtkrc.zh_TW.Big5 -share/gnome/help/gnome-dev-info/C/addauth.html -share/gnome/help/gnome-dev-info/C/altpol.html -share/gnome/help/gnome-dev-info/C/arch.html -share/gnome/help/gnome-dev-info/C/book1.html -share/gnome/help/gnome-dev-info/C/codstd.html -share/gnome/help/gnome-dev-info/C/cvs.html -share/gnome/help/gnome-dev-info/C/dialogapputil-docs.html -share/gnome/help/gnome-dev-info/C/event-driven-programming.html -share/gnome/help/gnome-dev-info/C/gnome-actionarea.html -share/gnome/help/gnome-dev-info/C/gnome-app-helper-convenience-macros.html -share/gnome/help/gnome-dev-info/C/gnome-app-helper-functions.html -share/gnome/help/gnome-dev-info/C/gnome-app-helper-gnomeuiinfo.html -share/gnome/help/gnome-dev-info/C/gnome-app-helper-keybindings-config.html -share/gnome/help/gnome-dev-info/C/gnome-app-helper-quick-example.html -share/gnome/help/gnome-dev-info/C/gnome-app-helper.html -share/gnome/help/gnome-dev-info/C/gnome-app-util.html -share/gnome/help/gnome-dev-info/C/gnome-app.html -share/gnome/help/gnome-dev-info/C/gnome-canvas-coordinates.html -share/gnome/help/gnome-dev-info/C/gnome-canvas-getting-started.html -share/gnome/help/gnome-dev-info/C/gnome-canvas-object-arguments.html -share/gnome/help/gnome-dev-info/C/gnome-canvas-organization-of-items.html -share/gnome/help/gnome-dev-info/C/gnome-canvas.html -share/gnome/help/gnome-dev-info/C/gnome-client.html -share/gnome/help/gnome-dev-info/C/gnome-color-selector.html -share/gnome/help/gnome-dev-info/C/gnome-defs.html -share/gnome/help/gnome-dev-info/C/gnome-dentry.html -share/gnome/help/gnome-dev-info/C/gnome-dialog.html -share/gnome/help/gnome-dev-info/C/gnome-dns.html -share/gnome/help/gnome-dev-info/C/gnome-fileconvert.html -share/gnome/help/gnome-dev-info/C/gnome-font-selector.html -share/gnome/help/gnome-dev-info/C/gnome-help.html -share/gnome/help/gnome-dev-info/C/gnome-history.html -share/gnome/help/gnome-dev-info/C/gnome-hook.html -share/gnome/help/gnome-dev-info/C/gnome-i18n.html -share/gnome/help/gnome-dev-info/C/gnome-ice.html -share/gnome/help/gnome-dev-info/C/gnome-mdi-docs.html -share/gnome/help/gnome-dev-info/C/gnome-messagebox.html -share/gnome/help/gnome-dev-info/C/gnome-mime.html -share/gnome/help/gnome-dev-info/C/gnome-net.html -share/gnome/help/gnome-dev-info/C/gnome-pixmap.html -share/gnome/help/gnome-dev-info/C/gnome-plugins.html -share/gnome/help/gnome-dev-info/C/gnome-properties.html -share/gnome/help/gnome-dev-info/C/gnome-score.html -share/gnome/help/gnome-dev-info/C/gnome-scores.html -share/gnome/help/gnome-dev-info/C/gnome-session.html -share/gnome/help/gnome-dev-info/C/gnome-startup.html -share/gnome/help/gnome-dev-info/C/gnome-stock-imlib.html -share/gnome/help/gnome-dev-info/C/gnome-stock-xpm.html -share/gnome/help/gnome-dev-info/C/gnome-stock.html -share/gnome/help/gnome-dev-info/C/gnome-string.html -share/gnome/help/gnome-dev-info/C/gnome-triggers.html -share/gnome/help/gnome-dev-info/C/gnome-util.html -share/gnome/help/gnome-dev-info/C/gnomeappbar.html -share/gnome/help/gnome-dev-info/C/graphics-contexts.html -share/gnome/help/gnome-dev-info/C/gtk-clock.html -share/gnome/help/gnome-dev-info/C/gtk-ted.html -share/gnome/help/gnome-dev-info/C/intro.html -share/gnome/help/gnome-dev-info/C/libgnome.html -share/gnome/help/gnome-dev-info/C/libgnomeui.html -share/gnome/help/gnome-dev-info/C/libgnorba-docs.html -share/gnome/help/gnome-dev-info/C/ln14.html -share/gnome/help/gnome-dev-info/C/nontech.html -share/gnome/help/gnome-dev-info/C/orbitgtk.html -share/gnome/help/gnome-dev-info/C/start.html -share/gnome/help/gnome-dev-info/C/thisdoc.html -share/gnome/help/gnome-dev-info/C/tut-doc.html -share/gnome/help/gnome-dev-info/C/tut-i18n.html -share/gnome/help/gnome-dev-info/C/tut-menus.html -share/gnome/help/gnome-dev-info/C/tut-parsing.html -share/gnome/help/gnome-dev-info/C/tut-sm.html -share/gnome/help/gnome-dev-info/C/tutorial.html -share/gnome/help/gnome-dev-info/C/visuals.html -share/gnome/help/gnome-dev-info/C/what.html -share/gnome/help/gnome-dev-info/C/whatis.html -share/gnome/help/gnome-dev-info/C/x-concepts-docs.html -share/gnome/help/gnome-dev-info/C/x1453.html -share/gnome/help/gnome-dev-info/C/x2161.html -share/gnome/help/gnome-dev-info/C/x2674.html -share/gnome/help/gnome-dev-info/C/x671.html -share/idl/GnomeObject.idl -share/idl/Table.idl -share/idl/desktop-editor.idl -share/idl/desktop-textviewer.idl -share/idl/gnome-factory.idl -share/idl/gnome-unknown.idl -share/idl/name-service.idl -share/mime-info/gnome.mime -share/pixmaps/calculator-font.png -share/pixmaps/gnome-default-dlg.png -share/pixmaps/gnome-error.png -share/pixmaps/gnome-info.png -share/pixmaps/gnome-question.png -share/pixmaps/gnome-warning.png -share/pixmaps/no.xpm -share/pixmaps/yes.xpm -share/type-convert/gnome-make-postscript-mimes -share/type-convert/postscript.convert -share/type-convert/type.convert -share/locale/az/LC_MESSAGES/gnome-libs.mo -share/locale/ca/LC_MESSAGES/gnome-libs.mo -share/locale/cs/LC_MESSAGES/gnome-libs.mo -share/locale/da/LC_MESSAGES/gnome-libs.mo -share/locale/de/LC_MESSAGES/gnome-libs.mo -share/locale/el/LC_MESSAGES/gnome-libs.mo -share/locale/en_GB/LC_MESSAGES/gnome-libs.mo -share/locale/es/LC_MESSAGES/gnome-libs.mo -share/locale/et/LC_MESSAGES/gnome-libs.mo -share/locale/eu/LC_MESSAGES/gnome-libs.mo -share/locale/fi/LC_MESSAGES/gnome-libs.mo -share/locale/fr/LC_MESSAGES/gnome-libs.mo -share/locale/ga/LC_MESSAGES/gnome-libs.mo -share/locale/gl/LC_MESSAGES/gnome-libs.mo -share/locale/hr/LC_MESSAGES/gnome-libs.mo -share/locale/hu/LC_MESSAGES/gnome-libs.mo -share/locale/it/LC_MESSAGES/gnome-libs.mo -share/locale/ja/LC_MESSAGES/gnome-libs.mo -share/locale/ko/LC_MESSAGES/gnome-libs.mo -share/locale/lt/LC_MESSAGES/gnome-libs.mo -share/locale/lv/LC_MESSAGES/gnome-libs.mo -share/locale/ms/LC_MESSAGES/gnome-libs.mo -share/locale/nl/LC_MESSAGES/gnome-libs.mo -share/locale/nn/LC_MESSAGES/gnome-libs.mo -share/locale/no/LC_MESSAGES/gnome-libs.mo -share/locale/pl/LC_MESSAGES/gnome-libs.mo -share/locale/pt/LC_MESSAGES/gnome-libs.mo -share/locale/pt_BR/LC_MESSAGES/gnome-libs.mo -share/locale/ro/LC_MESSAGES/gnome-libs.mo -share/locale/ru/LC_MESSAGES/gnome-libs.mo -share/locale/sk/LC_MESSAGES/gnome-libs.mo -share/locale/sl/LC_MESSAGES/gnome-libs.mo -share/locale/sp/LC_MESSAGES/gnome-libs.mo -share/locale/sr/LC_MESSAGES/gnome-libs.mo -share/locale/sv/LC_MESSAGES/gnome-libs.mo -share/locale/ta/LC_MESSAGES/gnome-libs.mo -share/locale/tr/LC_MESSAGES/gnome-libs.mo -share/locale/uk/LC_MESSAGES/gnome-libs.mo -share/locale/vi/LC_MESSAGES/gnome-libs.mo -share/locale/wa/LC_MESSAGES/gnome-libs.mo -share/locale/zh_CN/LC_MESSAGES/gnome-libs.mo -share/locale/zh_TW/LC_MESSAGES/gnome-libs.mo -@dirrm share/type-convert -@dirrm share/gnome/help/gnome-dev-info/C -@dirrm share/gnome/help/gnome-dev-info -@dirrm share/doc/libart -@dirrm %%DOCSDIR%%/zvt -@dirrm %%DOCSDIR%%/gnorba -@dirrm %%DOCSDIR%%/gnomeui -@dirrm %%DOCSDIR%%/gnome -@dirrm %%DOCSDIR%% -@dirrm include/gnome-1.0/zvt -@dirrm include/gnome-1.0/libgnorba -@dirrm include/gnome-1.0/libgnomeui -@dirrm include/gnome-1.0/libgnome -@dirrm include/gnome-1.0/libart_lgpl -@dirrm include/gnome-1.0/gtk-xmhtml -@dirrmtry share/locale/sp/LC_MESSAGES -@dirrmtry share/locale/sp diff --git a/x11/gnome-menus/Makefile b/x11/gnome-menus/Makefile deleted file mode 100644 index 86f033b6c..000000000 --- a/x11/gnome-menus/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -# New ports collection makefile for: gnome-menus -# Date created: 30 November 2004 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-menus/Makefile,v 1.63 2007/09/21 01:47:24 mezz Exp $ -# - -PORTNAME= gnome-menus -PORTVERSION= 2.20.1 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Implementation of the FreeDesktop Desktop Menu Spec - -USE_GETTEXT= yes -USE_BZIP2= yes -USE_XLIB= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomevfs2 ltverhack -USE_AUTOTOOLS= libtool:15 -USE_PYTHON= yes -USE_LDCONFIG= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -.include <bsd.port.pre.mk> - -.if exists(${LOCALBASE}/lib/libfam.so) || !defined(WITHOUT_FAM) -USE_FAM= yes -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|applications.menu||' \ - ${WRKSRC}/layout/Makefile.in - @${REINPLACE_CMD} -e 's|applications.menu|gnome-applications.menu|' \ - ${WRKSRC}/util/test-menu-spec.c - @${REINPLACE_CMD} -e 's|/usr/share/gnome|${LOCALBASE}/share/gnome|g' \ - ${WRKSRC}/layout/applications.menu \ - ${WRKSRC}/layout/settings.menu - @${SED} -e 's|/usr/local|${LOCALBASE}|g' \ - < ${FILESDIR}/KDE.directory > ${WRKSRC}/KDE.directory - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ - ${WRKSRC}/simple-editor/GMenuSimpleEditor/menutreemodel.py - -post-install: - @${INSTALL_DATA} ${WRKSRC}/layout/applications.menu \ - ${PREFIX}/etc/xdg/menus/gnome-applications.menu - @${INSTALL_DATA} ${WRKSRC}/KDE.directory \ - ${PREFIX}/share/desktop-directories - -.include <bsd.port.post.mk> diff --git a/x11/gnome-menus/distinfo b/x11/gnome-menus/distinfo deleted file mode 100644 index 5e0997dd7..000000000 --- a/x11/gnome-menus/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-menus-2.20.1.tar.bz2) = ad141dc4d5e485e613b68f9fa58bae5f -SHA256 (gnome2/gnome-menus-2.20.1.tar.bz2) = f6c147983b8c2a6ed0798667d9bd2f58a47b6e6b8e4ab850f83db82beda6badb -SIZE (gnome2/gnome-menus-2.20.1.tar.bz2) = 450569 diff --git a/x11/gnome-menus/files/KDE.directory b/x11/gnome-menus/files/KDE.directory deleted file mode 100644 index d8cacb750..000000000 --- a/x11/gnome-menus/files/KDE.directory +++ /dev/null @@ -1,5 +0,0 @@ -[Desktop Entry] -Name=KDE -Comment=Some comment about KDE menu -Icon=/usr/local/share/icons/default.kde/48x48/apps/kmenu.png -Type=Directory diff --git a/x11/gnome-menus/files/patch-Makefile.in b/x11/gnome-menus/files/patch-Makefile.in deleted file mode 100644 index 621e0233c..000000000 --- a/x11/gnome-menus/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Mon Jul 24 15:57:52 2006 -+++ Makefile.in Mon Jul 24 15:58:05 2006 -@@ -244,7 +244,7 @@ sharedstatedir = @sharedstatedir@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - NULL = --@HAVE_PYTHON_TRUE@PYTHON_SUBDIRS = python simple-editor -+@HAVE_PYTHON_TRUE@PYTHON_SUBDIRS = python - ALL_SUBDIRS = \ - po \ - libmenu \ diff --git a/x11/gnome-menus/files/patch-layout::applications.menu b/x11/gnome-menus/files/patch-layout::applications.menu deleted file mode 100644 index 85533b6d6..000000000 --- a/x11/gnome-menus/files/patch-layout::applications.menu +++ /dev/null @@ -1,357 +0,0 @@ ---- layout/applications.menu.orig Sun Jul 8 18:04:11 2007 -+++ layout/applications.menu Sun Jul 8 18:04:35 2007 -@@ -6,24 +6,26 @@ - <Name>Applications</Name> - <Directory>Applications.directory</Directory> - -- <!-- Scan legacy dirs first, as later items take priority --> -- <KDELegacyDirs/> -- <LegacyDir>/etc/X11/applnk</LegacyDir> -+ <!-- Scan legacy dirs first, as later items take priority -+ <LegacyDir>/etc/X11/applnk</LegacyDir> --> - <LegacyDir>/usr/share/gnome/apps</LegacyDir> - - <!-- Read standard .directory and .desktop file locations --> - <DefaultAppDirs/> - <DefaultDirectoryDirs/> - -- <!-- Read in overrides and child menus from applications-merged/ --> -- <DefaultMergeDirs/> -- - <!-- Accessories submenu --> - <Menu> - <Name>Accessories</Name> - <Directory>Accessories.directory</Directory> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Category>Utility</Category> - <Not> - <Category>System</Category> -@@ -38,6 +40,12 @@ - <Directory>Accessibility.directory</Directory> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Category>Accessibility</Category> - <Not> - <Category>Settings</Category> -@@ -52,6 +60,12 @@ - <Directory>Development.directory</Directory> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Category>Development</Category> - </And> - <Filename>emacs.desktop</Filename> -@@ -64,6 +78,12 @@ - <Directory>Education.directory</Directory> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Category>Education</Category> - </And> - </Include> -@@ -75,6 +95,12 @@ - <Directory>Games.directory</Directory> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Category>Game</Category> - </And> - </Include> -@@ -86,6 +112,12 @@ - <Directory>Graphics.directory</Directory> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Category>Graphics</Category> - </And> - </Include> -@@ -97,6 +129,12 @@ - <Directory>Internet.directory</Directory> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Category>Network</Category> - </And> - </Include> -@@ -108,6 +146,12 @@ - <Directory>Multimedia.directory</Directory> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Category>AudioVideo</Category> - </And> - </Include> -@@ -119,6 +163,12 @@ - <Directory>Office.directory</Directory> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Category>Office</Category> - </And> - </Include> -@@ -130,6 +180,12 @@ - <Directory>System-Tools.directory</Directory> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Category>System</Category> - <Not><Category>Settings</Category></Not> - </And> -@@ -143,11 +199,204 @@ - <OnlyUnallocated/> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Not><Category>Core</Category></Not> - <Not><Category>Settings</Category></Not> - <Not><Category>Screensaver</Category></Not> - </And> - </Include> - </Menu> <!-- End Other --> -+ -+ <!-- Read in overrides and child menus from applications-merged/ --> -+ <DefaultMergeDirs/> -+ -+ <!-- KDE --> -+ <Menu> -+ <KDELegacyDirs/> -+ <Name>KDE</Name> -+ <Directory>KDE.directory</Directory> -+ -+ <!-- KAccessories submenu --> -+ <Menu> -+ <Name>Accessories</Name> -+ <Directory>Accessories.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Utility</Category> -+ <Not> -+ <Category>System</Category> -+ </Not> -+ </And> -+ </Include> -+ </Menu> <!-- End KAccessories --> -+ -+ <!-- KAccessibility submenu --> -+ <Menu> -+ <Name>Accessibility</Name> -+ <Directory>Accessibility.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Accessibility</Category> -+ <Not> -+ <Category>Settings</Category> -+ </Not> -+ </And> -+ </Include> -+ </Menu> <!-- End KAccessibility --> -+ -+ <!-- KDevelopment Tools --> -+ <Menu> -+ <Name>Development</Name> -+ <Directory>Development.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Development</Category> -+ </And> -+ </Include> -+ </Menu> <!-- End KDevelopment Tools --> -+ -+ <!-- KEducation --> -+ <Menu> -+ <Name>Education</Name> -+ <Directory>Education.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Education</Category> -+ </And> -+ </Include> -+ </Menu> <!-- End KEducation --> -+ -+ <!-- KGames --> -+ <Menu> -+ <Name>Games</Name> -+ <Directory>Games.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Game</Category> -+ </And> -+ </Include> -+ </Menu> <!-- End KGames --> -+ -+ <!-- KGraphics --> -+ <Menu> -+ <Name>Graphics</Name> -+ <Directory>Graphics.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Graphics</Category> -+ </And> -+ </Include> -+ </Menu> <!-- End KGraphics --> -+ -+ <!-- KInternet --> -+ <Menu> -+ <Name>Internet</Name> -+ <Directory>Internet.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Network</Category> -+ </And> -+ </Include> -+ </Menu> <!-- End KInternet --> -+ -+ <!-- KMultimedia --> -+ <Menu> -+ <Name>Multimedia</Name> -+ <Directory>Multimedia.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>AudioVideo</Category> -+ </And> -+ </Include> -+ </Menu> <!-- End KMultimedia --> -+ -+ <!-- KOffice --> -+ <Menu> -+ <Name>Office</Name> -+ <Directory>Office.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Or> -+ <Category>Office</Category> -+ </Or> -+ </And> -+ </Include> -+ </Menu><!-- End KOffice --> -+ -+ <!-- KSystem Tools--> -+ <Menu> -+ <Name>System</Name> -+ <Directory>System-Tools.directory</Directory> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>System</Category> -+ <Not><Category>Settings</Category></Not> -+ </And> -+ </Include> -+ </Menu> <!-- End KSystem Tools --> -+ -+ <!-- KOther --> -+ <Menu> -+ <Name>Other</Name> -+ <Directory>Other.directory</Directory> -+ <OnlyUnallocated/> -+ <Include> -+ <And> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ <Category>Application</Category> -+ <Not><Category>Core</Category></Not> -+ <Not><Category>Settings</Category></Not> -+ </And> -+ </Include> -+ </Menu> <!-- End KOther --> -+ </Menu> <!-- KDE --> - - </Menu> <!-- End Applications --> diff --git a/x11/gnome-menus/files/patch-layout::preferences.menu b/x11/gnome-menus/files/patch-layout::preferences.menu deleted file mode 100644 index 705e0e6cd..000000000 --- a/x11/gnome-menus/files/patch-layout::preferences.menu +++ /dev/null @@ -1,41 +0,0 @@ ---- layout/preferences.menu.orig Tue Feb 13 04:18:01 2007 -+++ layout/preferences.menu Tue Feb 13 16:54:35 2007 -@@ -9,12 +9,15 @@ - <DefaultAppDirs/> - <DefaultDirectoryDirs/> - -- <!-- Read in overrides and child menus from preferences-merged/ --> -- <DefaultMergeDirs/> -- - <!-- Stuff in the toplevel --> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Category>Settings</Category> - <Not> - <Or> -@@ -36,10 +39,19 @@ - <Directory>Settings-Accessibility.directory</Directory> - <Include> - <And> -+ <Not> -+ <Or> -+ <Category>Qt</Category> -+ <Category>KDE</Category> -+ </Or> -+ </Not> - <Category>Settings</Category> - <Category>Accessibility</Category> - </And> - </Include> - </Menu> -+ -+ <!-- Read in overrides and child menus from preferences-merged/ --> -+ <DefaultMergeDirs/> - - </Menu> <!-- End Prefs --> diff --git a/x11/gnome-menus/files/patch-simple-editor_GMenuSimpleEditor_menutreemodel.py b/x11/gnome-menus/files/patch-simple-editor_GMenuSimpleEditor_menutreemodel.py deleted file mode 100644 index b134a5817..000000000 --- a/x11/gnome-menus/files/patch-simple-editor_GMenuSimpleEditor_menutreemodel.py +++ /dev/null @@ -1,20 +0,0 @@ ---- simple-editor/GMenuSimpleEditor/menutreemodel.py.orig Mon Apr 11 05:36:04 2005 -+++ simple-editor/GMenuSimpleEditor/menutreemodel.py Tue Sep 6 11:04:46 2005 -@@ -29,7 +29,7 @@ - if os.environ.has_key ("XDG_CONFIG_DIRS"): - conf_dirs = os.environ["XDG_CONFIG_DIRS"] - if not conf_dirs: -- conf_dirs = "/etc/xdg" -+ conf_dirs = "%%LOCALBASE%%/etc/xdg" - - for conf_dir in conf_dirs.split (":"): - menu_file_path = os.path.join (conf_dir, "menus", menu_file) -@@ -51,7 +51,7 @@ - if os.environ.has_key ("XDG_DATA_DIRS"): - data_dirs = os.environ["XDG_DATA_DIRS"] - if not data_dirs: -- data_dirs = "/usr/local/share/:/usr/share/" -+ data_dirs = "%%LOCALBASE%%/share/" - - for data_dir in data_dirs.split (":"): - retval = load_icon_from_path (os.path.join (data_dir, "pixmaps", icon_value)) diff --git a/x11/gnome-menus/pkg-descr b/x11/gnome-menus/pkg-descr deleted file mode 100644 index 7b27b4e2e..000000000 --- a/x11/gnome-menus/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -This package is free software and is part of the -GNOME project. - -The package contains an implementation of the draft "Desktop -Menu Specification" from freedesktop.org: - - http://www.freedesktop.org/Standards/menu-spec - -Also contained here are the GNOME menu layout configuration -files, .directory files and assorted menu related utility programs. - --- gnome-menus README - -WWW: http://www.freedesktop.org/Standards/menu-spec diff --git a/x11/gnome-menus/pkg-plist b/x11/gnome-menus/pkg-plist deleted file mode 100644 index 793995388..000000000 --- a/x11/gnome-menus/pkg-plist +++ /dev/null @@ -1,156 +0,0 @@ -bin/gnome-menu-spec-test -etc/xdg/menus/gnome-applications.menu -etc/xdg/menus/preferences.menu -etc/xdg/menus/settings.menu -include/gnome-menus/gmenu-tree.h -lib/libgnome-menu.a -lib/libgnome-menu.la -lib/libgnome-menu.so -lib/libgnome-menu.so.2 -%%PYTHON_SITELIBDIR%%/gmenu.a -%%PYTHON_SITELIBDIR%%/gmenu.la -%%PYTHON_SITELIBDIR%%/gmenu.so -libdata/pkgconfig/libgnome-menu.pc -share/desktop-directories/Accessibility.directory -share/desktop-directories/Accessories.directory -share/desktop-directories/Applications.directory -share/desktop-directories/Desktop.directory -share/desktop-directories/Development.directory -share/desktop-directories/Education.directory -share/desktop-directories/Games.directory -share/desktop-directories/Graphics.directory -share/desktop-directories/Hardware.directory -share/desktop-directories/Internet.directory -share/desktop-directories/InternetAndNetwork.directory -share/desktop-directories/KDE.directory -share/desktop-directories/LookAndFeel.directory -share/desktop-directories/Multimedia.directory -share/desktop-directories/Office.directory -share/desktop-directories/Other.directory -share/desktop-directories/Personal.directory -share/desktop-directories/Preferences.directory -share/desktop-directories/Settings-Accessibility.directory -share/desktop-directories/Settings.directory -share/desktop-directories/System-Settings.directory -share/desktop-directories/System-Tools.directory -share/desktop-directories/System.directory -share/locale/ar/LC_MESSAGES/gnome-menus.mo -share/locale/as/LC_MESSAGES/gnome-menus.mo -share/locale/be/LC_MESSAGES/gnome-menus.mo -share/locale/be@latin/LC_MESSAGES/gnome-menus.mo -share/locale/bg/LC_MESSAGES/gnome-menus.mo -share/locale/bn/LC_MESSAGES/gnome-menus.mo -share/locale/bn_IN/LC_MESSAGES/gnome-menus.mo -share/locale/br/LC_MESSAGES/gnome-menus.mo -share/locale/ca/LC_MESSAGES/gnome-menus.mo -share/locale/cs/LC_MESSAGES/gnome-menus.mo -share/locale/cy/LC_MESSAGES/gnome-menus.mo -share/locale/da/LC_MESSAGES/gnome-menus.mo -share/locale/de/LC_MESSAGES/gnome-menus.mo -share/locale/dz/LC_MESSAGES/gnome-menus.mo -share/locale/el/LC_MESSAGES/gnome-menus.mo -share/locale/en_CA/LC_MESSAGES/gnome-menus.mo -share/locale/en_GB/LC_MESSAGES/gnome-menus.mo -share/locale/eo/LC_MESSAGES/gnome-menus.mo -share/locale/es/LC_MESSAGES/gnome-menus.mo -share/locale/et/LC_MESSAGES/gnome-menus.mo -share/locale/eu/LC_MESSAGES/gnome-menus.mo -share/locale/fa/LC_MESSAGES/gnome-menus.mo -share/locale/fi/LC_MESSAGES/gnome-menus.mo -share/locale/fr/LC_MESSAGES/gnome-menus.mo -share/locale/ga/LC_MESSAGES/gnome-menus.mo -share/locale/gl/LC_MESSAGES/gnome-menus.mo -share/locale/gn/LC_MESSAGES/gnome-menus.mo -share/locale/gu/LC_MESSAGES/gnome-menus.mo -share/locale/he/LC_MESSAGES/gnome-menus.mo -share/locale/hi/LC_MESSAGES/gnome-menus.mo -share/locale/hu/LC_MESSAGES/gnome-menus.mo -share/locale/hy/LC_MESSAGES/gnome-menus.mo -share/locale/id/LC_MESSAGES/gnome-menus.mo -share/locale/it/LC_MESSAGES/gnome-menus.mo -share/locale/ja/LC_MESSAGES/gnome-menus.mo -share/locale/ka/LC_MESSAGES/gnome-menus.mo -share/locale/kn/LC_MESSAGES/gnome-menus.mo -share/locale/ko/LC_MESSAGES/gnome-menus.mo -share/locale/ku/LC_MESSAGES/gnome-menus.mo -share/locale/ky/LC_MESSAGES/gnome-menus.mo -share/locale/lt/LC_MESSAGES/gnome-menus.mo -share/locale/lv/LC_MESSAGES/gnome-menus.mo -share/locale/mg/LC_MESSAGES/gnome-menus.mo -share/locale/mk/LC_MESSAGES/gnome-menus.mo -share/locale/ml/LC_MESSAGES/gnome-menus.mo -share/locale/mn/LC_MESSAGES/gnome-menus.mo -share/locale/mr/LC_MESSAGES/gnome-menus.mo -share/locale/ms/LC_MESSAGES/gnome-menus.mo -share/locale/nb/LC_MESSAGES/gnome-menus.mo -share/locale/ne/LC_MESSAGES/gnome-menus.mo -share/locale/nl/LC_MESSAGES/gnome-menus.mo -share/locale/nn/LC_MESSAGES/gnome-menus.mo -share/locale/oc/LC_MESSAGES/gnome-menus.mo -share/locale/or/LC_MESSAGES/gnome-menus.mo -share/locale/pa/LC_MESSAGES/gnome-menus.mo -share/locale/pl/LC_MESSAGES/gnome-menus.mo -share/locale/pt/LC_MESSAGES/gnome-menus.mo -share/locale/pt_BR/LC_MESSAGES/gnome-menus.mo -share/locale/ro/LC_MESSAGES/gnome-menus.mo -share/locale/ru/LC_MESSAGES/gnome-menus.mo -share/locale/rw/LC_MESSAGES/gnome-menus.mo -share/locale/si/LC_MESSAGES/gnome-menus.mo -share/locale/sk/LC_MESSAGES/gnome-menus.mo -share/locale/sl/LC_MESSAGES/gnome-menus.mo -share/locale/sq/LC_MESSAGES/gnome-menus.mo -share/locale/sr/LC_MESSAGES/gnome-menus.mo -share/locale/sr@Latn/LC_MESSAGES/gnome-menus.mo -share/locale/sv/LC_MESSAGES/gnome-menus.mo -share/locale/ta/LC_MESSAGES/gnome-menus.mo -share/locale/te/LC_MESSAGES/gnome-menus.mo -share/locale/th/LC_MESSAGES/gnome-menus.mo -share/locale/tr/LC_MESSAGES/gnome-menus.mo -share/locale/ug/LC_MESSAGES/gnome-menus.mo -share/locale/uk/LC_MESSAGES/gnome-menus.mo -share/locale/uz@cyrillic/LC_MESSAGES/gnome-menus.mo -share/locale/vi/LC_MESSAGES/gnome-menus.mo -share/locale/xh/LC_MESSAGES/gnome-menus.mo -share/locale/zh_CN/LC_MESSAGES/gnome-menus.mo -share/locale/zh_HK/LC_MESSAGES/gnome-menus.mo -share/locale/zh_TW/LC_MESSAGES/gnome-menus.mo -@dirrmtry share/desktop-directories -@dirrm include/gnome-menus -@dirrmtry etc/xdg/menus -@dirrmtry etc/xdg -@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/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/gn/LC_MESSAGES -@dirrmtry share/locale/gn -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/gnome-panel/Makefile b/x11/gnome-panel/Makefile deleted file mode 100644 index caa52bb04..000000000 --- a/x11/gnome-panel/Makefile +++ /dev/null @@ -1,76 +0,0 @@ -# New ports collection makefile for: gnomepanel -# Date created: 27 April 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-panel/Makefile,v 1.160 2007/09/18 15:04:44 ahze Exp $ -# - -PORTNAME= gnome-panel -PORTVERSION= 2.20.1 -PORTREVISION?= 0 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/gnome-panel/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Panel component for the GNOME 2 Desktop - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -USE_GETTEXT= yes -USE_XLIB= yes -INSTALLS_OMF= yes -USE_LDCONFIG= yes -INSTALLS_ICONS= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomedesktop \ - libwnck gnomemenus gnomedocutils ltverhack referencehack -WANT_GNOME= yes -GNOME_DESKTOP_VERSION=2 -USE_GMAKE= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ARGS= --with-kde-datadir=${LOCALBASE}/share \ - --with-kde-docdir=${LOCALBASE}/share/doc -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= gnome-panel.1 -GCONF_SCHEMAS= clock.schemas fish.schemas \ - panel-compatibility.schemas panel-general.schemas \ - panel-global.schemas panel-object.schemas \ - panel-toplevel.schemas window-list.schemas \ - workspace-switcher.schemas - -OPTIONS= EVOLUTION "use the Evolution calendar if installed" on - -.if defined(PACKAGE_BUILDING) -.undef WITHOUT_GNOME -WITH_GNOME= yes -.endif - -.include <bsd.port.pre.mk> - -.if defined(WITH_EVOLUTION) && ${HAVE_GNOME:Mevolutiondataserver}!="" -USE_GNOME+= evolutiondataserver -CONFIGURE_ARGS+=--enable-eds -.else -CONFIGURE_ARGS+=--disable-eds -.endif - -post-patch: - @${FIND} ${WRKSRC} -type f | \ - ${XARGS} -n 10 ${REINPLACE_CMD} -e \ - 's|"applications.menu"|"gnome-applications.menu"|' -.if ( ${OSVERSION} > 600000 && ${OSVERSION} < 600006 ) || \ - ( ${OSVERSION} < 503101 ) -.for po in da.po it.po zh_CN.po zh_TW.po - @${REINPLACE_CMD} -e 's|%-|%|g' ${WRKSRC}/po/${po} -.endfor -.endif - -.include <bsd.port.post.mk> - -.endif diff --git a/x11/gnome-panel/distinfo b/x11/gnome-panel/distinfo deleted file mode 100644 index 1f542a4af..000000000 --- a/x11/gnome-panel/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-panel-2.20.1.tar.bz2) = 87ef96c2cbb8ecaa328420c0d31cc4c0 -SHA256 (gnome2/gnome-panel-2.20.1.tar.bz2) = 3ec39b085b905946fa891cb01ae320166a85e11e850f29bf622057a00a4d1b01 -SIZE (gnome2/gnome-panel-2.20.1.tar.bz2) = 2820992 diff --git a/x11/gnome-panel/files/patch-config.h.in b/x11/gnome-panel/files/patch-config.h.in deleted file mode 100644 index 8a59166a5..000000000 --- a/x11/gnome-panel/files/patch-config.h.in +++ /dev/null @@ -1,11 +0,0 @@ ---- config.h.in.orig Thu Jan 2 19:50:41 2003 -+++ config.h.in Mon Jan 6 13:11:12 2003 -@@ -96,6 +96,8 @@ - /* Define to 1 if you have the <stdlib.h> header file. */ - #undef HAVE_STDLIB_H - -+#undef HAVE_LANGINFO_H -+ - /* Define to 1 if you have the <strings.h> header file. */ - #undef HAVE_STRINGS_H - diff --git a/x11/gnome-panel/files/patch-configure b/x11/gnome-panel/files/patch-configure deleted file mode 100644 index 732f3a860..000000000 --- a/x11/gnome-panel/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Wed Jan 14 15:54:42 2004 -+++ configure Wed Jan 14 15:55:13 2004 -@@ -5536,7 +5536,7 @@ - - - for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ -- inttypes.h stdint.h unistd.h -+ inttypes.h stdint.h unistd.h langinfo.h - do - as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` - echo "$as_me:$LINENO: checking for $ac_header" >&5 diff --git a/x11/gnome-panel/files/patch-gnome-panel_menu.c b/x11/gnome-panel/files/patch-gnome-panel_menu.c deleted file mode 100644 index aa7aeae8c..000000000 --- a/x11/gnome-panel/files/patch-gnome-panel_menu.c +++ /dev/null @@ -1,42 +0,0 @@ ---- gnome-panel/menu.c.orig Sat Mar 26 15:12:10 2005 -+++ gnome-panel/menu.c Fri Jun 3 11:17:45 2005 -@@ -1535,8 +1535,8 @@ - return NULL; - } - --static void --image_menu_shown (GtkWidget *image, gpointer data) -+static gboolean -+image_menu_exposed (GtkWidget *image, GdkEventExpose *event, gpointer data) - { - IconToLoad *new_icon; - IconToLoad *icon; -@@ -1545,7 +1545,7 @@ - - /* if we've already handled this */ - if (gtk_image_get_storage_type (GTK_IMAGE (image)) != GTK_IMAGE_EMPTY) -- return; -+ return FALSE; /* propagate event */ - - if (find_in_load_list (image) == NULL) { - new_icon = icon_to_load_copy (icon); -@@ -1554,6 +1554,8 @@ - } - if (load_icons_id == 0) - load_icons_id = g_idle_add (load_icons_handler, NULL); -+ -+ return FALSE; /* propagate event */ - } - - static void -@@ -1601,8 +1603,8 @@ - gtk_image_menu_item_set_image ( - GTK_IMAGE_MENU_ITEM (image_menu_item), image); - -- g_signal_connect_data (image, "map", -- G_CALLBACK (image_menu_shown), icon, -+ g_signal_connect_data (image, "expose-event", -+ G_CALLBACK (image_menu_exposed), icon, - (GClosureNotify) icon_to_load_free, 0); - - g_signal_connect (image, "destroy", diff --git a/x11/gnome-panel/files/patch-po_ja.po b/x11/gnome-panel/files/patch-po_ja.po deleted file mode 100644 index 5a71e3919..000000000 --- a/x11/gnome-panel/files/patch-po_ja.po +++ /dev/null @@ -1,20 +0,0 @@ ---- po/ja.po.orig 2007-08-13 19:37:02.000000000 -0400 -+++ po/ja.po 2007-08-14 17:00:06.000000000 -0400 -@@ -97,7 +97,7 @@ msgstr "%k:%M" - #. * possible. - #: ../applets/clock/calendar-window.c:234 - msgid "%b %d" --msgstr "%b%eæ—¥" -+msgstr "%B%eæ—¥" - - #: ../applets/clock/calendar-window.c:742 - msgid "_Tasks" -@@ -138,7 +138,7 @@ msgstr "%k:%M:%S" - #. - #: ../applets/clock/clock.c:369 - msgid "%a %b %e" --msgstr "%b%eæ—¥ (%a)" -+msgstr "%B%eæ—¥ (%a)" - - #. translators: reverse the order of these arguments - #. * if the time should come before the diff --git a/x11/gnome-panel/files/patch-po_ko.po b/x11/gnome-panel/files/patch-po_ko.po deleted file mode 100644 index 45d98a92c..000000000 --- a/x11/gnome-panel/files/patch-po_ko.po +++ /dev/null @@ -1,38 +0,0 @@ ---- po/ko.po.orig Sun Jul 8 18:23:19 2007 -+++ po/ko.po Sun Jul 8 18:26:46 2007 -@@ -88,7 +88,7 @@ - #. * possible. - #: ../applets/clock/calendar-window.c:233 - msgid "%b %d" --msgstr "%b %eì¼" -+msgstr "%B %eì¼" - - #: ../applets/clock/calendar-window.c:741 - msgid "_Tasks" -@@ -129,7 +129,7 @@ - #. - #: ../applets/clock/clock.c:367 - msgid "%a %b %e" --msgstr "%b %eì¼ (%a)" -+msgstr "%B %eì¼ (%a)" - - #. translators: reverse the order of these arguments - #. * if the time should come before the -@@ -156,7 +156,7 @@ - #. Show date in tooltip - #: ../applets/clock/clock.c:520 - msgid "%A %B %d" --msgstr "%b %eì¼ %A" -+msgstr "%B %eì¼ %A" - - #: ../applets/clock/clock.c:534 - msgid "Click to hide your appointments and tasks" -@@ -188,7 +188,7 @@ - - #: ../applets/clock/clock.c:1073 - msgid "%A, %B %d %Y" --msgstr "%Yë…„ %b %eì¼ %A" -+msgstr "%Yë…„ %B %eì¼ %A" - - #: ../applets/clock/clock.c:1148 - #, c-format diff --git a/x11/gnome-panel/pkg-descr b/x11/gnome-panel/pkg-descr deleted file mode 100644 index 263044b5e..000000000 --- a/x11/gnome-panel/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This drives the GNOME 2 panel. - -WWW: http://www.gnome.org/ diff --git a/x11/gnome-panel/pkg-plist b/x11/gnome-panel/pkg-plist deleted file mode 100644 index 717d6d3cf..000000000 --- a/x11/gnome-panel/pkg-plist +++ /dev/null @@ -1,581 +0,0 @@ -bin/gnome-desktop-item-edit -bin/gnome-panel -bin/panel-test-applets -@unexec gconftool-2 --direct --config-source=xml::%D/etc/gconf/gconf.xml.defaults --unload %D/etc/gconf/schemas/panel-default-setup.entries /apps/panel > /dev/null || /usr/bin/true -@unexec gconftool-2 --direct --config-source=xml::%D/etc/gconf/gconf.xml.defaults --unload %D/etc/gconf/schemas/panel-default-setup.entries > /dev/null || /usr/bin/true -etc/gconf/schemas/panel-default-setup.entries -@exec gconftool-2 --direct --config-source=xml::%D/etc/gconf/gconf.xml.defaults --load %D/etc/gconf/schemas/panel-default-setup.entries > /dev/null || /usr/bin/true -@exec gconftool-2 --direct --config-source=xml::%D/etc/gconf/gconf.xml.defaults --load %D/etc/gconf/schemas/panel-default-setup.entries /apps/panel > /dev/null || /usr/bin/true -include/panel-2.0/GNOME_Panel.h -include/panel-2.0/panel-applet-enums.h -include/panel-2.0/panel-applet-gconf.h -include/panel-2.0/panel-applet.h -lib/libpanel-applet-2.a -lib/libpanel-applet-2.la -lib/libpanel-applet-2.so -lib/libpanel-applet-2.so.0 -libdata/bonobo/servers/GNOME_ClockApplet_Factory.server -libdata/bonobo/servers/GNOME_FishApplet_Factory.server -libdata/bonobo/servers/GNOME_NotificationAreaApplet.server -libdata/bonobo/servers/GNOME_Panel.server -libdata/bonobo/servers/GNOME_Wncklet_Factory.server -libdata/pkgconfig/libpanelapplet-2.0.pc -libexec/clock-applet -libexec/fish-applet-2 -libexec/notification-area-applet -libexec/wnck-applet -share/applications/gnome-panel.desktop -share/gnome-2.0/ui/GNOME_ClockApplet.xml -share/gnome-2.0/ui/GNOME_FishApplet.xml -share/gnome-2.0/ui/GNOME_NotificationAreaApplet.xml -share/gnome-2.0/ui/GNOME_Panel_Popup.xml -share/gnome-2.0/ui/GNOME_ShowDesktopApplet.xml -share/gnome-2.0/ui/GNOME_WindowListApplet.xml -share/gnome-2.0/ui/GNOME_WindowMenuApplet.xml -share/gnome-2.0/ui/GNOME_WorkspaceSwitcherApplet.xml -%%DATADIR%%/glade/fish.glade -%%DATADIR%%/glade/panel-properties-dialog.glade -%%DATADIR%%/glade/panel-run-dialog.glade -%%DATADIR%%/glade/panel-test-applets.glade -%%DATADIR%%/glade/timezone.glade -%%DATADIR%%/glade/window-list.glade -%%DATADIR%%/glade/workspace-switcher.glade -%%DATADIR%%/pixmaps/fishanim.png -%%DATADIR%%/pixmaps/footguy.png -%%DATADIR%%/pixmaps/gnome-gegl2-2.png -%%DATADIR%%/pixmaps/gnome-gegl2.png -%%DATADIR%%/pixmaps/monkey.png -%%DATADIR%%/pixmaps/oldwanda.png -%%DATADIR%%/pixmaps/wanda.png -%%DATADIR%%/pixmaps/world_map-960.png -share/gnome-panelrc -share/gnome/help/clock/C/clock.xml -share/gnome/help/clock/C/figures/clock_applet.png -share/gnome/help/clock/C/legal.xml -share/gnome/help/clock/ca/clock.xml -share/gnome/help/clock/ca/figures/clock_applet.png -share/gnome/help/clock/ca/legal.xml -share/gnome/help/clock/de/clock.xml -share/gnome/help/clock/de/figures/clock_applet.png -share/gnome/help/clock/de/legal.xml -share/gnome/help/clock/el/clock.xml -share/gnome/help/clock/el/figures/clock_applet.png -share/gnome/help/clock/el/legal.xml -share/gnome/help/clock/es/clock.xml -share/gnome/help/clock/es/figures/clock_applet.png -share/gnome/help/clock/es/legal.xml -share/gnome/help/clock/fr/clock.xml -share/gnome/help/clock/fr/figures/clock_applet.png -share/gnome/help/clock/fr/legal.xml -share/gnome/help/clock/it/clock.xml -share/gnome/help/clock/it/figures/clock_applet.png -share/gnome/help/clock/it/legal.xml -share/gnome/help/clock/ja/clock.xml -share/gnome/help/clock/ja/figures/clock_applet.png -share/gnome/help/clock/ja/legal.xml -share/gnome/help/clock/ko/clock.xml -share/gnome/help/clock/ko/figures/clock_applet.png -share/gnome/help/clock/ko/legal.xml -share/gnome/help/clock/nl/clock.xml -share/gnome/help/clock/nl/figures/clock_applet.png -share/gnome/help/clock/nl/legal.xml -share/gnome/help/clock/oc/clock.xml -share/gnome/help/clock/oc/figures/clock_applet.png -share/gnome/help/clock/oc/legal.xml -share/gnome/help/clock/pa/clock.xml -share/gnome/help/clock/pa/figures/clock_applet.png -share/gnome/help/clock/pa/legal.xml -share/gnome/help/clock/ru/clock.xml -share/gnome/help/clock/ru/figures/clock_applet.png -share/gnome/help/clock/ru/legal.xml -share/gnome/help/clock/sr/clock.xml -share/gnome/help/clock/sr/figures/clock_applet.png -share/gnome/help/clock/sr/legal.xml -share/gnome/help/clock/sv/clock.xml -share/gnome/help/clock/sv/figures/clock_applet.png -share/gnome/help/clock/sv/legal.xml -share/gnome/help/clock/uk/clock.xml -share/gnome/help/clock/uk/figures/clock_applet.png -share/gnome/help/clock/uk/legal.xml -share/gnome/help/clock/zh_CN/clock.xml -share/gnome/help/clock/zh_CN/figures/clock_applet.png -share/gnome/help/clock/zh_CN/legal.xml -share/gnome/help/clock/zh_TW/clock.xml -share/gnome/help/clock/zh_TW/figures/clock_applet.png -share/gnome/help/clock/zh_TW/legal.xml -share/gnome/help/fish-applet-2/de/figures/fish_applet.png -share/gnome/help/fish-applet-2/de/figures/fish_settings.png -share/gnome/help/fish-applet-2/de/fish-applet-2.xml -share/gnome/help/fish-applet-2/de/legal.xml -share/gnome/help/fish-applet-2/ja/figures/fish_applet.png -share/gnome/help/fish-applet-2/ja/fish-applet-2.xml -share/gnome/help/fish-applet-2/ja/legal.xml -share/gnome/help/fish-applet-2/zh_CN/figures/fish_applet.png -share/gnome/help/fish-applet-2/zh_CN/figures/fish_settings.png -share/gnome/help/fish-applet-2/zh_CN/fish-applet-2.xml -share/gnome/help/fish-applet-2/zh_CN/legal.xml -share/gnome/help/fish-applet-2/zh_TW/figures/fish_applet.png -share/gnome/help/fish-applet-2/zh_TW/figures/fish_settings.png -share/gnome/help/fish-applet-2/zh_TW/fish-applet-2.xml -share/gnome/help/fish-applet-2/zh_TW/legal.xml -share/gnome/help/fish/C/figures/fish_applet.png -share/gnome/help/fish/C/fish.xml -share/gnome/help/fish/C/legal.xml -share/gnome/help/fish/ca/figures/fish_applet.png -share/gnome/help/fish/ca/fish.xml -share/gnome/help/fish/ca/legal.xml -share/gnome/help/fish/el/figures/fish_applet.png -share/gnome/help/fish/el/fish.xml -share/gnome/help/fish/el/legal.xml -share/gnome/help/fish/es/figures/fish_applet.png -share/gnome/help/fish/es/fish.xml -share/gnome/help/fish/es/legal.xml -share/gnome/help/fish/fr/figures/fish_applet.png -share/gnome/help/fish/fr/fish.xml -share/gnome/help/fish/fr/legal.xml -share/gnome/help/fish/it/figures/fish_applet.png -share/gnome/help/fish/it/fish.xml -share/gnome/help/fish/it/legal.xml -share/gnome/help/fish/ko/figures/fish_applet.png -share/gnome/help/fish/ko/fish.xml -share/gnome/help/fish/ko/legal.xml -share/gnome/help/fish/oc/figures/fish_applet.png -share/gnome/help/fish/oc/fish.xml -share/gnome/help/fish/oc/legal.xml -share/gnome/help/fish/sv/figures/fish_applet.png -share/gnome/help/fish/sv/fish.xml -share/gnome/help/fish/sv/legal.xml -share/gnome/help/fish/uk/figures/fish_applet.png -share/gnome/help/fish/uk/fish.xml -share/gnome/help/fish/uk/legal.xml -share/gnome/help/window-list/C/window-list.xml -share/gnome/help/window-list/ca/window-list.xml -share/gnome/help/window-list/de/figures/window_list_applet.png -share/gnome/help/window-list/de/figures/window_list_group.png -share/gnome/help/window-list/de/figures/window_list_group_applet.png -share/gnome/help/window-list/de/legal.xml -share/gnome/help/window-list/de/window-list.xml -share/gnome/help/window-list/el/window-list.xml -share/gnome/help/window-list/es/window-list.xml -share/gnome/help/window-list/fr/window-list.xml -share/gnome/help/window-list/it/window-list.xml -share/gnome/help/window-list/ja/figures/window_list_applet.png -share/gnome/help/window-list/ja/figures/window_list_group_applet.png -share/gnome/help/window-list/ja/legal.xml -share/gnome/help/window-list/ja/window-list.xml -share/gnome/help/window-list/ko/window-list.xml -share/gnome/help/window-list/oc/window-list.xml -share/gnome/help/window-list/pa/window-list.xml -share/gnome/help/window-list/ru/window-list.xml -share/gnome/help/window-list/sv/window-list.xml -share/gnome/help/window-list/uk/window-list.xml -share/gnome/help/window-list/zh_CN/window-list.xml -share/gnome/help/window-list/zh_TW/figures/window_list_applet.png -share/gnome/help/window-list/zh_TW/figures/window_list_group.png -share/gnome/help/window-list/zh_TW/figures/window_list_group_applet.png -share/gnome/help/window-list/zh_TW/legal.xml -share/gnome/help/window-list/zh_TW/window-list.xml -share/gnome/help/workspace-switcher/C/workspace-switcher.xml -share/gnome/help/workspace-switcher/ca/workspace-switcher.xml -share/gnome/help/workspace-switcher/de/figures/workspace_switcher_applet.png -share/gnome/help/workspace-switcher/de/figures/workspacelist_applet.png -share/gnome/help/workspace-switcher/de/legal.xml -share/gnome/help/workspace-switcher/de/workspace-switcher.xml -share/gnome/help/workspace-switcher/el/workspace-switcher.xml -share/gnome/help/workspace-switcher/es/workspace-switcher.xml -share/gnome/help/workspace-switcher/fr/workspace-switcher.xml -share/gnome/help/workspace-switcher/it/workspace-switcher.xml -share/gnome/help/workspace-switcher/ja/figures/workspace_switcher_applet.png -share/gnome/help/workspace-switcher/ja/legal.xml -share/gnome/help/workspace-switcher/ja/workspace-switcher.xml -share/gnome/help/workspace-switcher/ko/workspace-switcher.xml -share/gnome/help/workspace-switcher/nl/workspace-switcher.xml -share/gnome/help/workspace-switcher/oc/workspace-switcher.xml -share/gnome/help/workspace-switcher/pa/workspace-switcher.xml -share/gnome/help/workspace-switcher/ru/workspace-switcher.xml -share/gnome/help/workspace-switcher/sv/workspace-switcher.xml -share/gnome/help/workspace-switcher/uk/workspace-switcher.xml -share/gnome/help/workspace-switcher/vi/workspace-switcher.xml -share/gnome/help/workspace-switcher/zh_CN/figures/workspace_switcher_applet.png -share/gnome/help/workspace-switcher/zh_CN/figures/workspacelist_applet.png -share/gnome/help/workspace-switcher/zh_CN/legal.xml -share/gnome/help/workspace-switcher/zh_CN/workspace-switcher.xml -share/gnome/help/workspace-switcher/zh_TW/figures/workspace_switcher_applet.png -share/gnome/help/workspace-switcher/zh_TW/figures/workspacelist_applet.png -share/gnome/help/workspace-switcher/zh_TW/legal.xml -share/gnome/help/workspace-switcher/zh_TW/workspace-switcher.xml -share/icons/hicolor/16x16/apps/gnome-panel-clock.png -share/icons/hicolor/16x16/apps/gnome-panel-drawer.png -share/icons/hicolor/16x16/apps/gnome-panel-fish.png -share/icons/hicolor/16x16/apps/gnome-panel-force-quit.png -share/icons/hicolor/16x16/apps/gnome-panel-launcher.png -share/icons/hicolor/16x16/apps/gnome-panel-notification-area.png -share/icons/hicolor/16x16/apps/gnome-panel-separator.png -share/icons/hicolor/16x16/apps/gnome-panel-window-list.png -share/icons/hicolor/16x16/apps/gnome-panel-window-menu.png -share/icons/hicolor/16x16/apps/gnome-panel-workspace-switcher.png -share/icons/hicolor/16x16/apps/gnome-panel.png -share/icons/hicolor/22x22/apps/gnome-panel-clock.png -share/icons/hicolor/22x22/apps/gnome-panel-drawer.png -share/icons/hicolor/22x22/apps/gnome-panel-fish.png -share/icons/hicolor/22x22/apps/gnome-panel-force-quit.png -share/icons/hicolor/22x22/apps/gnome-panel-launcher.png -share/icons/hicolor/22x22/apps/gnome-panel-notification-area.png -share/icons/hicolor/22x22/apps/gnome-panel-separator.png -share/icons/hicolor/22x22/apps/gnome-panel-window-list.png -share/icons/hicolor/22x22/apps/gnome-panel-window-menu.png -share/icons/hicolor/22x22/apps/gnome-panel-workspace-switcher.png -share/icons/hicolor/22x22/apps/gnome-panel.png -share/icons/hicolor/24x24/apps/gnome-panel-clock.png -share/icons/hicolor/24x24/apps/gnome-panel-drawer.png -share/icons/hicolor/24x24/apps/gnome-panel-fish.png -share/icons/hicolor/24x24/apps/gnome-panel-force-quit.png -share/icons/hicolor/24x24/apps/gnome-panel-launcher.png -share/icons/hicolor/24x24/apps/gnome-panel-notification-area.png -share/icons/hicolor/24x24/apps/gnome-panel-separator.png -share/icons/hicolor/24x24/apps/gnome-panel-window-list.png -share/icons/hicolor/24x24/apps/gnome-panel-window-menu.png -share/icons/hicolor/24x24/apps/gnome-panel-workspace-switcher.png -share/icons/hicolor/24x24/apps/gnome-panel.png -share/icons/hicolor/32x32/apps/gnome-panel-clock.png -share/icons/hicolor/32x32/apps/gnome-panel-drawer.png -share/icons/hicolor/32x32/apps/gnome-panel-fish.png -share/icons/hicolor/32x32/apps/gnome-panel-force-quit.png -share/icons/hicolor/32x32/apps/gnome-panel-launcher.png -share/icons/hicolor/32x32/apps/gnome-panel-notification-area.png -share/icons/hicolor/32x32/apps/gnome-panel-separator.png -share/icons/hicolor/32x32/apps/gnome-panel-window-list.png -share/icons/hicolor/32x32/apps/gnome-panel-window-menu.png -share/icons/hicolor/32x32/apps/gnome-panel-workspace-switcher.png -share/icons/hicolor/32x32/apps/gnome-panel.png -share/icons/hicolor/scalable/apps/gnome-panel-clock.svg -share/icons/hicolor/scalable/apps/gnome-panel-drawer.svg -share/icons/hicolor/scalable/apps/gnome-panel-fish.svg -share/icons/hicolor/scalable/apps/gnome-panel-force-quit.svg -share/icons/hicolor/scalable/apps/gnome-panel-launcher.svg -share/icons/hicolor/scalable/apps/gnome-panel-notification-area.svg -share/icons/hicolor/scalable/apps/gnome-panel-separator.svg -share/icons/hicolor/scalable/apps/gnome-panel-window-list.svg -share/icons/hicolor/scalable/apps/gnome-panel-window-menu.svg -share/icons/hicolor/scalable/apps/gnome-panel-workspace-switcher.svg -share/icons/hicolor/scalable/apps/gnome-panel.svg -share/idl/gnome-panel-2.0/GNOME_Panel.idl -share/locale/af/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/am/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ar/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/az/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/be/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/be@latin/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/bg/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/bn/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/br/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/bs/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ca/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/cs/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/cy/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/da/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/de/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/dz/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/el/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/en_CA/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/en_GB/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/eo/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/es/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/et/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/eu/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/fa/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/fi/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/fr/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ga/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/gl/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/gu/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/he/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/hi/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/hr/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/hu/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/hy/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/id/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/it/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ja/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ka/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/kn/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ko/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ku/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ky/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/li/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/lt/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/lv/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/mg/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/mi/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/mk/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ml/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/mn/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/mr/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ms/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/nb/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ne/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/nl/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/nn/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/nso/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/oc/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/or/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/pa/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/pl/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/pt/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ro/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ru/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/rw/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/si/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sk/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sl/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sq/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sr/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sr@Latn/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sr@ije/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/sv/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/ta/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/te/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/th/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/tr/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/uk/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/uz/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/uz@cyrillic/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/vi/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/wa/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/xh/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/yi/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gnome-panel-2.0.mo -share/locale/zu/LC_MESSAGES/gnome-panel-2.0.mo -share/omf/clock/clock-C.omf -share/omf/clock/clock-ca.omf -share/omf/clock/clock-de.omf -share/omf/clock/clock-el.omf -share/omf/clock/clock-es.omf -share/omf/clock/clock-fr.omf -share/omf/clock/clock-it.omf -share/omf/clock/clock-ja.omf -share/omf/clock/clock-ko.omf -share/omf/clock/clock-nl.omf -share/omf/clock/clock-oc.omf -share/omf/clock/clock-pa.omf -share/omf/clock/clock-ru.omf -share/omf/clock/clock-sr.omf -share/omf/clock/clock-sv.omf -share/omf/clock/clock-uk.omf -share/omf/clock/clock-zh_CN.omf -share/omf/clock/clock-zh_TW.omf -share/omf/fish/fish-C.omf -share/omf/fish/fish-ca.omf -share/omf/fish/fish-el.omf -share/omf/fish/fish-es.omf -share/omf/fish/fish-fr.omf -share/omf/fish/fish-it.omf -share/omf/fish/fish-ko.omf -share/omf/fish/fish-oc.omf -share/omf/fish/fish-sv.omf -share/omf/fish/fish-uk.omf -share/omf/gnome-panel/fish-applet-2-de.omf -share/omf/gnome-panel/fish-applet-2-ja.omf -share/omf/gnome-panel/fish-applet-2-zh_CN.omf -share/omf/gnome-panel/fish-applet-2-zh_TW.omf -share/omf/gnome-panel/window-list-de.omf -share/omf/gnome-panel/window-list-ja.omf -share/omf/gnome-panel/window-list-zh_TW.omf -share/omf/gnome-panel/workspace-switcher-de.omf -share/omf/gnome-panel/workspace-switcher-ja.omf -share/omf/gnome-panel/workspace-switcher-zh_CN.omf -share/omf/gnome-panel/workspace-switcher-zh_TW.omf -share/omf/window-list/window-list-C.omf -share/omf/window-list/window-list-ca.omf -share/omf/window-list/window-list-de.omf -share/omf/window-list/window-list-el.omf -share/omf/window-list/window-list-es.omf -share/omf/window-list/window-list-fr.omf -share/omf/window-list/window-list-it.omf -share/omf/window-list/window-list-ko.omf -share/omf/window-list/window-list-oc.omf -share/omf/window-list/window-list-pa.omf -share/omf/window-list/window-list-ru.omf -share/omf/window-list/window-list-sv.omf -share/omf/window-list/window-list-uk.omf -share/omf/window-list/window-list-zh_CN.omf -share/omf/workspace-switcher/workspace-switcher-C.omf -share/omf/workspace-switcher/workspace-switcher-ca.omf -share/omf/workspace-switcher/workspace-switcher-de.omf -share/omf/workspace-switcher/workspace-switcher-el.omf -share/omf/workspace-switcher/workspace-switcher-es.omf -share/omf/workspace-switcher/workspace-switcher-fr.omf -share/omf/workspace-switcher/workspace-switcher-it.omf -share/omf/workspace-switcher/workspace-switcher-ko.omf -share/omf/workspace-switcher/workspace-switcher-nl.omf -share/omf/workspace-switcher/workspace-switcher-oc.omf -share/omf/workspace-switcher/workspace-switcher-pa.omf -share/omf/workspace-switcher/workspace-switcher-ru.omf -share/omf/workspace-switcher/workspace-switcher-sv.omf -share/omf/workspace-switcher/workspace-switcher-uk.omf -share/omf/workspace-switcher/workspace-switcher-vi.omf -@dirrm share/omf/workspace-switcher -@dirrm share/omf/window-list -@dirrm share/omf/gnome-panel -@dirrm share/omf/fish -@dirrm share/omf/clock -@dirrm share/idl/gnome-panel-2.0 -@dirrm share/gnome/help/workspace-switcher/zh_TW/figures -@dirrm share/gnome/help/workspace-switcher/zh_TW -@dirrm share/gnome/help/workspace-switcher/zh_CN/figures -@dirrm share/gnome/help/workspace-switcher/zh_CN -@dirrm share/gnome/help/workspace-switcher/vi -@dirrm share/gnome/help/workspace-switcher/uk -@dirrm share/gnome/help/workspace-switcher/sv -@dirrm share/gnome/help/workspace-switcher/ru -@dirrm share/gnome/help/workspace-switcher/pa -@dirrm share/gnome/help/workspace-switcher/oc -@dirrm share/gnome/help/workspace-switcher/nl -@dirrm share/gnome/help/workspace-switcher/ko -@dirrm share/gnome/help/workspace-switcher/ja/figures -@dirrm share/gnome/help/workspace-switcher/ja -@dirrm share/gnome/help/workspace-switcher/it -@dirrm share/gnome/help/workspace-switcher/fr -@dirrm share/gnome/help/workspace-switcher/es -@dirrm share/gnome/help/workspace-switcher/el -@dirrm share/gnome/help/workspace-switcher/de/figures -@dirrm share/gnome/help/workspace-switcher/de -@dirrm share/gnome/help/workspace-switcher/ca -@dirrm share/gnome/help/workspace-switcher/C -@dirrm share/gnome/help/workspace-switcher -@dirrm share/gnome/help/window-list/zh_TW/figures -@dirrm share/gnome/help/window-list/zh_TW -@dirrm share/gnome/help/window-list/zh_CN -@dirrm share/gnome/help/window-list/uk -@dirrm share/gnome/help/window-list/sv -@dirrm share/gnome/help/window-list/ru -@dirrm share/gnome/help/window-list/pa -@dirrm share/gnome/help/window-list/oc -@dirrm share/gnome/help/window-list/ko -@dirrm share/gnome/help/window-list/ja/figures -@dirrm share/gnome/help/window-list/ja -@dirrm share/gnome/help/window-list/it -@dirrm share/gnome/help/window-list/fr -@dirrm share/gnome/help/window-list/es -@dirrm share/gnome/help/window-list/el -@dirrm share/gnome/help/window-list/de/figures -@dirrm share/gnome/help/window-list/de -@dirrm share/gnome/help/window-list/ca -@dirrm share/gnome/help/window-list/C -@dirrm share/gnome/help/window-list -@dirrm share/gnome/help/fish/uk/figures -@dirrm share/gnome/help/fish/uk -@dirrm share/gnome/help/fish/sv/figures -@dirrm share/gnome/help/fish/sv -@dirrm share/gnome/help/fish/oc/figures -@dirrm share/gnome/help/fish/oc -@dirrm share/gnome/help/fish/ko/figures -@dirrm share/gnome/help/fish/ko -@dirrm share/gnome/help/fish/it/figures -@dirrm share/gnome/help/fish/it -@dirrm share/gnome/help/fish/fr/figures -@dirrm share/gnome/help/fish/fr -@dirrm share/gnome/help/fish/es/figures -@dirrm share/gnome/help/fish/es -@dirrm share/gnome/help/fish/el/figures -@dirrm share/gnome/help/fish/el -@dirrm share/gnome/help/fish/ca/figures -@dirrm share/gnome/help/fish/ca -@dirrm share/gnome/help/fish/C/figures -@dirrm share/gnome/help/fish/C -@dirrm share/gnome/help/fish-applet-2/zh_TW/figures -@dirrm share/gnome/help/fish-applet-2/zh_TW -@dirrm share/gnome/help/fish-applet-2/zh_CN/figures -@dirrm share/gnome/help/fish-applet-2/zh_CN -@dirrm share/gnome/help/fish-applet-2/ja/figures -@dirrm share/gnome/help/fish-applet-2/ja -@dirrm share/gnome/help/fish-applet-2/de/figures -@dirrm share/gnome/help/fish-applet-2/de -@dirrm share/gnome/help/fish-applet-2 -@dirrm share/gnome/help/fish -@dirrm share/gnome/help/clock/zh_TW/figures -@dirrm share/gnome/help/clock/zh_TW -@dirrm share/gnome/help/clock/zh_CN/figures -@dirrm share/gnome/help/clock/zh_CN -@dirrm share/gnome/help/clock/uk/figures -@dirrm share/gnome/help/clock/uk -@dirrm share/gnome/help/clock/sv/figures -@dirrm share/gnome/help/clock/sv -@dirrm share/gnome/help/clock/sr/figures -@dirrm share/gnome/help/clock/sr -@dirrm share/gnome/help/clock/ru/figures -@dirrm share/gnome/help/clock/ru -@dirrm share/gnome/help/clock/pa/figures -@dirrm share/gnome/help/clock/pa -@dirrm share/gnome/help/clock/oc/figures -@dirrm share/gnome/help/clock/oc -@dirrm share/gnome/help/clock/nl/figures -@dirrm share/gnome/help/clock/nl -@dirrm share/gnome/help/clock/ko/figures -@dirrm share/gnome/help/clock/ko -@dirrm share/gnome/help/clock/ja/figures -@dirrm share/gnome/help/clock/ja -@dirrm share/gnome/help/clock/it/figures -@dirrm share/gnome/help/clock/it -@dirrm share/gnome/help/clock/fr/figures -@dirrm share/gnome/help/clock/fr -@dirrm share/gnome/help/clock/es/figures -@dirrm share/gnome/help/clock/es -@dirrm share/gnome/help/clock/el/figures -@dirrm share/gnome/help/clock/el -@dirrm share/gnome/help/clock/de/figures -@dirrm share/gnome/help/clock/de -@dirrm share/gnome/help/clock/ca/figures -@dirrm share/gnome/help/clock/ca -@dirrm share/gnome/help/clock/C/figures -@dirrm share/gnome/help/clock/C -@dirrm share/gnome/help/clock -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%% -@dirrm include/panel-2.0 -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@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@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@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/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/applications diff --git a/x11/gnome-screensaver/Makefile b/x11/gnome-screensaver/Makefile deleted file mode 100644 index ad8a10d5a..000000000 --- a/x11/gnome-screensaver/Makefile +++ /dev/null @@ -1,67 +0,0 @@ -# New ports collection makefile for: gnome-screensaver -# Date created: 09 June 2005 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-screensaver/Makefile,v 1.79 2007/08/28 18:00:16 marcus Exp $ -# - -PORTNAME= gnome-screensaver -PORTVERSION= 2.20.0 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME screen saver and locker - -RUN_DEPENDS= xscreensaver-gl-helper:${PORTSDIR}/x11/xscreensaver-gnome-hacks - -USE_BZIP2= yes -USE_XLIB= yes -USE_GMAKE= yes -USE_GETTEXT= yes -GNU_CONFIGURE= yes -USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui gnomemenus \ - libgnomekbd -CONFIGURE_ARGS= --with-gdm-config=${LOCALBASE}/etc/gdm/custom.conf \ - --with-xscreensaverdir=${XSCREENSAVER_DIR} \ - --with-xscreensaverhackdir=${LOCALBASE}/bin/xscreensaver-hacks -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -GCONF_SCHEMAS= gnome-screensaver.schemas - -PLIST= ${WRKDIR}/pkg-plist - -XSCREENSAVER_DIR= ${LOCALBASE}/share/xscreensaver/config -SCREENSAVER_DIR= share/applications/screensavers - -XSCREENSAVER_EXCLUDE= "(popsquares.xml)" - -OPTIONS= PAM "Pluggable Authentication Module support" off - -.include <bsd.port.pre.mk> - -.if !defined(WITH_PAM) -CONFIGURE_ARGS+= --disable-pam -.endif - -pre-install: - @${CAT} ${.CURDIR}/pkg-plist > ${PLIST} - @cd ${XSCREENSAVER_DIR} && ${FIND} -s * -maxdepth 1 -type f -name "*.xml" | \ - ${GREP} -Ev ${XSCREENSAVER_EXCLUDE} | \ - ${SED} -e 's:^:${SCREENSAVER_DIR}/:' | \ - ${SED} -e 's:[.]xml$$:.desktop:' >> ${PLIST} - @${ECHO_CMD} @dirrm ${SCREENSAVER_DIR} >> ${PLIST} - -post-install: - ${CHOWN} root ${PREFIX}/libexec/gnome-screensaver-dialog - ${CHMOD} +s ${PREFIX}/libexec/gnome-screensaver-dialog - ${MKDIR} ${PREFIX}/${SCREENSAVER_DIR} - cd ${PREFIX}/${SCREENSAVER_DIR} && \ - ${FIND} -s ${XSCREENSAVER_DIR} -maxdepth 1 -type f -name "*.xml" | \ - ${GREP} -Ev ${XSCREENSAVER_EXCLUDE} | \ - ${XARGS} ${WRKSRC}/data/migrate-xscreensaver-config.sh - -.include <bsd.port.post.mk> diff --git a/x11/gnome-screensaver/distinfo b/x11/gnome-screensaver/distinfo deleted file mode 100644 index e83e9955e..000000000 --- a/x11/gnome-screensaver/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-screensaver-2.20.0.tar.bz2) = d166a3ebf69289331b2ebcf5c0187fd9 -SHA256 (gnome2/gnome-screensaver-2.20.0.tar.bz2) = 9ee744058d2c7139634543951a62828b2e1b69fe33cf0b5456737e9c5201dbb9 -SIZE (gnome2/gnome-screensaver-2.20.0.tar.bz2) = 2013842 diff --git a/x11/gnome-screensaver/files/patch-data_Makefile.in b/x11/gnome-screensaver/files/patch-data_Makefile.in deleted file mode 100644 index a474e9ef2..000000000 --- a/x11/gnome-screensaver/files/patch-data_Makefile.in +++ /dev/null @@ -1,73 +0,0 @@ ---- data/Makefile.in.orig Mon Nov 7 05:37:01 2005 -+++ data/Makefile.in Mon Nov 7 05:37:38 2005 -@@ -737,38 +737,38 @@ - @GCONF_SCHEMAS_INSTALL_FALSE@install-data-local: - - install-data-hook: -- @system=`uname`; \ -- if test -f /usr/include/security/pam_appl.h; then \ -- if test '!' -d $(DESTDIR)$(PAM_PREFIX)/pam.d; then \ -- $(mkinstalldirs) $(DESTDIR)$(PAM_PREFIX)/pam.d; \ -- chmod 755 $(DESTDIR)$(PAM_PREFIX)/pam.d; \ -- fi; \ -- if test $$system = Linux; then \ -- if test '!' -f $(DESTDIR)$(PAM_PREFIX)/pam.d/gnome-screensaver; then \ -- $(INSTALL_DATA) gnome-screensaver $(DESTDIR)$(PAM_PREFIX)/pam.d/gnome-screensaver; \ -- fi; \ -- if test "x$(PAM_PREFIX)" != "x/etc/pam.d"; then \ -- echo "***" ; \ -- echo "*** Warning: gnome-screensaver has been compiled with support for" ; \ -- echo "*** Pluggable Authentication Modules (PAM). However, you may need to" ; \ -- echo "*** manually install $(PAM_PREFIX)/pam.d/gnome-screensaver" ; \ -- echo "*** to /etc/pam.d/gnome-screensaver. Otherwise, unlocking might" ; \ -- echo "*** not work." ; \ -- echo "***" ; \ -- echo "*** Note: If you are using SuSE/Novell you may have to modify this file." ; \ -- echo "***" ; \ -- fi; \ -- fi; \ -- if test $$system = SunOS; then \ -- echo "***" ; \ -- echo "*** Warning: gnome-screensaver has been compiled with support for" ; \ -- echo "*** Pluggable Authentication Modules (PAM). However, you" ; \ -- echo "*** need to manually add authentication for gnome-screensaver in" ; \ -- echo "*** $(PAM_PREFIX)/pam.conf or /etc/pam.conf." ; \ -- echo "*** Otherwise, unlocking might not work." ; \ -- echo "***" ; \ -- fi; \ -- fi -+# @system=`uname`; \ -+# if test -f /usr/include/security/pam_appl.h; then \ -+# if test '!' -d $(DESTDIR)$(PAM_PREFIX)/pam.d; then \ -+# $(mkinstalldirs) $(DESTDIR)$(PAM_PREFIX)/pam.d; \ -+# chmod 755 $(DESTDIR)$(PAM_PREFIX)/pam.d; \ -+# fi; \ -+# if test $$system = Linux; then \ -+# if test '!' -f $(DESTDIR)$(PAM_PREFIX)/pam.d/gnome-screensaver; then \ -+# $(INSTALL_DATA) gnome-screensaver $(DESTDIR)$(PAM_PREFIX)/pam.d/gnome-screensaver; \ -+# fi; \ -+# if test "x$(PAM_PREFIX)" != "x/etc/pam.d"; then \ -+# echo "***" ; \ -+# echo "*** Warning: gnome-screensaver has been compiled with support for" ; \ -+# echo "*** Pluggable Authentication Modules (PAM). However, you may need to" ; \ -+# echo "*** manually install $(PAM_PREFIX)/pam.d/gnome-screensaver" ; \ -+# echo "*** to /etc/pam.d/gnome-screensaver. Otherwise, unlocking might" ; \ -+# echo "*** not work." ; \ -+# echo "***" ; \ -+# echo "*** Note: If you are using SuSE/Novell you may have to modify this file." ; \ -+# echo "***" ; \ -+# fi; \ -+# fi; \ -+# if test $$system = SunOS; then \ -+# echo "***" ; \ -+# echo "*** Warning: gnome-screensaver has been compiled with support for" ; \ -+# echo "*** Pluggable Authentication Modules (PAM). However, you" ; \ -+# echo "*** need to manually add authentication for gnome-screensaver in" ; \ -+# echo "*** $(PAM_PREFIX)/pam.conf or /etc/pam.conf." ; \ -+# echo "*** Otherwise, unlocking might not work." ; \ -+# echo "***" ; \ -+# fi; \ -+# fi - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. - .NOEXPORT: diff --git a/x11/gnome-screensaver/files/patch-src_gs-job.c b/x11/gnome-screensaver/files/patch-src_gs-job.c deleted file mode 100644 index 39e303d27..000000000 --- a/x11/gnome-screensaver/files/patch-src_gs-job.c +++ /dev/null @@ -1,12 +0,0 @@ ---- src/gs-job.c.orig Wed Sep 7 09:23:59 2005 -+++ src/gs-job.c Mon Sep 12 13:24:11 2005 -@@ -29,7 +29,8 @@ - #include <sys/wait.h> - #include <errno.h> - --#if defined(HAVE_SETPRIORITY) && defined(PRIO_PROCESS) -+#if defined(HAVE_SETPRIORITY) -+#include <sys/time.h> - #include <sys/resource.h> - #endif - diff --git a/x11/gnome-screensaver/pkg-descr b/x11/gnome-screensaver/pkg-descr deleted file mode 100644 index 96af92f11..000000000 --- a/x11/gnome-screensaver/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Gnome-screensaver is GNOME-based screen saver and locker that aims to have -simple, sane, secure defaults and be well integrated with the desktop. -It is designed to support: - - * the ability to lock down configuration settings - * translation into other languages - * user switching diff --git a/x11/gnome-screensaver/pkg-plist b/x11/gnome-screensaver/pkg-plist deleted file mode 100644 index fd8810021..000000000 --- a/x11/gnome-screensaver/pkg-plist +++ /dev/null @@ -1,115 +0,0 @@ -bin/gnome-screensaver -bin/gnome-screensaver-command -bin/gnome-screensaver-preferences -etc/xdg/menus/gnome-screensavers.menu -libdata/pkgconfig/gnome-screensaver.pc -libexec/gnome-screensaver-dialog -libexec/gnome-screensaver-gl-helper -libexec/gnome-screensaver/floaters -libexec/gnome-screensaver/popsquares -libexec/gnome-screensaver/slideshow -share/applications/gnome-screensaver-preferences.desktop -share/applications/screensavers/cosmos-slideshow.desktop -share/applications/screensavers/footlogo-floaters.desktop -share/applications/screensavers/personal-slideshow.desktop -share/applications/screensavers/popsquares.desktop -share/desktop-directories/gnome-screensaver.directory -%%DATADIR%%/gnome-screensaver-preferences.glade -%%DATADIR%%/lock-dialog-default.glade -share/locale/ar/LC_MESSAGES/gnome-screensaver.mo -share/locale/be@latin/LC_MESSAGES/gnome-screensaver.mo -share/locale/bg/LC_MESSAGES/gnome-screensaver.mo -share/locale/bn/LC_MESSAGES/gnome-screensaver.mo -share/locale/bn_IN/LC_MESSAGES/gnome-screensaver.mo -share/locale/ca/LC_MESSAGES/gnome-screensaver.mo -share/locale/cs/LC_MESSAGES/gnome-screensaver.mo -share/locale/cy/LC_MESSAGES/gnome-screensaver.mo -share/locale/da/LC_MESSAGES/gnome-screensaver.mo -share/locale/de/LC_MESSAGES/gnome-screensaver.mo -share/locale/dz/LC_MESSAGES/gnome-screensaver.mo -share/locale/el/LC_MESSAGES/gnome-screensaver.mo -share/locale/en_CA/LC_MESSAGES/gnome-screensaver.mo -share/locale/en_GB/LC_MESSAGES/gnome-screensaver.mo -share/locale/es/LC_MESSAGES/gnome-screensaver.mo -share/locale/et/LC_MESSAGES/gnome-screensaver.mo -share/locale/eu/LC_MESSAGES/gnome-screensaver.mo -share/locale/fa/LC_MESSAGES/gnome-screensaver.mo -share/locale/fi/LC_MESSAGES/gnome-screensaver.mo -share/locale/fr/LC_MESSAGES/gnome-screensaver.mo -share/locale/gl/LC_MESSAGES/gnome-screensaver.mo -share/locale/gu/LC_MESSAGES/gnome-screensaver.mo -share/locale/he/LC_MESSAGES/gnome-screensaver.mo -share/locale/hi/LC_MESSAGES/gnome-screensaver.mo -share/locale/hu/LC_MESSAGES/gnome-screensaver.mo -share/locale/id/LC_MESSAGES/gnome-screensaver.mo -share/locale/it/LC_MESSAGES/gnome-screensaver.mo -share/locale/ja/LC_MESSAGES/gnome-screensaver.mo -share/locale/ka/LC_MESSAGES/gnome-screensaver.mo -share/locale/ko/LC_MESSAGES/gnome-screensaver.mo -share/locale/ku/LC_MESSAGES/gnome-screensaver.mo -share/locale/lt/LC_MESSAGES/gnome-screensaver.mo -share/locale/lv/LC_MESSAGES/gnome-screensaver.mo -share/locale/mg/LC_MESSAGES/gnome-screensaver.mo -share/locale/mk/LC_MESSAGES/gnome-screensaver.mo -share/locale/ml/LC_MESSAGES/gnome-screensaver.mo -share/locale/mn/LC_MESSAGES/gnome-screensaver.mo -share/locale/nb/LC_MESSAGES/gnome-screensaver.mo -share/locale/ne/LC_MESSAGES/gnome-screensaver.mo -share/locale/nl/LC_MESSAGES/gnome-screensaver.mo -share/locale/oc/LC_MESSAGES/gnome-screensaver.mo -share/locale/or/LC_MESSAGES/gnome-screensaver.mo -share/locale/pa/LC_MESSAGES/gnome-screensaver.mo -share/locale/pl/LC_MESSAGES/gnome-screensaver.mo -share/locale/pt/LC_MESSAGES/gnome-screensaver.mo -share/locale/pt_BR/LC_MESSAGES/gnome-screensaver.mo -share/locale/ro/LC_MESSAGES/gnome-screensaver.mo -share/locale/ru/LC_MESSAGES/gnome-screensaver.mo -share/locale/si/LC_MESSAGES/gnome-screensaver.mo -share/locale/sk/LC_MESSAGES/gnome-screensaver.mo -share/locale/sl/LC_MESSAGES/gnome-screensaver.mo -share/locale/sq/LC_MESSAGES/gnome-screensaver.mo -share/locale/sr/LC_MESSAGES/gnome-screensaver.mo -share/locale/sr@Latn/LC_MESSAGES/gnome-screensaver.mo -share/locale/sv/LC_MESSAGES/gnome-screensaver.mo -share/locale/ta/LC_MESSAGES/gnome-screensaver.mo -share/locale/te/LC_MESSAGES/gnome-screensaver.mo -share/locale/th/LC_MESSAGES/gnome-screensaver.mo -share/locale/tr/LC_MESSAGES/gnome-screensaver.mo -share/locale/uk/LC_MESSAGES/gnome-screensaver.mo -share/locale/vi/LC_MESSAGES/gnome-screensaver.mo -share/locale/zh_CN/LC_MESSAGES/gnome-screensaver.mo -share/locale/zh_HK/LC_MESSAGES/gnome-screensaver.mo -share/locale/zh_TW/LC_MESSAGES/gnome-screensaver.mo -share/pixmaps/backgrounds/cosmos/cloud.jpg -share/pixmaps/backgrounds/cosmos/comet.jpg -share/pixmaps/backgrounds/cosmos/earth-horizon.jpg -share/pixmaps/backgrounds/cosmos/earthrise.jpg -share/pixmaps/backgrounds/cosmos/galaxy-ngc3370.jpg -share/pixmaps/backgrounds/cosmos/helix-nebula.jpg -share/pixmaps/backgrounds/cosmos/jupiter.jpg -share/pixmaps/backgrounds/cosmos/sombrero.jpg -share/pixmaps/backgrounds/cosmos/whirlpool.jpg -share/pixmaps/gnome-logo-white.svg -@dirrm share/pixmaps/backgrounds/cosmos -@dirrm share/pixmaps/backgrounds -@dirrm %%DATADIR%% -@dirrm libexec/gnome-screensaver -@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/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/applications diff --git a/x11/gnome-session/Makefile b/x11/gnome-session/Makefile deleted file mode 100644 index 0bffa96c4..000000000 --- a/x11/gnome-session/Makefile +++ /dev/null @@ -1,61 +0,0 @@ -# New ports collection makefile for: gnomesession -# Date created: 08 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-session/Makefile,v 1.125 2007/10/15 21:12:32 mezz Exp $ -# - -PORTNAME= gnome-session -PORTVERSION= 2.20.1 -PORTREVISION= 1 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} \ - http://www.marcuscom.com/downloads/:local -MASTER_SITE_SUBDIR= sources/gnome-session/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ - ${SPLASHES}:local -DIST_SUBDIR= gnome2 -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Session component for the GNOME 2 desktop - -BUILD_DEPENDS= ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-control-center -LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - gnome-keyring.0:${PORTSDIR}/security/gnome-keyring -RUN_DEPENDS= ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-control-center \ - ${LOCALBASE}/bin/xdpyinfo:${PORTSDIR}/x11/xdpyinfo - -INSTALLS_ICONS= yes -USE_GETTEXT= yes -USE_BZIP2= yes -USE_XLIB= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomedesktop -GNOME_DESKTOP_VERSION=2 -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= gnome-session.1 gnome-wm.1 session-properties.1 \ - gnome-session-save.1 -MAN5= default.session.5 -GCONF_SCHEMAS= gnome-session.schemas - -SPLASHES= freebsd-splashes-gnome-2.18_1.tar - -post-extract: - cd ${WRKDIR} && ${TAR} xf ${DISTDIR}/${DIST_SUBDIR}/${SPLASHES} - -post-install: - ${INSTALL_DATA} ${WRKSRC}/data/gnome-splash.png \ - ${PREFIX}/share/pixmaps/splash/original-gnome-splash.png -# ${INSTALL_DATA} ${WRKDIR}/freebsd-splashes-gnome-2.12/domix-splash-2.12.png \ -# ${PREFIX}/share/pixmaps/splash/gnome-splash.png -.for splash in MaMBaNgGaoX-2.12.png adamw-piggy-2.12.png adamw-trophy-2.12.png andreas-slogan-2.12.png andreas-splash-2.12.png domix-splash-2.12.png domix-splash2-2.12.png mumija-2.12.png mumija2-2.12.png mumija3-2.12.png tremulant-2.12.png tremulant-blood-2.12.png tremulant-brushed-metal-2.12.png franz-splash_218.png adamw-bat-2.18.jpg adamw-conky-2.18.png adamw-cow-2.18.png adamw-mouth-2.18.png adamw-swing-2.18.png - ${INSTALL_DATA} ${WRKDIR}/freebsd-splashes-gnome-2.18/${splash} \ - ${PREFIX}/share/pixmaps/splash -.endfor - -.include <bsd.port.mk> diff --git a/x11/gnome-session/distinfo b/x11/gnome-session/distinfo deleted file mode 100644 index edb41056b..000000000 --- a/x11/gnome-session/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (gnome2/gnome-session-2.20.1.tar.bz2) = 8c9c2940957dc0140a23ef638d23fb35 -SHA256 (gnome2/gnome-session-2.20.1.tar.bz2) = 134d102f7f6dc889158c262488b98c843616fa8aef23ce3aaa923366076a6a29 -SIZE (gnome2/gnome-session-2.20.1.tar.bz2) = 759126 -MD5 (gnome2/freebsd-splashes-gnome-2.18_1.tar) = 80eb8c52fcf9fe977e0bf8ed48b85fe5 -SHA256 (gnome2/freebsd-splashes-gnome-2.18_1.tar) = fcca0f6eb759a4ef0211ecd61340f84ce8ad4d7493f725ac8613724faadbb508 -SIZE (gnome2/freebsd-splashes-gnome-2.18_1.tar) = 1630720 diff --git a/x11/gnome-session/files/patch-data_Makefile.in b/x11/gnome-session/files/patch-data_Makefile.in deleted file mode 100644 index 8fcdd3e2c..000000000 --- a/x11/gnome-session/files/patch-data_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- data/Makefile.in.orig Sun Jan 28 20:39:50 2007 -+++ data/Makefile.in Sun Jan 28 20:41:03 2007 -@@ -271,7 +271,7 @@ EXTRA_DIST = \ - session-properties.desktop.in - - CLEANFILES = default.session gnome-session.schemas session-properties.desktop --all: all-recursive -+all: all-recursive default.session - - .SUFFIXES: - $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) diff --git a/x11/gnome-session/pkg-descr b/x11/gnome-session/pkg-descr deleted file mode 100644 index 50986ef91..000000000 --- a/x11/gnome-session/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -This provides session management for the GNOME 2 desktop, and -provides the tools used to start the desktop. diff --git a/x11/gnome-session/pkg-plist b/x11/gnome-session/pkg-plist deleted file mode 100644 index d90630fed..000000000 --- a/x11/gnome-session/pkg-plist +++ /dev/null @@ -1,151 +0,0 @@ -bin/gnome-session -bin/gnome-session-properties -bin/gnome-session-remove -bin/gnome-session-save -bin/gnome-wm -share/applications/session-properties.desktop -share/gnome/default.session -share/icons/hicolor/16x16/apps/session-properties.png -share/icons/hicolor/22x22/apps/session-properties.png -share/icons/hicolor/24x24/apps/session-properties.png -share/icons/hicolor/32x32/apps/session-properties.png -share/icons/hicolor/scalable/apps/session-properties.svg -share/locale/af/LC_MESSAGES/gnome-session-2.0.mo -share/locale/am/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ar/LC_MESSAGES/gnome-session-2.0.mo -share/locale/az/LC_MESSAGES/gnome-session-2.0.mo -share/locale/be/LC_MESSAGES/gnome-session-2.0.mo -share/locale/be@latin/LC_MESSAGES/gnome-session-2.0.mo -share/locale/bg/LC_MESSAGES/gnome-session-2.0.mo -share/locale/bn/LC_MESSAGES/gnome-session-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gnome-session-2.0.mo -share/locale/bs/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ca/LC_MESSAGES/gnome-session-2.0.mo -share/locale/cs/LC_MESSAGES/gnome-session-2.0.mo -share/locale/cy/LC_MESSAGES/gnome-session-2.0.mo -share/locale/da/LC_MESSAGES/gnome-session-2.0.mo -share/locale/de/LC_MESSAGES/gnome-session-2.0.mo -share/locale/dz/LC_MESSAGES/gnome-session-2.0.mo -share/locale/el/LC_MESSAGES/gnome-session-2.0.mo -share/locale/en_CA/LC_MESSAGES/gnome-session-2.0.mo -share/locale/en_GB/LC_MESSAGES/gnome-session-2.0.mo -share/locale/eo/LC_MESSAGES/gnome-session-2.0.mo -share/locale/es/LC_MESSAGES/gnome-session-2.0.mo -share/locale/et/LC_MESSAGES/gnome-session-2.0.mo -share/locale/eu/LC_MESSAGES/gnome-session-2.0.mo -share/locale/fa/LC_MESSAGES/gnome-session-2.0.mo -share/locale/fi/LC_MESSAGES/gnome-session-2.0.mo -share/locale/fr/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ga/LC_MESSAGES/gnome-session-2.0.mo -share/locale/gl/LC_MESSAGES/gnome-session-2.0.mo -share/locale/gu/LC_MESSAGES/gnome-session-2.0.mo -share/locale/he/LC_MESSAGES/gnome-session-2.0.mo -share/locale/hi/LC_MESSAGES/gnome-session-2.0.mo -share/locale/hr/LC_MESSAGES/gnome-session-2.0.mo -share/locale/hu/LC_MESSAGES/gnome-session-2.0.mo -share/locale/hy/LC_MESSAGES/gnome-session-2.0.mo -share/locale/id/LC_MESSAGES/gnome-session-2.0.mo -share/locale/is/LC_MESSAGES/gnome-session-2.0.mo -share/locale/it/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ja/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ka/LC_MESSAGES/gnome-session-2.0.mo -share/locale/kn/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ko/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ku/LC_MESSAGES/gnome-session-2.0.mo -share/locale/lt/LC_MESSAGES/gnome-session-2.0.mo -share/locale/lv/LC_MESSAGES/gnome-session-2.0.mo -share/locale/mg/LC_MESSAGES/gnome-session-2.0.mo -share/locale/mi/LC_MESSAGES/gnome-session-2.0.mo -share/locale/mk/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ml/LC_MESSAGES/gnome-session-2.0.mo -share/locale/mn/LC_MESSAGES/gnome-session-2.0.mo -share/locale/mr/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ms/LC_MESSAGES/gnome-session-2.0.mo -share/locale/nb/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ne/LC_MESSAGES/gnome-session-2.0.mo -share/locale/nl/LC_MESSAGES/gnome-session-2.0.mo -share/locale/nn/LC_MESSAGES/gnome-session-2.0.mo -share/locale/nso/LC_MESSAGES/gnome-session-2.0.mo -share/locale/oc/LC_MESSAGES/gnome-session-2.0.mo -share/locale/or/LC_MESSAGES/gnome-session-2.0.mo -share/locale/pa/LC_MESSAGES/gnome-session-2.0.mo -share/locale/pl/LC_MESSAGES/gnome-session-2.0.mo -share/locale/pt/LC_MESSAGES/gnome-session-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ro/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ru/LC_MESSAGES/gnome-session-2.0.mo -share/locale/rw/LC_MESSAGES/gnome-session-2.0.mo -share/locale/si/LC_MESSAGES/gnome-session-2.0.mo -share/locale/sk/LC_MESSAGES/gnome-session-2.0.mo -share/locale/sl/LC_MESSAGES/gnome-session-2.0.mo -share/locale/sq/LC_MESSAGES/gnome-session-2.0.mo -share/locale/sr/LC_MESSAGES/gnome-session-2.0.mo -share/locale/sr@Latn/LC_MESSAGES/gnome-session-2.0.mo -share/locale/sv/LC_MESSAGES/gnome-session-2.0.mo -share/locale/ta/LC_MESSAGES/gnome-session-2.0.mo -share/locale/te/LC_MESSAGES/gnome-session-2.0.mo -share/locale/th/LC_MESSAGES/gnome-session-2.0.mo -share/locale/tk/LC_MESSAGES/gnome-session-2.0.mo -share/locale/tr/LC_MESSAGES/gnome-session-2.0.mo -share/locale/uk/LC_MESSAGES/gnome-session-2.0.mo -share/locale/vi/LC_MESSAGES/gnome-session-2.0.mo -share/locale/wa/LC_MESSAGES/gnome-session-2.0.mo -share/locale/xh/LC_MESSAGES/gnome-session-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gnome-session-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gnome-session-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gnome-session-2.0.mo -share/locale/zu/LC_MESSAGES/gnome-session-2.0.mo -share/pixmaps/splash/MaMBaNgGaoX-2.12.png -share/pixmaps/splash/adamw-bat-2.18.jpg -share/pixmaps/splash/adamw-conky-2.18.png -share/pixmaps/splash/adamw-cow-2.18.png -share/pixmaps/splash/adamw-mouth-2.18.png -share/pixmaps/splash/adamw-piggy-2.12.png -share/pixmaps/splash/adamw-swing-2.18.png -share/pixmaps/splash/adamw-trophy-2.12.png -share/pixmaps/splash/andreas-slogan-2.12.png -share/pixmaps/splash/andreas-splash-2.12.png -share/pixmaps/splash/domix-splash-2.12.png -share/pixmaps/splash/domix-splash2-2.12.png -share/pixmaps/splash/franz-splash_218.png -share/pixmaps/splash/gnome-splash.png -share/pixmaps/splash/mumija-2.12.png -share/pixmaps/splash/mumija2-2.12.png -share/pixmaps/splash/mumija3-2.12.png -share/pixmaps/splash/original-gnome-splash.png -share/pixmaps/splash/tremulant-2.12.png -share/pixmaps/splash/tremulant-blood-2.12.png -share/pixmaps/splash/tremulant-brushed-metal-2.12.png -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@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/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/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/applications diff --git a/x11/gnome-terminal/Makefile b/x11/gnome-terminal/Makefile deleted file mode 100644 index a588c09e1..000000000 --- a/x11/gnome-terminal/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: gnometerminal -# Date created: 1 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome-terminal/Makefile,v 1.91 2007/07/01 18:33:08 marcus Exp $ -# - -PORTNAME= gnome-terminal -PORTVERSION= 2.18.2 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Terminal component for the GNOME 2 Desktop - -USE_GETTEXT= yes -USE_BZIP2= yes -INSTALLS_OMF= yes -USE_XLIB= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui vte gnomedocutils -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= gnome-terminal.schemas - -.include <bsd.port.mk> diff --git a/x11/gnome-terminal/distinfo b/x11/gnome-terminal/distinfo deleted file mode 100644 index eaa330cc1..000000000 --- a/x11/gnome-terminal/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-terminal-2.18.2.tar.bz2) = a54b010cdeb1e908cad6085bf9de87c4 -SHA256 (gnome2/gnome-terminal-2.18.2.tar.bz2) = f046e938f14aa2ec5cc6db5a85d7ffaf470b3cc233257ca55d2fa7530daa28d1 -SIZE (gnome2/gnome-terminal-2.18.2.tar.bz2) = 2057415 diff --git a/x11/gnome-terminal/files/patch-src_terminal-screen.c b/x11/gnome-terminal/files/patch-src_terminal-screen.c deleted file mode 100644 index ed0df8903..000000000 --- a/x11/gnome-terminal/files/patch-src_terminal-screen.c +++ /dev/null @@ -1,82 +0,0 @@ ---- src/terminal-screen.c.orig Wed Oct 18 15:50:28 2006 -+++ src/terminal-screen.c Wed Oct 18 15:49:42 2006 -@@ -244,6 +244,10 @@ - GtkAllocation *allocation) - { - GtkWidget *child; -+ GtkAllocation old_allocation; -+ -+ old_allocation.width = widget->allocation.width; -+ old_allocation.height = widget->allocation.height; - - widget->allocation = *allocation; - -@@ -251,6 +255,13 @@ - g_assert (child != NULL); - - gtk_widget_size_allocate (child, allocation); -+ -+ if (old_allocation.width != allocation->width || -+ old_allocation.height != allocation->height) -+ { -+ GtkWidget *term = TERMINAL_SCREEN (widget)->priv->term; -+ gtk_widget_queue_resize_no_redraw (term); -+ } - } - - static void -@@ -278,22 +289,22 @@ - #define URLPATH "/[" PATHCHARS "]*[^]'.}>) \t\r\n,\\\"]" - - terminal_widget_match_add (screen->priv->term, -- "\\<" SCHEME "//(" USER "@)?[" HOSTCHARS ".]+" -- "(:[0-9]+)?(" URLPATH ")?\\>/?", FLAVOR_AS_IS); -+ "[[:<:]]" SCHEME "//(" USER "@)?[" HOSTCHARS ".]+" -+ "(:[0-9]+)?(" URLPATH ")?[[:>:]]/?", FLAVOR_AS_IS); - - terminal_widget_match_add (screen->priv->term, -- "\\<(www|ftp)[" HOSTCHARS "]*\\.[" HOSTCHARS ".]+" -- "(:[0-9]+)?(" URLPATH ")?\\>/?", -+ "[[:<:]](www|ftp)[" HOSTCHARS "]*\\.[" HOSTCHARS ".]+" -+ "(:[0-9]+)?(" URLPATH ")?[[:>:]]/?", - FLAVOR_DEFAULT_TO_HTTP); - - terminal_widget_match_add (screen->priv->term, -- "\\<(mailto:)?[a-z0-9][a-z0-9.-]*@[a-z0-9]" -- "[a-z0-9-]*(\\.[a-z0-9][a-z0-9-]*)+\\>", -+ "[[:<:]](mailto:)?[a-z0-9][a-z0-9.-]*@[a-z0-9]" -+ "[a-z0-9-]*(\\.[a-z0-9][a-z0-9-]*)+[[:>:]]", - FLAVOR_EMAIL); - - terminal_widget_match_add (screen->priv->term, -- "\\<news:[-A-Z\\^_a-z{|}~!\"#$%&'()*+,./0-9;:=?`]+" -- "@[" HOSTCHARS ".]+(:[0-9]+)?\\>", FLAVOR_AS_IS); -+ "[[:<:]]news:[-A-Z\\^_a-z{|}~!\"#$%&'()*+,./0-9;:=?`]+" -+ "@[" HOSTCHARS ".]+(:[0-9]+)?[[:>:]]", FLAVOR_AS_IS); - - terminal_screen_setup_dnd (screen); - -@@ -548,7 +559,6 @@ - */ - terminal_screen_update_scrollbar (screen); - terminal_window_update_icon (screen->priv->window); -- terminal_window_update_geometry (screen->priv->window); - } - - if (GTK_WIDGET_REALIZED (screen->priv->term)) -@@ -909,7 +919,6 @@ - - terminal_widget_set_allow_bold (term, - terminal_profile_get_allow_bold (profile)); -- terminal_window_set_size (screen->priv->window, screen, TRUE); - } - - static void -@@ -1019,6 +1028,7 @@ - GtkWidget* - terminal_screen_get_widget (TerminalScreen *screen) - { -+ if (screen == NULL) return NULL; - return screen->priv->term; - } - diff --git a/x11/gnome-terminal/pkg-descr b/x11/gnome-terminal/pkg-descr deleted file mode 100644 index 1193c30f7..000000000 --- a/x11/gnome-terminal/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Default terminal emulator for the GNOME 2.0 Desktop. - -WWW: http://www.gnome.org/ diff --git a/x11/gnome-terminal/pkg-plist b/x11/gnome-terminal/pkg-plist deleted file mode 100644 index f69d5bcef..000000000 --- a/x11/gnome-terminal/pkg-plist +++ /dev/null @@ -1,220 +0,0 @@ -bin/gnome-terminal -libdata/bonobo/servers/gnome-terminal.server -share/applications/gnome-terminal.desktop -%%DATADIR%%/glade/gnome-terminal.glade2 -share/gnome/help/gnome-terminal/C/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/C/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/C/gnome-terminal.xml -share/gnome/help/gnome-terminal/C/legal.xml -share/gnome/help/gnome-terminal/bg/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/bg/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/bg/figures/terminal_window.png -share/gnome/help/gnome-terminal/bg/gnome-terminal.xml -share/gnome/help/gnome-terminal/bg/legal.xml -share/gnome/help/gnome-terminal/ca/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/ca/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/ca/gnome-terminal.xml -share/gnome/help/gnome-terminal/de/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/de/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/de/gnome-terminal.xml -share/gnome/help/gnome-terminal/es/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/es/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/es/gnome-terminal.xml -share/gnome/help/gnome-terminal/fr/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/fr/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/fr/gnome-terminal.xml -share/gnome/help/gnome-terminal/it/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/it/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/it/gnome-terminal.xml -share/gnome/help/gnome-terminal/ja/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/ja/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/ja/figures/terminal_window.png -share/gnome/help/gnome-terminal/ja/gnome-terminal.xml -share/gnome/help/gnome-terminal/ja/legal.xml -share/gnome/help/gnome-terminal/ko/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/ko/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/ko/gnome-terminal.xml -share/gnome/help/gnome-terminal/oc/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/oc/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/oc/gnome-terminal.xml -share/gnome/help/gnome-terminal/ro/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/ro/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/ro/figures/terminal_window.png -share/gnome/help/gnome-terminal/ro/gnome-terminal.xml -share/gnome/help/gnome-terminal/ro/legal.xml -share/gnome/help/gnome-terminal/ru/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/ru/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/ru/gnome-terminal.xml -share/gnome/help/gnome-terminal/sv/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/sv/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/sv/gnome-terminal.xml -share/gnome/help/gnome-terminal/uk/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/uk/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/uk/gnome-terminal.xml -share/gnome/help/gnome-terminal/zh_CN/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/zh_CN/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/zh_CN/figures/terminal_window.png -share/gnome/help/gnome-terminal/zh_CN/gnome-terminal.xml -share/gnome/help/gnome-terminal/zh_CN/legal.xml -share/gnome/help/gnome-terminal/zh_TW/figures/gnome-terminal-default.png -share/gnome/help/gnome-terminal/zh_TW/figures/gnome-terminal-tabbed.png -share/gnome/help/gnome-terminal/zh_TW/figures/terminal_window.png -share/gnome/help/gnome-terminal/zh_TW/gnome-terminal.xml -share/gnome/help/gnome-terminal/zh_TW/legal.xml -share/locale/am/LC_MESSAGES/gnome-terminal.mo -share/locale/ar/LC_MESSAGES/gnome-terminal.mo -share/locale/as/LC_MESSAGES/gnome-terminal.mo -share/locale/az/LC_MESSAGES/gnome-terminal.mo -share/locale/be/LC_MESSAGES/gnome-terminal.mo -share/locale/be@latin/LC_MESSAGES/gnome-terminal.mo -share/locale/bg/LC_MESSAGES/gnome-terminal.mo -share/locale/bn/LC_MESSAGES/gnome-terminal.mo -share/locale/bn_IN/LC_MESSAGES/gnome-terminal.mo -share/locale/bs/LC_MESSAGES/gnome-terminal.mo -share/locale/ca/LC_MESSAGES/gnome-terminal.mo -share/locale/cs/LC_MESSAGES/gnome-terminal.mo -share/locale/cy/LC_MESSAGES/gnome-terminal.mo -share/locale/da/LC_MESSAGES/gnome-terminal.mo -share/locale/de/LC_MESSAGES/gnome-terminal.mo -share/locale/dz/LC_MESSAGES/gnome-terminal.mo -share/locale/el/LC_MESSAGES/gnome-terminal.mo -share/locale/en_CA/LC_MESSAGES/gnome-terminal.mo -share/locale/en_GB/LC_MESSAGES/gnome-terminal.mo -share/locale/es/LC_MESSAGES/gnome-terminal.mo -share/locale/et/LC_MESSAGES/gnome-terminal.mo -share/locale/eu/LC_MESSAGES/gnome-terminal.mo -share/locale/fa/LC_MESSAGES/gnome-terminal.mo -share/locale/fi/LC_MESSAGES/gnome-terminal.mo -share/locale/fr/LC_MESSAGES/gnome-terminal.mo -share/locale/ga/LC_MESSAGES/gnome-terminal.mo -share/locale/gl/LC_MESSAGES/gnome-terminal.mo -share/locale/gu/LC_MESSAGES/gnome-terminal.mo -share/locale/he/LC_MESSAGES/gnome-terminal.mo -share/locale/hi/LC_MESSAGES/gnome-terminal.mo -share/locale/hr/LC_MESSAGES/gnome-terminal.mo -share/locale/hu/LC_MESSAGES/gnome-terminal.mo -share/locale/hy/LC_MESSAGES/gnome-terminal.mo -share/locale/id/LC_MESSAGES/gnome-terminal.mo -share/locale/it/LC_MESSAGES/gnome-terminal.mo -share/locale/ja/LC_MESSAGES/gnome-terminal.mo -share/locale/ka/LC_MESSAGES/gnome-terminal.mo -share/locale/ko/LC_MESSAGES/gnome-terminal.mo -share/locale/ku/LC_MESSAGES/gnome-terminal.mo -share/locale/lt/LC_MESSAGES/gnome-terminal.mo -share/locale/lv/LC_MESSAGES/gnome-terminal.mo -share/locale/mg/LC_MESSAGES/gnome-terminal.mo -share/locale/mk/LC_MESSAGES/gnome-terminal.mo -share/locale/ml/LC_MESSAGES/gnome-terminal.mo -share/locale/mn/LC_MESSAGES/gnome-terminal.mo -share/locale/mr/LC_MESSAGES/gnome-terminal.mo -share/locale/ms/LC_MESSAGES/gnome-terminal.mo -share/locale/nb/LC_MESSAGES/gnome-terminal.mo -share/locale/ne/LC_MESSAGES/gnome-terminal.mo -share/locale/nl/LC_MESSAGES/gnome-terminal.mo -share/locale/nn/LC_MESSAGES/gnome-terminal.mo -share/locale/oc/LC_MESSAGES/gnome-terminal.mo -share/locale/or/LC_MESSAGES/gnome-terminal.mo -share/locale/pa/LC_MESSAGES/gnome-terminal.mo -share/locale/pl/LC_MESSAGES/gnome-terminal.mo -share/locale/pt/LC_MESSAGES/gnome-terminal.mo -share/locale/pt_BR/LC_MESSAGES/gnome-terminal.mo -share/locale/ro/LC_MESSAGES/gnome-terminal.mo -share/locale/ru/LC_MESSAGES/gnome-terminal.mo -share/locale/rw/LC_MESSAGES/gnome-terminal.mo -share/locale/si/LC_MESSAGES/gnome-terminal.mo -share/locale/sk/LC_MESSAGES/gnome-terminal.mo -share/locale/sl/LC_MESSAGES/gnome-terminal.mo -share/locale/sq/LC_MESSAGES/gnome-terminal.mo -share/locale/sr/LC_MESSAGES/gnome-terminal.mo -share/locale/sr@Latn/LC_MESSAGES/gnome-terminal.mo -share/locale/sv/LC_MESSAGES/gnome-terminal.mo -share/locale/ta/LC_MESSAGES/gnome-terminal.mo -share/locale/th/LC_MESSAGES/gnome-terminal.mo -share/locale/tr/LC_MESSAGES/gnome-terminal.mo -share/locale/uk/LC_MESSAGES/gnome-terminal.mo -share/locale/vi/LC_MESSAGES/gnome-terminal.mo -share/locale/wa/LC_MESSAGES/gnome-terminal.mo -share/locale/xh/LC_MESSAGES/gnome-terminal.mo -share/locale/zh_CN/LC_MESSAGES/gnome-terminal.mo -share/locale/zh_HK/LC_MESSAGES/gnome-terminal.mo -share/locale/zh_TW/LC_MESSAGES/gnome-terminal.mo -share/omf/gnome-terminal/gnome-terminal-C.omf -share/omf/gnome-terminal/gnome-terminal-bg.omf -share/omf/gnome-terminal/gnome-terminal-ca.omf -share/omf/gnome-terminal/gnome-terminal-de.omf -share/omf/gnome-terminal/gnome-terminal-es.omf -share/omf/gnome-terminal/gnome-terminal-fr.omf -share/omf/gnome-terminal/gnome-terminal-it.omf -share/omf/gnome-terminal/gnome-terminal-ja.omf -share/omf/gnome-terminal/gnome-terminal-ko.omf -share/omf/gnome-terminal/gnome-terminal-oc.omf -share/omf/gnome-terminal/gnome-terminal-ro.omf -share/omf/gnome-terminal/gnome-terminal-ru.omf -share/omf/gnome-terminal/gnome-terminal-sv.omf -share/omf/gnome-terminal/gnome-terminal-uk.omf -share/omf/gnome-terminal/gnome-terminal-zh_CN.omf -share/omf/gnome-terminal/gnome-terminal-zh_TW.omf -share/pixmaps/gnome-terminal.png -@dirrm share/omf/gnome-terminal -@dirrm share/gnome/help/gnome-terminal/zh_TW/figures -@dirrm share/gnome/help/gnome-terminal/zh_TW -@dirrm share/gnome/help/gnome-terminal/zh_CN/figures -@dirrm share/gnome/help/gnome-terminal/zh_CN -@dirrm share/gnome/help/gnome-terminal/uk/figures -@dirrm share/gnome/help/gnome-terminal/uk -@dirrm share/gnome/help/gnome-terminal/sv/figures -@dirrm share/gnome/help/gnome-terminal/sv -@dirrm share/gnome/help/gnome-terminal/ru/figures -@dirrm share/gnome/help/gnome-terminal/ru -@dirrm share/gnome/help/gnome-terminal/ro/figures -@dirrm share/gnome/help/gnome-terminal/ro -@dirrm share/gnome/help/gnome-terminal/oc/figures -@dirrm share/gnome/help/gnome-terminal/oc -@dirrm share/gnome/help/gnome-terminal/ko/figures -@dirrm share/gnome/help/gnome-terminal/ko -@dirrm share/gnome/help/gnome-terminal/ja/figures -@dirrm share/gnome/help/gnome-terminal/ja -@dirrm share/gnome/help/gnome-terminal/it/figures -@dirrm share/gnome/help/gnome-terminal/it -@dirrm share/gnome/help/gnome-terminal/fr/figures -@dirrm share/gnome/help/gnome-terminal/fr -@dirrm share/gnome/help/gnome-terminal/es/figures -@dirrm share/gnome/help/gnome-terminal/es -@dirrm share/gnome/help/gnome-terminal/de/figures -@dirrm share/gnome/help/gnome-terminal/de -@dirrm share/gnome/help/gnome-terminal/ca/figures -@dirrm share/gnome/help/gnome-terminal/ca -@dirrm share/gnome/help/gnome-terminal/bg/figures -@dirrm share/gnome/help/gnome-terminal/bg -@dirrm share/gnome/help/gnome-terminal/C/figures -@dirrm share/gnome/help/gnome-terminal/C -@dirrm share/gnome/help/gnome-terminal -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%% -@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/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/hy/LC_MESSAGES -@dirrmtry share/locale/hy -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -@dirrmtry share/applications diff --git a/x11/gnome2-fifth-toe/Makefile b/x11/gnome2-fifth-toe/Makefile deleted file mode 100644 index 271293f24..000000000 --- a/x11/gnome2-fifth-toe/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: gnome2-fifth-toe -# Date created: 20 September 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome2-fifth-toe/Makefile,v 1.91 2007/10/04 20:56:31 mezz Exp $ -# - -PORTREVISION= 0 -CATEGORIES= x11 gnome -PKGNAMESUFFIX= -fifth-toe - -COMMENT= Additional GNOME 2 applications not included in the core desktop - -RUN_DEPENDS= pan:${PORTSDIR}/news/pan \ - xchat:${PORTSDIR}/irc/xchat \ - gimp>0:${PORTSDIR}/graphics/gimp \ - sodipodi:${PORTSDIR}/graphics/sodipodi \ - gnomeicu:${PORTSDIR}/net-im/gnomeicu \ - gthumb:${PORTSDIR}/graphics/gthumb \ - pidgin:${PORTSDIR}/net-im/pidgin \ - tsclient:${PORTSDIR}/net/tsclient \ - galeon:${PORTSDIR}/www/galeon \ - ${LOCALBASE}/share/icons/Foxtrot/index.theme:${PORTSDIR}/x11-themes/gnome-themes-extras \ - bluefish:${PORTSDIR}/www/bluefish \ - gossip:${PORTSDIR}/net-im/gossip \ - liferea:${PORTSDIR}/net/liferea \ - gnotime:${PORTSDIR}/deskutils/gnotime \ - rhythmbox:${PORTSDIR}/audio/rhythmbox \ - ${LOCALBASE}/share/pixmaps/glines/classic.png:${PORTSDIR}/games/gnome-games-extra-data \ - nautilus-sendto:${PORTSDIR}/deskutils/nautilus-sendto \ - inkscape:${PORTSDIR}/graphics/inkscape \ - atomix:${PORTSDIR}/games/atomix \ - straw:${PORTSDIR}/net/straw \ - ${LOCALBASE}/share/gnome/help/gdp-handbook/C/builddocs.xml:${PORTSDIR}/misc/gnome-devel-docs - -MASTERDIR= ${.CURDIR}/../gnome2 -GNOME_SLAVE= yes - -DESCR= ${.CURDIR}/pkg-descr - -.include "${MASTERDIR}/Makefile" diff --git a/x11/gnome2-fifth-toe/pkg-descr b/x11/gnome2-fifth-toe/pkg-descr deleted file mode 100644 index afa6e891d..000000000 --- a/x11/gnome2-fifth-toe/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -GNOME 2 "Fifth Toe" - -The Fifth Toe is a collection of stable GNOME 2 applications that -many users expect to be part of a usable desktop. Included are image -manipulation programs, chat applications, music and multimedia players, -much more. - -WWW: http://www.FreeBSD.org/gnome/ diff --git a/x11/gnome2-lite/Makefile b/x11/gnome2-lite/Makefile deleted file mode 100644 index 0d3bac62f..000000000 --- a/x11/gnome2-lite/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: gnome2-lite -# Date created: 30 November 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome2-lite/Makefile,v 1.59 2007/06/09 06:31:33 marcus Exp $ -# - -PORTREVISION= 0 -CATEGORIES= x11 gnome -PKGNAMESUFFIX= -lite - -COMMENT= The "meta-port" of the GNOME desktop slimmed down for FreeBSD releases - -RUN_DEPENDS= ${LOCALBASE}/libexec/gweather-applet-2:${PORTSDIR}/x11/gnome-applets \ - gnome-cd:${PORTSDIR}/audio/gnome-media \ - gnome-dictionary:${PORTSDIR}/deskutils/gnome-utils \ - eog:${PORTSDIR}/graphics/eog \ - gedit:${PORTSDIR}/editors/gedit \ - gnome-terminal:${PORTSDIR}/x11/gnome-terminal \ - gnome-session:${PORTSDIR}/x11/gnome-session \ - gnome-system-monitor:${PORTSDIR}/sysutils/gnome-system-monitor \ - nautilus:${PORTSDIR}/x11-fm/nautilus \ - ${LOCALBASE}/share/gnome/help/user-guide/C/user-guide.xml:${PORTSDIR}/misc/gnome-user-docs \ - ${LOCALBASE}/share/sounds/question.wav:${PORTSDIR}/audio/gnome-audio \ - file-roller:${PORTSDIR}/archivers/file-roller \ - ${LOCALBASE}/share/themes/HighContrast/gtk-2.0/gtkrc:${PORTSDIR}/x11-themes/gnome-themes \ - evince:${PORTSDIR}/graphics/evince \ - gcalctool:${PORTSDIR}/math/gcalctool \ - gucharmap:${PORTSDIR}/deskutils/gucharmap \ - ${LOCALBASE}/lib/X11/fonts/bitstream-vera/Vera.ttf:${PORTSDIR}/x11-fonts/bitstream-vera \ - gconf-editor:${PORTSDIR}/sysutils/gconf-editor \ - gnome-control-center:${PORTSDIR}/sysutils/gnome-control-center \ - gnome-mount:${PORTSDIR}/sysutils/gnome-mount \ - totem:${PORTSDIR}/multimedia/totem - -MASTERDIR= ${.CURDIR}/../gnome2 -CONFLICTS= gnome2-[0-9]* - -DESCR= ${.CURDIR}/pkg-descr -PKGMESSAGE= ${.CURDIR}/pkg-message - -.include "${MASTERDIR}/Makefile" diff --git a/x11/gnome2-lite/pkg-descr b/x11/gnome2-lite/pkg-descr deleted file mode 100644 index 1c85098c1..000000000 --- a/x11/gnome2-lite/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -GNU Network Object Model Environment - -This metaport installs the pieces of the GNOME 2 desktop that -are needed to provide a functional desktop. x11/gnome2 -contains the full version of the GNOME 2 desktop environment. - -Other popular GNOME applications can be installed from the other -GNOME 2 metaports: - - * x11/gnome2-fifth-toe - * x11/gnome2-power-tools - * editors/gnome2-office - * devel/gnome2-hacker-tools - -WWW: http://www.FreeBSD.org/gnome/ diff --git a/x11/gnome2-lite/pkg-message b/x11/gnome2-lite/pkg-message deleted file mode 100644 index 0b0e5564e..000000000 --- a/x11/gnome2-lite/pkg-message +++ /dev/null @@ -1,21 +0,0 @@ -************************************************************ - -The GNOME 2 desktop Lite edition has been successfully installed. - -The Lite edition does not include all the components of the standard -GNOME 2 desktop as detailed at http://www.gnome.org. If you wish to -install the full desktop, you can remove this port, and install the -x11/gnome2 port or package. That can be best accomplished using -the following commands: - -# pkg_delete gnome2-lite -# cd /usr/ports/x11/gnome2 -# make install clean - -Alternatively, you can install additional GNOME components individually -using either their ports or packages. - -For more help on using GNOME on FreeBSD, please see the FreeBSD GNOME project -site at http://www.FreeBSD.org/gnome. - -************************************************************ diff --git a/x11/gnome2-power-tools/Makefile b/x11/gnome2-power-tools/Makefile deleted file mode 100644 index 7501a4721..000000000 --- a/x11/gnome2-power-tools/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: gnome2-power-tools -# Date created: 18 January 2004 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome2-power-tools/Makefile,v 1.78 2007/10/04 21:04:29 mezz Exp $ -# - -PORTREVISION= 0 -CATEGORIES= x11 gnome -PKGNAMESUFFIX= -power-tools - -COMMENT= The 'Geektoys' for the GNOME 2 power user - -RUN_DEPENDS= ${LOCALBASE}/lib/epiphany/2.20/extensions/libgesturesextension.so:${PORTSDIR}/www/epiphany-extensions \ - gnome-pkgview:${PORTSDIR}/sysutils/gnome-pkgview \ - ${LOCALBASE}/libexec/netspeed_applet2:${PORTSDIR}/net/netspeed_applet \ - ${LOCALBASE}/sbin/gkrellmd:${PORTSDIR}/sysutils/gkrellm2 \ - splashsetter:${PORTSDIR}/deskutils/splashsetter \ - gdesklets:${PORTSDIR}/deskutils/gdesklets \ - cog:${PORTSDIR}/sysutils/cog \ - gnome-blog-poster:${PORTSDIR}/deskutils/gnome-blog \ - gnomesu:${PORTSDIR}/security/libgnomesu \ - bpm:${PORTSDIR}/ports-mgmt/bpm \ - gnome-file-share-properties:${PORTSDIR}/www/gnome-user-share \ - serpentine:${PORTSDIR}/sysutils/serpentine \ - devilspie:${PORTSDIR}/x11-wm/devilspie \ - ${LOCALBASE}/lib/nautilus/extensions-1.0/libnautilus-open-terminal.so:${PORTSDIR}/deskutils/nautilus-open-terminal \ - gtweakui-menus:${PORTSDIR}/deskutils/gtweakui \ - gnome-art:${PORTSDIR}/x11-themes/gnome-art \ - brightside:${PORTSDIR}/x11/brightside \ - evolution-gconf-filter-exchange:${PORTSDIR}/devel/evolution-gconf-tools \ - ${LOCALBASE}/libexec/quick-lounge-applet:${PORTSDIR}/misc/quick-lounge-applet \ - eiciel:${PORTSDIR}/sysutils/eiciel \ - gtk-send-pr:${PORTSDIR}/sysutils/gtk-send-pr \ - thefish:${PORTSDIR}/sysutils/thefish \ - pbrowser:${PORTSDIR}/ports-mgmt/portbrowser - -MASTERDIR= ${.CURDIR}/../gnome2 -GNOME_SLAVE= yes - -DESCR= ${.CURDIR}/pkg-descr -.include "${MASTERDIR}/Makefile" diff --git a/x11/gnome2-power-tools/pkg-descr b/x11/gnome2-power-tools/pkg-descr deleted file mode 100644 index 041e159b9..000000000 --- a/x11/gnome2-power-tools/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -GNOME 2 Power Tools - -Power Tools is every GNOME geek's Batbelt. It fills the gap between the -core GNOME Desktop, which tries to be a relevant set of modules for all -users; and the Fifth Toe, which is the collection of the coolest and most -useful GNOME applications. - -This collection consists of utilities and applets for the technically-minded -GNOME user. It also contains many useful add-on utilities for some of the -applications found in the Desktop and Fifth Toe. - -WWW: http://www.FreeBSD.org/gnome/ diff --git a/x11/gnome2/Makefile b/x11/gnome2/Makefile deleted file mode 100644 index 1ea5fcd26..000000000 --- a/x11/gnome2/Makefile +++ /dev/null @@ -1,108 +0,0 @@ -# New ports collection makefile for: gnome2 -# Date created: 21 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/gnome2/Makefile,v 1.220 2007/09/19 23:27:28 marcus Exp $ -# - -PORTNAME= gnome2 -PORTVERSION= 2.20.1 -PORTREVISION?= 0 -CATEGORIES?= x11 gnome -MASTER_SITES= # empty -DISTFILES= # empty -EXTRACT_ONLY= # empty - -MAINTAINER= gnome@FreeBSD.org -COMMENT?= The "meta-port" for the GNOME 2 integrated X11 desktop - -RUN_DEPENDS?= ${LOCALBASE}/libexec/gweather-applet-2:${PORTSDIR}/x11/gnome-applets \ - gnome-cd:${PORTSDIR}/audio/gnome-media \ - gnome-dictionary:${PORTSDIR}/deskutils/gnome-utils \ - eog:${PORTSDIR}/graphics/eog \ - gconf-editor:${PORTSDIR}/sysutils/gconf-editor \ - gnect:${PORTSDIR}/games/gnome-games \ - gedit:${PORTSDIR}/editors/gedit \ - gnome-terminal:${PORTSDIR}/x11/gnome-terminal \ - gnome-session:${PORTSDIR}/x11/gnome-session \ - bug-buddy:${PORTSDIR}/devel/bug-buddy \ - gnome-system-monitor:${PORTSDIR}/sysutils/gnome-system-monitor \ - nautilus:${PORTSDIR}/x11-fm/nautilus \ - ${LOCALBASE}/sbin/gdm:${PORTSDIR}/x11/gdm \ - ${LOCALBASE}/share/gnome/help/user-guide/C/user-guide.xml:${PORTSDIR}/misc/gnome-user-docs \ - ${LOCALBASE}/share/sounds/question.wav:${PORTSDIR}/audio/gnome-audio \ - ${LOCALBASE}/libdata/pkgconfig/libgail-gnome.pc:${PORTSDIR}/x11-toolkits/libgail-gnome \ - file-roller:${PORTSDIR}/archivers/file-roller \ - ${LOCALBASE}/share/themes/HighContrast/gtk-2.0/gtkrc:${PORTSDIR}/x11-themes/gnome-themes \ - gok:${PORTSDIR}/accessibility/gok \ - nautilus-cd-burner:${PORTSDIR}/sysutils/nautilus-cd-burner \ - gcalctool:${PORTSDIR}/math/gcalctool \ - gucharmap:${PORTSDIR}/deskutils/gucharmap \ - zenity:${PORTSDIR}/x11/zenity \ - ${LOCALBASE}/lib/X11/fonts/bitstream-vera/Vera.ttf:${PORTSDIR}/x11-fonts/bitstream-vera \ - ${LOCALBASE}/libexec/gnome-netstatus-applet:${PORTSDIR}/net/gnome-netstatus \ - dasher:${PORTSDIR}/accessibility/dasher \ - evolution:${PORTSDIR}/mail/evolution \ - ${LOCALBASE}/libexec/evolution-webcal:${PORTSDIR}/www/evolution-webcal \ - network-admin:${PORTSDIR}/sysutils/gnome-system-tools \ - gnome-nettool:${PORTSDIR}/net/gnome-nettool \ - vino-session:${PORTSDIR}/net/vino \ - exchange-connector-setup-2.12:${PORTSDIR}/mail/evolution-exchange \ - ${LOCALBASE}/lib/gstreamer-0.10/.gstreamer-plugins-core.keep:${PORTSDIR}/multimedia/gstreamer-plugins-core \ - ${LOCALBASE}/lib/gstreamer-0.10/libgstgconfelements.so:${PORTSDIR}/devel/gstreamer-plugins-gconf \ - totem:${PORTSDIR}/multimedia/totem \ - gnome-control-center:${PORTSDIR}/sysutils/gnome-control-center \ - ${LOCALBASE}/share/gnome-background-properties/gnome-branded.xml:${PORTSDIR}/x11-themes/gnome-backgrounds \ - sound-juicer:${PORTSDIR}/audio/sound-juicer \ - gnome-keyring-manager:${PORTSDIR}/security/gnome-keyring-manager \ - ${LOCALBASE}/libdata/pkgconfig/libgtkhtml-2.0.pc:${PORTSDIR}/www/libgtkhtml \ - evince:${PORTSDIR}/graphics/evince \ - ${LOCALBASE}/libexec/fast-user-switch-applet:${PORTSDIR}/x11/fast-user-switch-applet \ - ${LOCALBASE}/lib/deskbar-applet/deskbar-applet:${PORTSDIR}/deskutils/deskbar-applet \ - alacarte:${PORTSDIR}/deskutils/alacarte \ - gnome-power-manager:${PORTSDIR}/sysutils/gnome-power-manager \ - gnome-volume-manager:${PORTSDIR}/sysutils/gnome-volume-manager \ - orca:${PORTSDIR}/accessibility/orca \ - gnome-mount:${PORTSDIR}/sysutils/gnome-mount \ - ${LOCALBASE}/libexec/notification-daemon:${PORTSDIR}/deskutils/notification-daemon \ - seahorse:${PORTSDIR}/security/seahorse - -NO_BUILD= yes - -.if !defined(GNOME_SLAVE) -USE_PYTHON= yes -.endif - -.if !defined(GNOME_SLAVE) || ${.CURDIR:T}=="gnome2-lite" -OPTIONS= XSCREENSAVER "Use xscreensaver as screen saver app" off -.endif - -do-install: # empty - -.include <bsd.port.pre.mk> - -.if !defined(GNOME_SLAVE) -.if (${ARCH}!="sparc64" || ${OSVERSION} >= 601101) && ${ARCH}!="ia64" -RUN_DEPENDS+= yelp:${PORTSDIR}/x11/yelp \ - epiphany:${PORTSDIR}/www/epiphany -.endif -.if ${.CURDIR:T}!="gnome2-lite" -.if ${ARCH} == "i386" -RUN_DEPENDS+= tomboy:${PORTSDIR}/deskutils/tomboy -.endif -.if ${OSVERSION}>=600000 -RUN_DEPENDS+= ekiga:${PORTSDIR}/net/ekiga -.endif -.endif -.endif - -.if ${.CURDIR}==${MASTERDIR} || ${.CURDIR:T}=="gnome2-lite" -.if defined(WITH_XSCREENSAVER) -RUN_DEPENDS+= ${LOCALBASE}/share/applications/gnome-screensaver-properties.desktop:${PORTSDIR}/x11/xscreensaver-gnome -.else -RUN_DEPENDS+= gnome-screensaver:${PORTSDIR}/x11/gnome-screensaver -.endif -.endif - -.include <bsd.port.post.mk> diff --git a/x11/gnome2/pkg-descr b/x11/gnome2/pkg-descr deleted file mode 100644 index a7051fc7b..000000000 --- a/x11/gnome2/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -GNU Network Object Model Environment - -This metaport installs the entire GNOME 2 desktop, including -the the most common user applications. Other popular GNOME -applications can be installed from the other GNOME 2 metaports: - - * x11/gnome2-fifth-toe - * x11/gnome2-power-tools - * editors/gnome2-office - * devel/gnome2-hacker-tools - -WWW: http://www.FreeBSD.org/gnome/ diff --git a/x11/gnome2/pkg-message b/x11/gnome2/pkg-message deleted file mode 100644 index d8f296a70..000000000 --- a/x11/gnome2/pkg-message +++ /dev/null @@ -1,8 +0,0 @@ -************************************************************************** -Congratulations! GNOME 2 has been successfully installed on your system. -For help on starting it up, as well as answers to common questions, and -some known issues, please see the FreeBSD GNOME homepage at: - - http://www.FreeBSD.org/gnome/ - -************************************************************************** diff --git a/x11/gnome2/pkg-plist b/x11/gnome2/pkg-plist deleted file mode 100644 index 549a621fe..000000000 --- a/x11/gnome2/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -@comment this plist intentionally left empty diff --git a/x11/gsynaptics/Makefile b/x11/gsynaptics/Makefile deleted file mode 100644 index cf15ba5c4..000000000 --- a/x11/gsynaptics/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: gsynaptics -# Date created: 2006-03-19 -# Whom: Norikatsu Shigemura <nork@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gsynaptics -PORTVERSION= 0.9.9 -PORTREVISION= 5 -CATEGORIES= x11 -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} -MASTER_SITE_SUBDIR= gsynaptics/21527 - -MAINTAINER= nork@FreeBSD.org -COMMENT= GNOME Synaptics Touchpad setting tool - -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser - -USE_GNOME= lthack intlhack intltool pkgconfig gtk20 libgnome libglade2 libgnomeui -USE_ICONV= yes -USE_GMAKE= yes -USE_PERL5= yes -GNU_CONFIGURE= yes - -CONFIGURE_ENV= CPPFLAGS=-I${LOCALBASE}/include \ - LDFLAGS=-L${LOCALBASE}/lib - -MAN1= gsynaptics.1 gsynaptics-init.1 - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.pre.mk> - -.if ${X_WINDOW_SYSTEM} == "xorg" -RUN_DEPENDS+= ${X11BASE}/lib/xorg/modules/input/synaptics_drv.so:${PORTSDIR}/x11-drivers/synaptics -.else -RUN_DEPENDS+= ${X11BASE}/lib/modules/input/synaptics_drv.o:${PORTSDIR}/x11-drivers/synaptics -.endif - -.include <bsd.port.post.mk> diff --git a/x11/gsynaptics/distinfo b/x11/gsynaptics/distinfo deleted file mode 100644 index ef9fd395b..000000000 --- a/x11/gsynaptics/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gsynaptics-0.9.9.tar.gz) = 11331465d2d67f13b58f84f940b9c9a0 -SHA256 (gsynaptics-0.9.9.tar.gz) = 46c7009c2b8f61e6453a448037180fab8863f19f6bcd91218d455908f33b1ded -SIZE (gsynaptics-0.9.9.tar.gz) = 387003 diff --git a/x11/gsynaptics/pkg-descr b/x11/gsynaptics/pkg-descr deleted file mode 100644 index e297fd236..000000000 --- a/x11/gsynaptics/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -gsynaptics is a setting tool for Synaptics Touchpad -driver for XFree86 4.x/XOrg. - -WWW: http://sourceforge.jp/projects/gsynaptics/ diff --git a/x11/gsynaptics/pkg-message b/x11/gsynaptics/pkg-message deleted file mode 100644 index c96ace91b..000000000 --- a/x11/gsynaptics/pkg-message +++ /dev/null @@ -1,31 +0,0 @@ -=============================================================================== - - * SETUP NOTE * SETUP NOTE * - -o Enable "SHMConfig on" in /etc/xorg.conf (or /etc/XF86Config) - This tools can be used only if "SHMConfig" "on" in the section - of synaptics driver in /etc/xorg.conf or /etc/XF86Config. - -/etc/xorg.conf (/etc/XF86Config) ------------------ - : -Section "InputDevice" - Driver "synaptics" - : - Option "SHMConfig" "on" - : -EndSection - : -/etc/xorg.conf (/etc/XF86Config) ------------------ - -o To use your setting value at each time of starting of Xserver, - you have to run gsynaptics-init at starting time of Xserver. - - GNOME users, - you have to add gsynaptics-init on [Desktop] - [Preferences] - - [Sessions] - [Startup Programs] in GNOME Menu. - - non GNOME users, - you have to add gsynaptics-init in .xinitrc or - .xsession. - -=============================================================================== diff --git a/x11/gsynaptics/pkg-plist b/x11/gsynaptics/pkg-plist deleted file mode 100644 index 65810d0a7..000000000 --- a/x11/gsynaptics/pkg-plist +++ /dev/null @@ -1,13 +0,0 @@ -bin/gsynaptics -bin/gsynaptics-init -share/applications/gsynaptics.desktop -share/gnome/autostart/gsynaptics-init.desktop -share/gsynaptics/gsynaptics.glade -share/locale/es/LC_MESSAGES/gsynaptics.mo -share/locale/fr/LC_MESSAGES/gsynaptics.mo -share/locale/ja/LC_MESSAGES/gsynaptics.mo -share/locale/zh_CN/LC_MESSAGES/gsynaptics.mo -share/locale/zh_TW/LC_MESSAGES/gsynaptics.mo -share/pixmaps/touchpad.png -@dirrmtry share/applications -@dirrm share/gsynaptics diff --git a/x11/gtstarter/Makefile b/x11/gtstarter/Makefile deleted file mode 100644 index 264329475..000000000 --- a/x11/gtstarter/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: gtstarter -# Date created: 15 April 2004 -# Whom: Franz Klammer <klammer@webonaut.com> -# -# $FreeBSD$ -# - -PORTNAME= gtstarter -PORTVERSION= 0.4.6.3 -CATEGORIES= x11 gnome -MASTER_SITES= http://webonaut.com/distfiles/${PORTNAME}/ - -MAINTAINER= klammer@webonaut.com -COMMENT= Start gnome-terminal from a list of configured profiles (incl. Applet) - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_PYTHON= yes -USE_GNOME= pygnome2 pygnomeextras gnomeprefix - -do-build: - @${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g' \ - ${WRKSRC}/*.py ${WRKSRC}/*.server - @${FIND} ${WRKSRC} -name '*.bak' -delete - @${FIND} ${WRKSRC} -name '*.orig' -delete - @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC} - -do-install: - ${MKDIR} ${PREFIX}/libexec/${PORTNAME} - @${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} \ - ${PREFIX}/libexec/${PORTNAME}/ - @${INSTALL_SCRIPT} ${WRKSRC}/*.py* \ - ${PREFIX}/libexec/${PORTNAME}/ - @${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.desktop \ - ${PREFIX}/share/applications/ - @${INSTALL_DATA} ${WRKSRC}/*.server \ - ${PREFIX}/libdata/bonobo/servers/ - @${LN} -sf ${PREFIX}/libexec/${PORTNAME}/${PORTNAME} \ - ${PREFIX}/bin/${PORTNAME} - -.include <bsd.port.mk> diff --git a/x11/gtstarter/distinfo b/x11/gtstarter/distinfo deleted file mode 100644 index 3ae279de3..000000000 --- a/x11/gtstarter/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gtstarter-0.4.6.3.tar.bz2) = 842d36f88da9fdbc1ffba31ee01b7438 -SHA256 (gtstarter-0.4.6.3.tar.bz2) = 2047b5d51312fe58b60d1dc15c01b25db25212a87b34a57c2797057ddffb7363 -SIZE (gtstarter-0.4.6.3.tar.bz2) = 6136 diff --git a/x11/gtstarter/pkg-descr b/x11/gtstarter/pkg-descr deleted file mode 100644 index aaed5a688..000000000 --- a/x11/gtstarter/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -GNOME Application and Applet written in Python to start -the gnome-terminal with a specified profile. diff --git a/x11/gtstarter/pkg-plist b/x11/gtstarter/pkg-plist deleted file mode 100644 index 2d60f0286..000000000 --- a/x11/gtstarter/pkg-plist +++ /dev/null @@ -1,10 +0,0 @@ -bin/gtstarter -libexec/gtstarter/gtstarter_applet.py -libexec/gtstarter/gtstarter_applet.pyc -libexec/gtstarter/gtstarter_lib.py -libexec/gtstarter/gtstarter_lib.pyc -libexec/gtstarter/gtstarter -libdata/bonobo/servers/GTStarterApplet.server -share/applications/gtstarter.desktop -@dirrm libexec/gtstarter -@dirrmtry share/applications diff --git a/x11/libcapplet/Makefile b/x11/libcapplet/Makefile deleted file mode 100644 index 9e67b60f6..000000000 --- a/x11/libcapplet/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: libcapplet -# Date created: 10 July 2002 -# Whom: Maxim Soboleb <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/libcapplet/Makefile,v 1.6 2007/05/03 02:42:51 mezz Exp $ -# - -PORTNAME= libcapplet -PORTVERSION= 1.4.0.5 -PORTREVISION= 9 -CATEGORIES= x11 gnome -MASTER_SITES= http://people.freebsd.org/~sobomax/ -DIST_SUBDIR= gnome - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A library for writing custom applets for GNOME Control Center - -USE_BZIP2= yes -USE_GNOME= gnomelibs -USE_LDCONFIG= yes -USE_GETOPT_LONG=yes -MAKE_ENV= X11BASE="${LOCALBASE}" LOCALBASE="${LOCALBASE}" LDFLAGS="${LDFLAGS}" - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500041 -post-build: - @${REINPLACE_CMD} -e 's/-lgnugetopt //' ${WRKSRC}/cappletConf.sh -.endif - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/libcapplet.so.5 ${PREFIX}/lib - ${INSTALL_DATA} ${WRKSRC}/libcapplet.a ${PREFIX}/lib - ${LN} -sf libcapplet.so.5 ${PREFIX}/lib/libcapplet.so - ${MKDIR} ${PREFIX}/include/libcapplet1 - ${INSTALL_DATA} ${WRKSRC}/capplet-widget.h \ - ${PREFIX}/include/libcapplet1 - ${MKDIR} ${PREFIX}/share/idl - ${INSTALL_DATA} ${WRKSRC}/control-center.idl ${PREFIX}/share/idl - ${INSTALL_SCRIPT} ${WRKSRC}/cappletConf.sh ${PREFIX}/etc - -.include <bsd.port.post.mk> diff --git a/x11/libcapplet/distinfo b/x11/libcapplet/distinfo deleted file mode 100644 index 5c72444c1..000000000 --- a/x11/libcapplet/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome/libcapplet-1.4.0.5.tar.bz2) = eeffa3f60ca0c253915ae6fb60cabf09 -SHA256 (gnome/libcapplet-1.4.0.5.tar.bz2) = 33dc45a2b1f0c4a974a4a548f6906eeda132b390527b12fda31c2caac40f7635 -SIZE (gnome/libcapplet-1.4.0.5.tar.bz2) = 6023 diff --git a/x11/libcapplet/files/patch-Makefile b/x11/libcapplet/files/patch-Makefile deleted file mode 100644 index 72fec2549..000000000 --- a/x11/libcapplet/files/patch-Makefile +++ /dev/null @@ -1,23 +0,0 @@ ---- Makefile.orig Wed Jul 10 08:32:05 2002 -+++ Makefile Wed Oct 4 15:35:57 2006 -@@ -7,14 +7,14 @@ - SRCS= capplet-widget-libs.c capplet-widget.c capplet-widget-libs.h \ - capplet-widget.h control-center-common.c control-center-skels.c \ - control-center-stubs.c control-center.h --CFLAGS+=-I. -I${X11BASE}/include -I${X11BASE}/include/gtk12 \ -- -I${X11BASE}/include/gnome-1.0 -I${LOCALBASE}/include \ -+CFLAGS+=-I. -I${X11BASE}/include -I${LOCALBASE}/include/gtk12 \ -+ -I${LOCALBASE}/include/gnome-1.0 -I${LOCALBASE}/include \ - -I${LOCALBASE}/include/glib12 -I${LOCALBASE}/include/orbit-1.0 - LDADD+= -L${LOCALBASE}/lib -L${X11BASE}/lib -lORBitCosNaming -lORBit -lIIOP \ -- -lORBitutil -lglib12 -lwrap -lm -lgnorba -lXpm -ljpeg -lgnomeui \ -- -lart_lgpl -lgdk_imlib -ltiff -lungif -lpng -lz -lSM -lICE -lgtk12 \ -- -lgdk12 -lgmodule12 -lXext -lX11 -lgnome -lgnomesupport -lintl \ -- -lesd -lgnugetopt -laudiofile -+ -lORBitutil -lglib-12 -lwrap -lm -lgnorba -lXpm -ljpeg -lgnomeui \ -+ -lart_lgpl -lgdk_imlib -ltiff -lungif -lpng -lz -lSM -lICE -lgtk-12 \ -+ -lgdk-12 -lgmodule-12 -lXext -lX11 -lgnome -lgnomesupport -lintl \ -+ -lesd ${LDFLAGS} -laudiofile - - CLEANFILES+=control-center-common.c control-center-skels.c \ - control-center-stubs.c control-center.h cappletConf.sh \ diff --git a/x11/libcapplet/files/patch-cappletConf.sh.in b/x11/libcapplet/files/patch-cappletConf.sh.in deleted file mode 100644 index ee73029fd..000000000 --- a/x11/libcapplet/files/patch-cappletConf.sh.in +++ /dev/null @@ -1,9 +0,0 @@ ---- cappletConf.sh.in.orig Wed Jul 10 08:42:31 2002 -+++ cappletConf.sh.in Sat Oct 7 15:03:42 2006 -@@ -1,4 +1,4 @@ - CAPPLET_LIBDIR="-Wl,-E -L%%X11BASE%%/lib -L%%LOCALBASE%%/lib" --CAPPLET_LIBS="-lcapplet -Wl,-E -lXpm -ljpeg -lgnomeui -lart_lgpl -lgdk_imlib -ltiff -lungif -lpng -lz -lSM -lICE -lgtk12 -lgdk12 -lgmodule12 -lXext -lX11 -lgnome -lgnomesupport -lintl -lesd -lgnugetopt -laudiofile -lm -lglib12 -L%%LOCALBASE%%/lib -lORBitCosNaming -lORBit -lIIOP -lORBitutil -lglib12 -lwrap -lm -lgnorba" --CAPPLET_INCLUDEDIR="-I%%X11BASE%%/include/libcapplet1 -I%%X11BASE%%/include/gnome-1.0 -I%%X11BASE%%/include -DNEED_GNOMESUPPORT_H -I%%X11BASE%%/lib/gnome-libs/include -I%%LOCALBASE%%/include/glib12 -I%%LOCALBASE%%/include/orbit-1.0 -I%%LOCALBASE%%/include -I%%X11BASE%%/include/gtk12" -+CAPPLET_LIBS="-lcapplet -Wl,-E -lXpm -ljpeg -lgnomeui -lart_lgpl -lgdk_imlib -ltiff -lungif -lpng -lz -lSM -lICE -lgtk-12 -lgdk-12 -lgmodule-12 -lXext -lX11 -lgnome -lgnomesupport -lintl -lesd -lgnugetopt -laudiofile -lm -lglib-12 -L%%LOCALBASE%%/lib -lORBitCosNaming -lORBit -lIIOP -lORBitutil -lglib-12 -lwrap -lm -lgnorba" -+CAPPLET_INCLUDEDIR="-I%%LOCALBASE%%/include/libcapplet1 -I%%LOCALBASE%%/include/gnome-1.0 -I%%X11BASE%%/include -DNEED_GNOMESUPPORT_H -I%%LOCALBASE%%/lib/gnome-libs/include -I%%LOCALBASE%%/include/glib12 -I%%LOCALBASE%%/include/orbit-1.0 -I%%LOCALBASE%%/include -I%%LOCALBASE%%/include/gtk12" - MODULE_VERSION="capplet-1.4.0.5" diff --git a/x11/libcapplet/pkg-descr b/x11/libcapplet/pkg-descr deleted file mode 100644 index f2ba80523..000000000 --- a/x11/libcapplet/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Small library for writing custom applets for GNOME Control Center. - -WWW: http://www.gnome.org/ diff --git a/x11/libcapplet/pkg-plist b/x11/libcapplet/pkg-plist deleted file mode 100644 index 906f23b6c..000000000 --- a/x11/libcapplet/pkg-plist +++ /dev/null @@ -1,7 +0,0 @@ -etc/cappletConf.sh -include/libcapplet1/capplet-widget.h -lib/libcapplet.a -lib/libcapplet.so -lib/libcapplet.so.5 -share/idl/control-center.idl -@dirrm include/libcapplet1 diff --git a/x11/libgnome/Makefile b/x11/libgnome/Makefile deleted file mode 100644 index a4f6e4c51..000000000 --- a/x11/libgnome/Makefile +++ /dev/null @@ -1,66 +0,0 @@ -# New ports collection makefile for: libgnome -# Date created: 17 June 1998 -# Whom: Yukihiro Nakai <Nakai@technologist.com> -# -# $FreeBSD$ -# $MCom: ports/x11/libgnome/Makefile,v 1.109 2007/10/17 17:28:02 mezz Exp $ -# - -PORTNAME= libgnome -PORTVERSION= 2.20.1.1 -PORTREVISION?= 1 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Libraries for GNOME, a GNU desktop environment - -USE_BZIP2= yes - -.if !defined(REFERENCE_PORT) - -BUILD_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian -RUN_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian - -USE_GETTEXT= yes -USE_XPM= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack esound \ - gnomevfs2 libxslt ltverhack referencehack -USE_BISON= build -USE_XLIB= yes -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -SUB_FILES= pkg-deinstall - -MAN7= gnome-options.7 - -GCONF_SCHEMAS= desktop_gnome_accessibility_keyboard.schemas \ - desktop_gnome_accessibility_startup.schemas \ - desktop_gnome_applications_browser.schemas \ - desktop_gnome_applications_help_viewer.schemas \ - desktop_gnome_applications_terminal.schemas \ - desktop_gnome_applications_window_manager.schemas \ - desktop_gnome_background.schemas \ - desktop_gnome_file_views.schemas \ - desktop_gnome_interface.schemas desktop_gnome_lockdown.schemas \ - desktop_gnome_peripherals_keyboard.schemas \ - desktop_gnome_peripherals_mouse.schemas \ - desktop_gnome_sound.schemas desktop_gnome_thumbnailers.schemas \ - desktop_gnome_typing_break.schemas \ - desktop_gnome_applications_at_mobility.schemas \ - desktop_gnome_applications_at_visual.schemas - -post-patch: - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ - ${WRKSRC}/libgnome/libgnome-2.0.pc.in - @${REINPLACE_CMD} -e '/^$$/d' ${WRKSRC}/po/POTFILES.in - -.include <bsd.port.mk> - -.endif diff --git a/x11/libgnome/distinfo b/x11/libgnome/distinfo deleted file mode 100644 index 0d26b8553..000000000 --- a/x11/libgnome/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libgnome-2.20.1.1.tar.bz2) = cfab025a8b9a19cdae1c64f8b005c513 -SHA256 (gnome2/libgnome-2.20.1.1.tar.bz2) = d5b66f1beeefe3b61b654fa4d9c35b642fd73e310da1dd241e0ccb99dc93adec -SIZE (gnome2/libgnome-2.20.1.1.tar.bz2) = 1370144 diff --git a/x11/libgnome/files/patch-libgnome::Makefile.in b/x11/libgnome/files/patch-libgnome::Makefile.in deleted file mode 100644 index efac650ba..000000000 --- a/x11/libgnome/files/patch-libgnome::Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- libgnome/Makefile.in.orig Tue May 29 22:16:13 2007 -+++ libgnome/Makefile.in Tue May 29 22:16:58 2007 -@@ -280,6 +280,8 @@ - LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@ - libgnomeincludedir = $(includedir)/libgnome-2.0/libgnome - INCLUDES = \ -+ -DPREFIX=\""$(PREFIX)"\" \ -+ -DLOCALBASE=\""$(LOCALBASE)"\" \ - -I.. \ - -I$(srcdir)/.. \ - $(WARN_CFLAGS) \ diff --git a/x11/libgnome/files/patch-libgnome_gnome-util.c b/x11/libgnome/files/patch-libgnome_gnome-util.c deleted file mode 100644 index 1a7e49a84..000000000 --- a/x11/libgnome/files/patch-libgnome_gnome-util.c +++ /dev/null @@ -1,19 +0,0 @@ ---- libgnome/gnome-util.c.orig Mon Jul 10 15:25:22 2006 -+++ libgnome/gnome-util.c Mon Jul 10 15:25:55 2006 -@@ -79,11 +79,11 @@ - const char shells [][14] = { - /* Note that on some systems shells can also - * be installed in /usr/bin */ -- "/bin/bash", "/usr/bin/bash", -- "/bin/zsh", "/usr/bin/zsh", -- "/bin/tcsh", "/usr/bin/tcsh", -- "/bin/ksh", "/usr/bin/ksh", -- "/bin/csh", "/bin/sh" -+ LOCALBASE "/bin/bash", -+ LOCALBASE "/bin/zsh", -+ LOCALBASE "/bin/ksh", -+ 0 -+ - }; - - if (geteuid () == getuid () && diff --git a/x11/libgnome/files/patch-libgnome_libgnome-2.0.pc.in b/x11/libgnome/files/patch-libgnome_libgnome-2.0.pc.in deleted file mode 100644 index 8d376a4b8..000000000 --- a/x11/libgnome/files/patch-libgnome_libgnome-2.0.pc.in +++ /dev/null @@ -1,9 +0,0 @@ ---- libgnome/libgnome-2.0.pc.in.orig Mon Apr 18 16:54:21 2005 -+++ libgnome/libgnome-2.0.pc.in Mon Apr 18 16:54:41 2005 -@@ -8,5 +8,5 @@ - Description: libgnome - Requires: glib-2.0 ORBit-2.0 libbonobo-2.0 gconf-2.0 gnome-vfs-2.0 - Version: @VERSION@ --Libs: -L${libdir} -lgnome-2 -lpopt -+Libs: -L${libdir} -L%%LOCALBASE%%/lib -lgnome-2 -lpopt - Cflags: -I${includedir}/libgnome-2.0 diff --git a/x11/libgnome/files/pkg-deinstall.in b/x11/libgnome/files/pkg-deinstall.in deleted file mode 100644 index 3cfaf6079..000000000 --- a/x11/libgnome/files/pkg-deinstall.in +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# $MCom: ports/x11/libgnome/files/pkg-deinstall.in,v 1.10 2007/02/16 18:14:27 mezz Exp $ -# -# Restore gconf keys of gnomevfs2. - -if [ "$2" != "POST-DEINSTALL" ]; then - exit 0 -fi - -SCHEMAS=%%LOCALBASE%%/etc/gconf/schemas/desktop_default_applications.schemas - -if [ -f ${SCHEMAS} ]; then - env GCONF_CONFIG_SOURCE=xml::%%LOCALBASE%%/etc/gconf/gconf.xml.defaults \ - %%LOCALBASE%%/bin/gconftool-2 --makefile-install-rule ${SCHEMAS} \ - > /dev/null || /usr/bin/true -fi - -exit 0 diff --git a/x11/libgnome/pkg-descr b/x11/libgnome/pkg-descr deleted file mode 100644 index b78aaf2cc..000000000 --- a/x11/libgnome/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -LibGnome provides the non-GUI backend for the GNOME environment. - -WWW: http://www.gnome.org/ diff --git a/x11/libgnome/pkg-plist b/x11/libgnome/pkg-plist deleted file mode 100644 index 47b38ad06..000000000 --- a/x11/libgnome/pkg-plist +++ /dev/null @@ -1,136 +0,0 @@ -bin/gnome-open -etc/sound/events/gnome-2.soundlist -etc/sound/events/gtk-events-2.soundlist -include/libgnome-2.0/libgnome/gnome-config.h -include/libgnome-2.0/libgnome/gnome-exec.h -include/libgnome-2.0/libgnome/gnome-gconf.h -include/libgnome-2.0/libgnome/gnome-help.h -include/libgnome-2.0/libgnome/gnome-i18n.h -include/libgnome-2.0/libgnome/gnome-init.h -include/libgnome-2.0/libgnome/gnome-macros.h -include/libgnome-2.0/libgnome/gnome-program.h -include/libgnome-2.0/libgnome/gnome-score.h -include/libgnome-2.0/libgnome/gnome-sound.h -include/libgnome-2.0/libgnome/gnome-triggers.h -include/libgnome-2.0/libgnome/gnome-url.h -include/libgnome-2.0/libgnome/gnome-util.h -include/libgnome-2.0/libgnome/libgnome.h -include/libgnome-2.0/libgnome/libgnometypebuiltins.h -lib/bonobo/monikers/libmoniker_extra_2.a -lib/bonobo/monikers/libmoniker_extra_2.la -lib/bonobo/monikers/libmoniker_extra_2.so -lib/libgnome-2.a -lib/libgnome-2.la -lib/libgnome-2.so -lib/libgnome-2.so.0 -libdata/bonobo/servers/GNOME_Moniker_std.server -libdata/pkgconfig/libgnome-2.0.pc -share/gnome-background-properties/gnome-default.xml -share/locale/am/LC_MESSAGES/libgnome-2.0.mo -share/locale/ar/LC_MESSAGES/libgnome-2.0.mo -share/locale/as/LC_MESSAGES/libgnome-2.0.mo -share/locale/az/LC_MESSAGES/libgnome-2.0.mo -share/locale/be/LC_MESSAGES/libgnome-2.0.mo -share/locale/bg/LC_MESSAGES/libgnome-2.0.mo -share/locale/bn/LC_MESSAGES/libgnome-2.0.mo -share/locale/bn_IN/LC_MESSAGES/libgnome-2.0.mo -share/locale/bs/LC_MESSAGES/libgnome-2.0.mo -share/locale/ca/LC_MESSAGES/libgnome-2.0.mo -share/locale/cs/LC_MESSAGES/libgnome-2.0.mo -share/locale/cy/LC_MESSAGES/libgnome-2.0.mo -share/locale/da/LC_MESSAGES/libgnome-2.0.mo -share/locale/de/LC_MESSAGES/libgnome-2.0.mo -share/locale/dz/LC_MESSAGES/libgnome-2.0.mo -share/locale/el/LC_MESSAGES/libgnome-2.0.mo -share/locale/en_CA/LC_MESSAGES/libgnome-2.0.mo -share/locale/en_GB/LC_MESSAGES/libgnome-2.0.mo -share/locale/eo/LC_MESSAGES/libgnome-2.0.mo -share/locale/es/LC_MESSAGES/libgnome-2.0.mo -share/locale/et/LC_MESSAGES/libgnome-2.0.mo -share/locale/eu/LC_MESSAGES/libgnome-2.0.mo -share/locale/fa/LC_MESSAGES/libgnome-2.0.mo -share/locale/fi/LC_MESSAGES/libgnome-2.0.mo -share/locale/fr/LC_MESSAGES/libgnome-2.0.mo -share/locale/ga/LC_MESSAGES/libgnome-2.0.mo -share/locale/gl/LC_MESSAGES/libgnome-2.0.mo -share/locale/gu/LC_MESSAGES/libgnome-2.0.mo -share/locale/he/LC_MESSAGES/libgnome-2.0.mo -share/locale/hi/LC_MESSAGES/libgnome-2.0.mo -share/locale/hr/LC_MESSAGES/libgnome-2.0.mo -share/locale/hu/LC_MESSAGES/libgnome-2.0.mo -share/locale/id/LC_MESSAGES/libgnome-2.0.mo -share/locale/is/LC_MESSAGES/libgnome-2.0.mo -share/locale/it/LC_MESSAGES/libgnome-2.0.mo -share/locale/ja/LC_MESSAGES/libgnome-2.0.mo -share/locale/ka/LC_MESSAGES/libgnome-2.0.mo -share/locale/ko/LC_MESSAGES/libgnome-2.0.mo -share/locale/ku/LC_MESSAGES/libgnome-2.0.mo -share/locale/lt/LC_MESSAGES/libgnome-2.0.mo -share/locale/lv/LC_MESSAGES/libgnome-2.0.mo -share/locale/mg/LC_MESSAGES/libgnome-2.0.mo -share/locale/mk/LC_MESSAGES/libgnome-2.0.mo -share/locale/ml/LC_MESSAGES/libgnome-2.0.mo -share/locale/mn/LC_MESSAGES/libgnome-2.0.mo -share/locale/ms/LC_MESSAGES/libgnome-2.0.mo -share/locale/nb/LC_MESSAGES/libgnome-2.0.mo -share/locale/ne/LC_MESSAGES/libgnome-2.0.mo -share/locale/nl/LC_MESSAGES/libgnome-2.0.mo -share/locale/nn/LC_MESSAGES/libgnome-2.0.mo -share/locale/oc/LC_MESSAGES/libgnome-2.0.mo -share/locale/or/LC_MESSAGES/libgnome-2.0.mo -share/locale/pa/LC_MESSAGES/libgnome-2.0.mo -share/locale/pl/LC_MESSAGES/libgnome-2.0.mo -share/locale/pt/LC_MESSAGES/libgnome-2.0.mo -share/locale/pt_BR/LC_MESSAGES/libgnome-2.0.mo -share/locale/ro/LC_MESSAGES/libgnome-2.0.mo -share/locale/ru/LC_MESSAGES/libgnome-2.0.mo -share/locale/rw/LC_MESSAGES/libgnome-2.0.mo -share/locale/sk/LC_MESSAGES/libgnome-2.0.mo -share/locale/sl/LC_MESSAGES/libgnome-2.0.mo -share/locale/sq/LC_MESSAGES/libgnome-2.0.mo -share/locale/sr/LC_MESSAGES/libgnome-2.0.mo -share/locale/sr@Latn/LC_MESSAGES/libgnome-2.0.mo -share/locale/sr@ije/LC_MESSAGES/libgnome-2.0.mo -share/locale/sv/LC_MESSAGES/libgnome-2.0.mo -share/locale/ta/LC_MESSAGES/libgnome-2.0.mo -share/locale/th/LC_MESSAGES/libgnome-2.0.mo -share/locale/tr/LC_MESSAGES/libgnome-2.0.mo -share/locale/tt/LC_MESSAGES/libgnome-2.0.mo -share/locale/uk/LC_MESSAGES/libgnome-2.0.mo -share/locale/vi/LC_MESSAGES/libgnome-2.0.mo -share/locale/wa/LC_MESSAGES/libgnome-2.0.mo -share/locale/xh/LC_MESSAGES/libgnome-2.0.mo -share/locale/yi/LC_MESSAGES/libgnome-2.0.mo -share/locale/zh_CN/LC_MESSAGES/libgnome-2.0.mo -share/locale/zh_HK/LC_MESSAGES/libgnome-2.0.mo -share/locale/zh_TW/LC_MESSAGES/libgnome-2.0.mo -share/pixmaps/backgrounds/gnome/background-default.jpg -@dirrm share/pixmaps/backgrounds/gnome -@dirrm share/pixmaps/backgrounds -@dirrmtry share/gnome-background-properties -@dirrm include/libgnome-2.0/libgnome -@dirrm include/libgnome-2.0 -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/yi/LC_MESSAGES -@dirrmtry share/locale/yi -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/tt/LC_MESSAGES -@dirrmtry share/locale/tt -@dirrmtry share/locale/sr@ije/LC_MESSAGES -@dirrmtry share/locale/sr@ije -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as diff --git a/x11/libgnomekbd/Makefile b/x11/libgnomekbd/Makefile deleted file mode 100644 index aa055ad09..000000000 --- a/x11/libgnomekbd/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: libgnomekbd -# Date created: 2006-11-07 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/libgnomekbd/Makefile,v 1.12 2007/08/27 04:32:37 marcus Exp $ -# - -PORTNAME= libgnomekbd -PORTVERSION= 2.20.0 -CATEGORIES= x11 gnome -MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME keyboard shared library - -LIB_DEPENDS= xklavier.11:${PORTSDIR}/x11/libxklavier \ - dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib - -USE_BZIP2= yes -USE_GNOME= libgnomeui gnometarget gnomeprefix gnomehack -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -USE_GETTEXT= yes -USE_LDCONFIG= yes -USE_GMAKE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -GCONF_SCHEMAS= desktop_gnome_peripherals_keyboard_xkb.schemas - -post-patch: - @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ - 's|-Werror||g' - -.include <bsd.port.mk> diff --git a/x11/libgnomekbd/distinfo b/x11/libgnomekbd/distinfo deleted file mode 100644 index 931fde380..000000000 --- a/x11/libgnomekbd/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libgnomekbd-2.20.0.tar.bz2) = 0b495d355e25c3531419cb3996be7e28 -SHA256 (gnome2/libgnomekbd-2.20.0.tar.bz2) = b82310e5d319ac1ba33d008360c4fae128f1b68768f1e51ff1021b60c19a900c -SIZE (gnome2/libgnomekbd-2.20.0.tar.bz2) = 392206 diff --git a/x11/libgnomekbd/pkg-descr b/x11/libgnomekbd/pkg-descr deleted file mode 100644 index a4b625c78..000000000 --- a/x11/libgnomekbd/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -GNOME keyboard shared library diff --git a/x11/libgnomekbd/pkg-plist b/x11/libgnomekbd/pkg-plist deleted file mode 100644 index e198161ee..000000000 --- a/x11/libgnomekbd/pkg-plist +++ /dev/null @@ -1,76 +0,0 @@ -bin/gkbd-indicator-plugins-capplet -include/libgnomekbd/gkbd-config-registry-client.h -include/libgnomekbd/gkbd-config-registry.h -include/libgnomekbd/gkbd-desktop-config.h -include/libgnomekbd/gkbd-indicator-config.h -include/libgnomekbd/gkbd-indicator-plugin.h -include/libgnomekbd/gkbd-indicator.h -include/libgnomekbd/gkbd-keyboard-config.h -include/libgnomekbd/gkbd-keyboard-drawing.h -include/libgnomekbd/gkbd-util.h -lib/libgnomekbd.a -lib/libgnomekbd.la -lib/libgnomekbd.so -lib/libgnomekbd.so.1 -lib/libgnomekbdui.a -lib/libgnomekbdui.la -lib/libgnomekbdui.so -lib/libgnomekbdui.so.1 -libdata/pkgconfig/libgnomekbd.pc -libdata/pkgconfig/libgnomekbdui.pc -share/applications/gkbd-indicator-plugins-capplet.desktop -share/icons/hicolor/48x48/apps/gkbd-indicator-plugins-capplet.png -%%DATADIR%%/glade/gkbd-indicator-plugins.glade -share/locale/ar/LC_MESSAGES/libgnomekbd.mo -share/locale/be@latin/LC_MESSAGES/libgnomekbd.mo -share/locale/bg/LC_MESSAGES/libgnomekbd.mo -share/locale/bn_IN/LC_MESSAGES/libgnomekbd.mo -share/locale/ca/LC_MESSAGES/libgnomekbd.mo -share/locale/da/LC_MESSAGES/libgnomekbd.mo -share/locale/de/LC_MESSAGES/libgnomekbd.mo -share/locale/dz/LC_MESSAGES/libgnomekbd.mo -share/locale/el/LC_MESSAGES/libgnomekbd.mo -share/locale/en_GB/LC_MESSAGES/libgnomekbd.mo -share/locale/es/LC_MESSAGES/libgnomekbd.mo -share/locale/et/LC_MESSAGES/libgnomekbd.mo -share/locale/fi/LC_MESSAGES/libgnomekbd.mo -share/locale/fr/LC_MESSAGES/libgnomekbd.mo -share/locale/gl/LC_MESSAGES/libgnomekbd.mo -share/locale/gu/LC_MESSAGES/libgnomekbd.mo -share/locale/hu/LC_MESSAGES/libgnomekbd.mo -share/locale/it/LC_MESSAGES/libgnomekbd.mo -share/locale/ja/LC_MESSAGES/libgnomekbd.mo -share/locale/ka/LC_MESSAGES/libgnomekbd.mo -share/locale/ko/LC_MESSAGES/libgnomekbd.mo -share/locale/lt/LC_MESSAGES/libgnomekbd.mo -share/locale/mk/LC_MESSAGES/libgnomekbd.mo -share/locale/nb/LC_MESSAGES/libgnomekbd.mo -share/locale/nl/LC_MESSAGES/libgnomekbd.mo -share/locale/oc/LC_MESSAGES/libgnomekbd.mo -share/locale/or/LC_MESSAGES/libgnomekbd.mo -share/locale/pa/LC_MESSAGES/libgnomekbd.mo -share/locale/pl/LC_MESSAGES/libgnomekbd.mo -share/locale/pt/LC_MESSAGES/libgnomekbd.mo -share/locale/pt_BR/LC_MESSAGES/libgnomekbd.mo -share/locale/ru/LC_MESSAGES/libgnomekbd.mo -share/locale/si/LC_MESSAGES/libgnomekbd.mo -share/locale/sv/LC_MESSAGES/libgnomekbd.mo -share/locale/ta/LC_MESSAGES/libgnomekbd.mo -share/locale/th/LC_MESSAGES/libgnomekbd.mo -share/locale/uk/LC_MESSAGES/libgnomekbd.mo -share/locale/vi/LC_MESSAGES/libgnomekbd.mo -share/locale/zh_CN/LC_MESSAGES/libgnomekbd.mo -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%% -@dirrm include/libgnomekbd -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/applications diff --git a/x11/libgnomemm26/Makefile b/x11/libgnomemm26/Makefile deleted file mode 100644 index 9124c45f1..000000000 --- a/x11/libgnomemm26/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: libgnomemm -# Date created: 22 May 2003 -# Whom: Alexander Nedotsukov <bland@mail.ru> -# -# $FreeBSD$ -# $MCom: ports/x11/libgnomemm26/Makefile,v 1.12 2007/03/10 05:37:03 marcus Exp $ -# - -PORTNAME= libgnomemm -PORTVERSION= 2.20.0 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= bland@FreeBSD.org -COMMENT= C++ wrapper for libgnome library - -LIB_DEPENDS= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 - -LATEST_LINK= libgnomemm26 - -USE_BZIP2= yes -USE_XLIB= yes -USE_GMAKE= yes -USE_GCC= 3.4+ -USE_GNOME= gnomehack libgnome -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -CONFIGURE_ARGS= --enable-static - -PLIST_SUB= VERSION="2.6" API_VERSION="2.6" - -.include <bsd.port.mk> diff --git a/x11/libgnomemm26/distinfo b/x11/libgnomemm26/distinfo deleted file mode 100644 index 862b17d72..000000000 --- a/x11/libgnomemm26/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/libgnomemm-2.20.0.tar.bz2) = 6263d15a96c34a73964be37c4e9a261f -SHA256 (gnome2/libgnomemm-2.20.0.tar.bz2) = 4118936224bec44913e11b6b850ae33512c7aa8fde5524d171fcc7eafe1c5aa8 -SIZE (gnome2/libgnomemm-2.20.0.tar.bz2) = 248837 diff --git a/x11/libgnomemm26/pkg-descr b/x11/libgnomemm26/pkg-descr deleted file mode 100644 index 02e98740a..000000000 --- a/x11/libgnomemm26/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is a set of thin C++ wrappers for libgnome library. - -WWW: http://gtkmm.sourceforge.net/ diff --git a/x11/libgnomemm26/pkg-plist b/x11/libgnomemm26/pkg-plist deleted file mode 100644 index 4f553eb76..000000000 --- a/x11/libgnomemm26/pkg-plist +++ /dev/null @@ -1,24 +0,0 @@ -include/libgnomemm-%%API_VERSION%%/libgnomemm.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/init.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/main.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/moduleinfo.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/private/main_p.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/private/moduleinfo_p.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/private/program_p.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/program.h -include/libgnomemm-%%API_VERSION%%/libgnomemm/wrap_init.h -lib/libgnomemm-%%VERSION%%.a -lib/libgnomemm-%%VERSION%%.la -lib/libgnomemm-%%VERSION%%.so -lib/libgnomemm-%%VERSION%%.so.1 -lib/libgnomemm-%%API_VERSION%%/include/libgnomemmconfig.h -lib/libgnomemm-%%API_VERSION%%/proc/m4/convert.m4 -lib/libgnomemm-%%API_VERSION%%/proc/m4/convert_libgnomemm.m4 -libdata/pkgconfig/libgnomemm-%%API_VERSION%%.pc -@dirrm lib/libgnomemm-%%API_VERSION%%/proc/m4 -@dirrm lib/libgnomemm-%%API_VERSION%%/proc -@dirrm lib/libgnomemm-%%API_VERSION%%/include -@dirrm lib/libgnomemm-%%API_VERSION%% -@dirrm include/libgnomemm-%%API_VERSION%%/libgnomemm/private -@dirrm include/libgnomemm-%%API_VERSION%%/libgnomemm -@dirrm include/libgnomemm-%%API_VERSION%% diff --git a/x11/libxklavier/Makefile b/x11/libxklavier/Makefile deleted file mode 100644 index c3a55a4e7..000000000 --- a/x11/libxklavier/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection makefile for: libxklavier -# Date created: 31 May 2002 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/libxklavier/Makefile,v 1.34 2007/09/05 16:02:44 mezz Exp $ -# - -PORTNAME= libxklavier -PORTVERSION= 3.3 -PORTREVISION= 1 -PORTEPOCH= 1 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= gswitchit - -MAINTAINER= gnome@FreeBSD.org -COMMENT= An utility library to make XKB stuff easier - -RUN_DEPENDS= xkbcomp:${PORTSDIR}/x11/xkbcomp - -USE_XLIB= yes -USE_GMAKE= yes -USE_GNOME= gnometarget gnomehack libxml2 glib20 -USE_LDCONFIG= yes -USE_GETOPT_LONG=yes -GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ARGS= --disable-doxygen \ - --with-xkb-base=${LOCALBASE}/share/X11/xkb \ - --with-xkb-bin-base=${LOCALBASE}/bin \ - --with-xmodmap-base=${LOCALBASE}/share/xmodmap \ - --disable-gtk-doc \ - --with-html-dir=${GNOME_HTML_DIR} -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ - LDFLAGS="-L${LOCALBASE}/lib" - -PLIST_SUB= VERSION=${PORTVERSION} - -post-patch: - @${REINPLACE_CMD} -e 's|== "yes|= "yes|g' \ - ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/x11/libxklavier/distinfo b/x11/libxklavier/distinfo deleted file mode 100644 index 9c48625ae..000000000 --- a/x11/libxklavier/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (libxklavier-3.3.tar.gz) = 0b9a62ad4f007e6c42a70a4f6e0aecbf -SHA256 (libxklavier-3.3.tar.gz) = 050a14ddeda0bbf5c742cb60dee56de48736968d050543fc2e46bcd2e1837870 -SIZE (libxklavier-3.3.tar.gz) = 475629 diff --git a/x11/libxklavier/files/patch-libxklavier_xklavier_props.c b/x11/libxklavier/files/patch-libxklavier_xklavier_props.c deleted file mode 100644 index a56ec7896..000000000 --- a/x11/libxklavier/files/patch-libxklavier_xklavier_props.c +++ /dev/null @@ -1,15 +0,0 @@ ---- libxklavier/xklavier_props.c.orig Sun Apr 16 20:51:36 2006 -+++ libxklavier/xklavier_props.c Tue Jun 13 00:11:24 2006 -@@ -355,10 +355,8 @@ xkl_config_rec_get_from_root_window_prop - --varlen); - var[varlen] = '\0'; - /* Resize the original layout */ -- ((char *) -- g_realloc(*layout, -- laylen + 1))[laylen] = -- '\0'; -+ *layout = g_realloc(*layout, laylen + 1); -+ (*layout)[laylen] = '\0'; - } - } - layout++; diff --git a/x11/libxklavier/pkg-descr b/x11/libxklavier/pkg-descr deleted file mode 100644 index d5000e3ad..000000000 --- a/x11/libxklavier/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Libxklavier is a utility to simplify setting and changing -keyboard layouts. - -WWW: http://gswitchit.sourceforge.net/ diff --git a/x11/libxklavier/pkg-plist b/x11/libxklavier/pkg-plist deleted file mode 100644 index caf0c1705..000000000 --- a/x11/libxklavier/pkg-plist +++ /dev/null @@ -1,31 +0,0 @@ -include/libxklavier/xkl_config_item.h -include/libxklavier/xkl_config_rec.h -include/libxklavier/xkl_config_registry.h -include/libxklavier/xkl_engine.h -include/libxklavier/xkl_engine_marshal.h -include/libxklavier/xklavier.h -lib/libxklavier.a -lib/libxklavier.la -lib/libxklavier.so -lib/libxklavier.so.11 -libdata/pkgconfig/libxklavier.pc -%%DOCSDIR%%/ch01.html -%%DOCSDIR%%/ch02.html -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/libxklavier-XklConfigItem.html -%%DOCSDIR%%/libxklavier-XklConfigRec.html -%%DOCSDIR%%/libxklavier-XklConfigRegistry.html -%%DOCSDIR%%/libxklavier-XklEngine.html -%%DOCSDIR%%/libxklavier-xklavier.html -%%DOCSDIR%%/libxklavier.devhelp -%%DOCSDIR%%/libxklavier.devhelp2 -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png -%%DATADIR%%/xfree86.xml -@dirrm %%DATADIR%% -@dirrm %%DOCSDIR%% -@dirrm include/libxklavier diff --git a/x11/multi-gnome-terminal/Makefile b/x11/multi-gnome-terminal/Makefile deleted file mode 100644 index 6975034ab..000000000 --- a/x11/multi-gnome-terminal/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: multi-gnome-terminal -# Date created: 19 March 2002 -# Whom: Frederic Dubuy <fdubuy@free.fr> -# -# $FreeBSD$ -# $MCom$ -# - -PORTNAME= multi-gnome-terminal -PORTVERSION= 1.6.2 -PORTREVISION= 6 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} -MASTER_SITE_SUBDIR= multignometerm - -MAINTAINER= ports@FreeBSD.org -COMMENT= Gnome tabbed terminal emulator - -INSTALLS_OMF= yes -USE_GNOME= gnomehack gnomeprefix libglade -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= mgt-helper.1 multi-gnome-terminal.1 - -post-patch: - @${REINPLACE_CMD} -e 's|NO_XALF ||' ${WRKSRC}/gnome-terminal/multi-gnome-terminal.desktop - -post-install: - ${INSTALL_DATA} ${WRKSRC}/pixmaps/multignometerm.png \ - ${PREFIX}/share/pixmaps/multignometerm.png - -.include <bsd.port.mk> diff --git a/x11/multi-gnome-terminal/distinfo b/x11/multi-gnome-terminal/distinfo deleted file mode 100644 index 654dc1021..000000000 --- a/x11/multi-gnome-terminal/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (multi-gnome-terminal-1.6.2.tar.gz) = cbde3f9c06e95d53a28027599f3a08c2 -SHA256 (multi-gnome-terminal-1.6.2.tar.gz) = 68aad7fbf49e6ebd0cad582885008ab9b5f69a0042ce4b2cf6ec0e780aa7d191 -SIZE (multi-gnome-terminal-1.6.2.tar.gz) = 1874905 diff --git a/x11/multi-gnome-terminal/files/patch-gnome-terminal::vt.c b/x11/multi-gnome-terminal/files/patch-gnome-terminal::vt.c deleted file mode 100644 index 382903d0f..000000000 --- a/x11/multi-gnome-terminal/files/patch-gnome-terminal::vt.c +++ /dev/null @@ -1,54 +0,0 @@ ---- gnome-terminal/vt.c.orig Sun Apr 20 23:49:06 2003 -+++ gnome-terminal/vt.c Sun Aug 22 20:20:23 2004 -@@ -782,6 +782,7 @@ - vt_up(vt); - break; - default: -+ ; - } - - } -@@ -806,6 +807,7 @@ - vt_down(vt); - break; - default: -+ ; - } - } - -@@ -870,6 +872,7 @@ - } - break; - default: -+ ; - } - } - -@@ -956,6 +959,7 @@ - } - break; - default: -+ ; - } - /*vt->cursorx = (vt->cursorx-1) & (~7);*/ - } -@@ -980,6 +984,7 @@ - } - break; - default: -+ ; - } - } - -@@ -2073,9 +2078,11 @@ - */ - break; - default: -+ ; - } - break; - default: -+ ; - } - /* do nothing!*/ - } diff --git a/x11/multi-gnome-terminal/pkg-descr b/x11/multi-gnome-terminal/pkg-descr deleted file mode 100644 index 857fd1ae0..000000000 --- a/x11/multi-gnome-terminal/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Multi Gnome Terminal is an enhanced version of gnome-terminal which has -the following features added: - - - Many terminals in each window - - Switch between terminals using shortcuts - - Execution of user defined commands in new terminals - - Notification of terminal states (changed, changing, unchanged) using - different tabs colors - - Reorderable tabs - -All these extensions are inspired by screen and konsole (the kde2 terminal). - -WWW: http://multignometerm.sourceforge.net/ diff --git a/x11/multi-gnome-terminal/pkg-plist b/x11/multi-gnome-terminal/pkg-plist deleted file mode 100644 index 0340f8f07..000000000 --- a/x11/multi-gnome-terminal/pkg-plist +++ /dev/null @@ -1,187 +0,0 @@ -bin/mgt-helper -bin/multi-gnome-terminal -etc/CORBA/servers/multi-gnome-terminal.gnorba -sbin/mgt-pty-helper -share/gnome/apps/System/multi-gnome-terminal.desktop -share/gnome/help/multi-gnome-terminal/C/ChangeLog -share/gnome/help/multi-gnome-terminal/C/NEWS -share/gnome/help/multi-gnome-terminal/C/appendix.html -share/gnome/help/multi-gnome-terminal/C/appendixb.html -share/gnome/help/multi-gnome-terminal/C/appendixc.html -share/gnome/help/multi-gnome-terminal/C/appendixd.html -share/gnome/help/multi-gnome-terminal/C/authors.html -share/gnome/help/multi-gnome-terminal/C/classes.html -share/gnome/help/multi-gnome-terminal/C/description.html -share/gnome/help/multi-gnome-terminal/C/edit-commands.html -share/gnome/help/multi-gnome-terminal/C/environment.html -share/gnome/help/multi-gnome-terminal/C/figures/gt_stable_show_all.jpg -share/gnome/help/multi-gnome-terminal/C/figures/gt_stable_show_editcmd.jpg -share/gnome/help/multi-gnome-terminal/C/figures/gt_stable_show_keyb.jpg -share/gnome/help/multi-gnome-terminal/C/figures/gt_stable_show_menu.jpg -share/gnome/help/multi-gnome-terminal/C/figures/mgt150.jpg -share/gnome/help/multi-gnome-terminal/C/figures/mgt_editcmds160.jpg -share/gnome/help/multi-gnome-terminal/C/figures/mgt_nogui_152.jpg -share/gnome/help/multi-gnome-terminal/C/figures/mgt_pix_intro150.jpg -share/gnome/help/multi-gnome-terminal/C/figures/mgt_pix_keyb151.jpg -share/gnome/help/multi-gnome-terminal/C/figures/mgt_pix_mail150.jpg -share/gnome/help/multi-gnome-terminal/C/figures/mgt_pix_menu_only150.jpg -share/gnome/help/multi-gnome-terminal/C/figures/mgt_pix_menubar150.jpg -share/gnome/help/multi-gnome-terminal/C/figures/mgt_pix_show_all150.jpg -share/gnome/help/multi-gnome-terminal/C/figures/mgt_pix_view150.jpg -share/gnome/help/multi-gnome-terminal/C/figures/mgt_tpreferences-160.jpg -share/gnome/help/multi-gnome-terminal/C/helpers.html -share/gnome/help/multi-gnome-terminal/C/index.html -share/gnome/help/multi-gnome-terminal/C/keybindings.html -share/gnome/help/multi-gnome-terminal/C/license.html -share/gnome/help/multi-gnome-terminal/C/multi-gnome-terminal.sgml -share/gnome/help/multi-gnome-terminal/C/options.html -share/gnome/help/multi-gnome-terminal/C/pointerusage.html -share/gnome/help/multi-gnome-terminal/C/preferences.html -share/gnome/help/multi-gnome-terminal/C/stylesheet-images/caution.gif -share/gnome/help/multi-gnome-terminal/C/stylesheet-images/home.gif -share/gnome/help/multi-gnome-terminal/C/stylesheet-images/important.gif -share/gnome/help/multi-gnome-terminal/C/stylesheet-images/next.gif -share/gnome/help/multi-gnome-terminal/C/stylesheet-images/note.gif -share/gnome/help/multi-gnome-terminal/C/stylesheet-images/prev.gif -share/gnome/help/multi-gnome-terminal/C/stylesheet-images/tip.gif -share/gnome/help/multi-gnome-terminal/C/stylesheet-images/toc-blank.gif -share/gnome/help/multi-gnome-terminal/C/stylesheet-images/toc-minus.gif -share/gnome/help/multi-gnome-terminal/C/stylesheet-images/toc-plus.gif -share/gnome/help/multi-gnome-terminal/C/stylesheet-images/up.gif -share/gnome/help/multi-gnome-terminal/C/stylesheet-images/warning.gif -share/gnome/help/multi-gnome-terminal/C/topic.dat -share/gnome/help/multi-gnome-terminal/C/ui.html -share/gnome/help/multi-gnome-terminal/C/usage.html -share/gnome/help/multi-gnome-terminal/da/ChangeLog -share/gnome/help/multi-gnome-terminal/da/NEWS -share/gnome/help/multi-gnome-terminal/da/index.html -share/gnome/help/multi-gnome-terminal/da/multi-gnome-terminal.sgml -share/gnome/help/multi-gnome-terminal/da/stylesheet-images/caution.gif -share/gnome/help/multi-gnome-terminal/da/stylesheet-images/home.gif -share/gnome/help/multi-gnome-terminal/da/stylesheet-images/important.gif -share/gnome/help/multi-gnome-terminal/da/stylesheet-images/next.gif -share/gnome/help/multi-gnome-terminal/da/stylesheet-images/note.gif -share/gnome/help/multi-gnome-terminal/da/stylesheet-images/prev.gif -share/gnome/help/multi-gnome-terminal/da/stylesheet-images/tip.gif -share/gnome/help/multi-gnome-terminal/da/stylesheet-images/toc-blank.gif -share/gnome/help/multi-gnome-terminal/da/stylesheet-images/toc-minus.gif -share/gnome/help/multi-gnome-terminal/da/stylesheet-images/toc-plus.gif -share/gnome/help/multi-gnome-terminal/da/stylesheet-images/up.gif -share/gnome/help/multi-gnome-terminal/da/stylesheet-images/warning.gif -share/gnome/help/multi-gnome-terminal/da/topic.dat -share/gnome/help/multi-gnome-terminal/de/ChangeLog -share/gnome/help/multi-gnome-terminal/de/NEWS -share/gnome/help/multi-gnome-terminal/de/index.html -share/gnome/help/multi-gnome-terminal/de/multi-gnome-terminal.sgml -share/gnome/help/multi-gnome-terminal/de/stylesheet-images/caution.gif -share/gnome/help/multi-gnome-terminal/de/stylesheet-images/home.gif -share/gnome/help/multi-gnome-terminal/de/stylesheet-images/important.gif -share/gnome/help/multi-gnome-terminal/de/stylesheet-images/next.gif -share/gnome/help/multi-gnome-terminal/de/stylesheet-images/note.gif -share/gnome/help/multi-gnome-terminal/de/stylesheet-images/prev.gif -share/gnome/help/multi-gnome-terminal/de/stylesheet-images/tip.gif -share/gnome/help/multi-gnome-terminal/de/stylesheet-images/toc-blank.gif -share/gnome/help/multi-gnome-terminal/de/stylesheet-images/toc-minus.gif -share/gnome/help/multi-gnome-terminal/de/stylesheet-images/toc-plus.gif -share/gnome/help/multi-gnome-terminal/de/stylesheet-images/up.gif -share/gnome/help/multi-gnome-terminal/de/stylesheet-images/warning.gif -share/gnome/help/multi-gnome-terminal/de/topic.dat -share/gnome/help/multi-gnome-terminal/es/ChangeLog -share/gnome/help/multi-gnome-terminal/es/NEWS -share/gnome/help/multi-gnome-terminal/es/index.html -share/gnome/help/multi-gnome-terminal/es/multi-gnome-terminal.sgml -share/gnome/help/multi-gnome-terminal/es/stylesheet-images/caution.gif -share/gnome/help/multi-gnome-terminal/es/stylesheet-images/home.gif -share/gnome/help/multi-gnome-terminal/es/stylesheet-images/important.gif -share/gnome/help/multi-gnome-terminal/es/stylesheet-images/next.gif -share/gnome/help/multi-gnome-terminal/es/stylesheet-images/note.gif -share/gnome/help/multi-gnome-terminal/es/stylesheet-images/prev.gif -share/gnome/help/multi-gnome-terminal/es/stylesheet-images/tip.gif -share/gnome/help/multi-gnome-terminal/es/stylesheet-images/toc-blank.gif -share/gnome/help/multi-gnome-terminal/es/stylesheet-images/toc-minus.gif -share/gnome/help/multi-gnome-terminal/es/stylesheet-images/toc-plus.gif -share/gnome/help/multi-gnome-terminal/es/stylesheet-images/up.gif -share/gnome/help/multi-gnome-terminal/es/stylesheet-images/warning.gif -share/gnome/help/multi-gnome-terminal/es/topic.dat -share/gnome/help/multi-gnome-terminal/it/ChangeLog -share/gnome/help/multi-gnome-terminal/it/NEWS -share/gnome/help/multi-gnome-terminal/it/index.html -share/gnome/help/multi-gnome-terminal/it/multi-gnome-terminal.sgml -share/gnome/help/multi-gnome-terminal/it/stylesheet-images/caution.gif -share/gnome/help/multi-gnome-terminal/it/stylesheet-images/home.gif -share/gnome/help/multi-gnome-terminal/it/stylesheet-images/important.gif -share/gnome/help/multi-gnome-terminal/it/stylesheet-images/next.gif -share/gnome/help/multi-gnome-terminal/it/stylesheet-images/note.gif -share/gnome/help/multi-gnome-terminal/it/stylesheet-images/prev.gif -share/gnome/help/multi-gnome-terminal/it/stylesheet-images/tip.gif -share/gnome/help/multi-gnome-terminal/it/stylesheet-images/toc-blank.gif -share/gnome/help/multi-gnome-terminal/it/stylesheet-images/toc-minus.gif -share/gnome/help/multi-gnome-terminal/it/stylesheet-images/toc-plus.gif -share/gnome/help/multi-gnome-terminal/it/stylesheet-images/up.gif -share/gnome/help/multi-gnome-terminal/it/stylesheet-images/warning.gif -share/gnome/help/multi-gnome-terminal/it/topic.dat -share/gnome/help/multi-gnome-terminal/no/ChangeLog -share/gnome/help/multi-gnome-terminal/no/NEWS -share/gnome/help/multi-gnome-terminal/no/index.html -share/gnome/help/multi-gnome-terminal/no/multi-gnome-terminal.sgml -share/gnome/help/multi-gnome-terminal/no/stylesheet-images/caution.gif -share/gnome/help/multi-gnome-terminal/no/stylesheet-images/home.gif -share/gnome/help/multi-gnome-terminal/no/stylesheet-images/important.gif -share/gnome/help/multi-gnome-terminal/no/stylesheet-images/next.gif -share/gnome/help/multi-gnome-terminal/no/stylesheet-images/note.gif -share/gnome/help/multi-gnome-terminal/no/stylesheet-images/prev.gif -share/gnome/help/multi-gnome-terminal/no/stylesheet-images/tip.gif -share/gnome/help/multi-gnome-terminal/no/stylesheet-images/toc-blank.gif -share/gnome/help/multi-gnome-terminal/no/stylesheet-images/toc-minus.gif -share/gnome/help/multi-gnome-terminal/no/stylesheet-images/toc-plus.gif -share/gnome/help/multi-gnome-terminal/no/stylesheet-images/up.gif -share/gnome/help/multi-gnome-terminal/no/stylesheet-images/warning.gif -share/gnome/help/multi-gnome-terminal/no/topic.dat -share/idl/MultiTerminal.idl -share/mgt/glade/edit_cmd.glade -share/mgt/glade/multi-gnome-terminal.glade -share/mgt/glade/search.glade -share/mgt/glade/win_keys.glade -share/mgt/glade/win_prefs.glade -share/omf/mgt/multi-gnome-terminal-C.omf -share/pixmaps/mgt/MGT_bb_back.png -share/pixmaps/mgt/MGT_bb_forward.png -share/pixmaps/mgt/MGT_bb_newshell.png -share/pixmaps/mgt/MGT_bb_remove.png -share/pixmaps/mgt/MGT_bb_title.png -share/pixmaps/mgt/MGT_tb_back.png -share/pixmaps/mgt/MGT_tb_forward.png -share/pixmaps/mgt/MGT_tb_newmc.png -share/pixmaps/mgt/MGT_tb_newroot.png -share/pixmaps/mgt/MGT_tb_newshell.png -share/pixmaps/mgt/MGT_tb_remove.png -share/pixmaps/mgt/MGT_tb_title.png -share/pixmaps/mgt/arrow_left2.png -share/pixmaps/mgt/arrow_right2.png -share/pixmaps/mgt/gnome-notepad.png -share/pixmaps/mgt/multignometerm.png -share/pixmaps/mgt/panel-folder.png -share/pixmaps/multignometerm.png -@dirrm share/pixmaps/mgt -@dirrm share/omf/mgt -@dirrm share/mgt/glade -@dirrm share/mgt -@dirrm share/gnome/help/multi-gnome-terminal/no/stylesheet-images -@dirrm share/gnome/help/multi-gnome-terminal/no/figures -@dirrm share/gnome/help/multi-gnome-terminal/no -@dirrm share/gnome/help/multi-gnome-terminal/it/stylesheet-images -@dirrm share/gnome/help/multi-gnome-terminal/it/figures -@dirrm share/gnome/help/multi-gnome-terminal/it -@dirrm share/gnome/help/multi-gnome-terminal/es/stylesheet-images -@dirrm share/gnome/help/multi-gnome-terminal/es/figures -@dirrm share/gnome/help/multi-gnome-terminal/es -@dirrm share/gnome/help/multi-gnome-terminal/de/stylesheet-images -@dirrm share/gnome/help/multi-gnome-terminal/de/figures -@dirrm share/gnome/help/multi-gnome-terminal/de -@dirrm share/gnome/help/multi-gnome-terminal/da/stylesheet-images -@dirrm share/gnome/help/multi-gnome-terminal/da/figures -@dirrm share/gnome/help/multi-gnome-terminal/da -@dirrm share/gnome/help/multi-gnome-terminal/C/stylesheet-images -@dirrm share/gnome/help/multi-gnome-terminal/C/figures -@dirrm share/gnome/help/multi-gnome-terminal/C -@dirrm share/gnome/help/multi-gnome-terminal diff --git a/x11/ruby-gnome2/Makefile b/x11/ruby-gnome2/Makefile deleted file mode 100644 index 7dbc631fe..000000000 --- a/x11/ruby-gnome2/Makefile +++ /dev/null @@ -1,52 +0,0 @@ -# New ports collection makefile for: Ruby-GNOME2 -# Date created: 28 February 2001 -# Whom: Akinori MUSHA aka knu <knu@idaemons.org> -# -# $FreeBSD$ -# $MCom: ports/x11/ruby-gnome2/Makefile,v 1.5 2007/10/05 05:06:39 mezz Exp $ -# - -PORTNAME= gnome2 -PORTVERSION= ${RUBY_GNOME_PORTVERSION} -PORTREVISION= 1 -CATEGORIES= x11 ruby -MASTER_SITES= ${RUBY_GNOME_MASTER_SITES} -MASTER_SITE_SUBDIR= ${RUBY_GNOME_MASTER_SITE_SUBDIR} -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= ${RUBY_GNOME_DISTNAME} -DIST_SUBDIR= ruby - -MAINTAINER= mezz@FreeBSD.org -COMMENT= A set of Ruby bindings for GNOME2 - -RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/gnomecanvas2.so:${PORTSDIR}/graphics/ruby-gnomecanvas2 - -USE_RUBY= yes -USE_GNOME= libgnomeui -USE_RUBY_EXTCONF= yes - -.include "${.CURDIR}/Makefile.common" - -WRKSRC= ${RUBY_GNOME_WRKSRC}/gnome -INSTALL_TARGET= site-install - -DOCS_EN= AUTHORS COPYING.LIB ChangeLog README README.gnome2-all - -post-patch: general-patch - -post-build: - @${CP} ${RUBY_GNOME_WRKSRC}/AUTHORS ${WRKSRC}/AUTHORS - @${CP} ${RUBY_GNOME_WRKSRC}/README ${WRKSRC}/README.gnome2-all - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${RUBY_MODEXAMPLESDIR}/test-gnome - @${INSTALL_DATA} ${WRKSRC}/sample/*.rb ${RUBY_MODEXAMPLESDIR}/ - @${INSTALL_DATA} ${WRKSRC}/sample/test-gnome/* ${RUBY_MODEXAMPLESDIR}/test-gnome/ - @${MKDIR} ${RUBY_MODDOCDIR} -.for f in ${DOCS_EN} - @${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ -.endfor -.endif - -.include <bsd.port.mk> diff --git a/x11/ruby-gnome2/Makefile.common b/x11/ruby-gnome2/Makefile.common deleted file mode 100644 index 922d24482..000000000 --- a/x11/ruby-gnome2/Makefile.common +++ /dev/null @@ -1,30 +0,0 @@ -# $FreeBSD$ - -RUBY_GNOME_VERSION= 0.16.0.20071004 #YYYYMMDD -#RUBY_GNOME_SNAPSHOTDATE= 20061130 -.if defined(RUBY_GNOME_SNAPSHOTDATE) -RUBY_GNOME_PORTVERSION= ${RUBY_GNOME_VERSION}.${RUBY_GNOME_SNAPSHOTDATE} -.else -RUBY_GNOME_PORTVERSION= ${RUBY_GNOME_VERSION} -.endif -#RUBY_GNOME_MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -#RUBY_GNOME_MASTER_SITE_SUBDIR= ruby-gnome2 -RUBY_GNOME_MASTER_SITES= ${MASTER_SITE_LOCAL} \ - http://people.freebsd.org/~mezz/distfiles/ -RUBY_GNOME_MASTER_SITE_SUBDIR= mezz -RUBY_GNOME_DISTNAME= ruby-gnome2-all-${RUBY_GNOME_VERSION:S/r/rev/} - -CONFIGURE_ARGS+= --ruby=${RUBY} - -.if defined(RUBY_GNOME_SNAPSHOTDATE) -RUBY_GNOME_WRKSRC= ${WRKDIR}/ruby-gnome2-snapshot-${RUBY_GNOME_SNAPSHOTDATE} -.else -RUBY_GNOME_WRKSRC= ${WRKDIR}/${RUBY_GNOME_DISTNAME} -.endif - -RUBY_GNOME_PORTDIR= ${PORTSDIR}/x11/ruby-gnome2 -MD5_FILE= ${RUBY_GNOME_PORTDIR}/distinfo - -general-patch: - @${FIND} ${WRKDIR} -name mkmf-gnome2.rb | ${XARGS} ${REINPLACE_CMD} -e \ - 's|CFLAGS}|CFLAGS} -I${LOCALBASE}/lib/ruby/site_ruby/${RUBY_VER}/${RUBY_ARCH}|g' diff --git a/x11/ruby-gnome2/distinfo b/x11/ruby-gnome2/distinfo deleted file mode 100644 index e206847be..000000000 --- a/x11/ruby-gnome2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (ruby/ruby-gnome2-all-0.16.0.20071004.tar.gz) = ebc465e0a27c3f8f78bdb3d08dc50379 -SHA256 (ruby/ruby-gnome2-all-0.16.0.20071004.tar.gz) = 62d346af997a8bd071c13a1c9ff2232dea02569caf1656880b8abd843ba7d58e -SIZE (ruby/ruby-gnome2-all-0.16.0.20071004.tar.gz) = 1346048 diff --git a/x11/ruby-gnome2/pkg-descr b/x11/ruby-gnome2/pkg-descr deleted file mode 100644 index 8e08a5347..000000000 --- a/x11/ruby-gnome2/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -Ruby/GNOME2 is a set of Ruby bindings for GNOME2 which consists of -glib2, gtk2, gdk_pixbuf2, gnome2, gnomecanvas2, libglade2, libart2 and -gconf2 modules. - -WWW: http://ruby-gnome2.sourceforge.jp/ diff --git a/x11/ruby-gnome2/pkg-plist b/x11/ruby-gnome2/pkg-plist deleted file mode 100644 index 7212878e5..000000000 --- a/x11/ruby-gnome2/pkg-plist +++ /dev/null @@ -1,37 +0,0 @@ -%%RUBY_SITELIBDIR%%/gnome2.rb -%%RUBY_SITEARCHLIBDIR%%/gnome2.so -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/AUTHORS -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/COPYING.LIB -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ChangeLog -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README.gnome2-all -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/gnome-app-helper.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/gnome-config.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/gnome-druid.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/gnome-program.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/gnome-sound.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/gnome-trigger.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/README -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/about.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/app-helper.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/bomb.xpm -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/color-picker.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/dateedit.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/entry.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/file-entry.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/font-picker.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/href.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/icon-entry.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/icon-list.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/pixmap-entry.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/test-gnome-app.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test-gnome/test-gnome.rb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/test-gnome -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%% -%%PORTDOCS%%@dirrmtry %%RUBY_EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%% -%%PORTDOCS%%@dirrmtry %%RUBY_DOCDIR%% -@dirrmtry %%RUBY_SITEARCHLIBDIR%% -@dirrmtry %%RUBY_SITELIBDIR%% -@dirrmtry lib/ruby/site_ruby -@dirrmtry lib/ruby diff --git a/x11/trayer/Makefile b/x11/trayer/Makefile deleted file mode 100644 index c510461a7..000000000 --- a/x11/trayer/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# New ports collection makefile for: trayer -# Date created: Aug 21, 2006 -# Whom: Alexey Mikhailov <karma@ez.pereslavl.ru> -# -# $FreeBSD$ -# - -PORTNAME= trayer -PORTVERSION= 1.0 -PORTREVISION= 1 -CATEGORIES= x11 -MASTER_SITES= ${MASTER_SITE_DEBIAN} -MASTER_SITE_SUBDIR= pool/main/t/trayer -DISTNAME= ${PORTNAME}_${PORTVERSION}.orig - -MAINTAINER= ports@FreeBSD.org -COMMENT= Lightweight GTK2-based systray for UNIX desktop - -USE_GNOME= gtk20 glib20 pango atk -USE_ICONV= yes -USE_X_PREFIX= yes - -USE_GMAKE= yes -MAKE_ARGS= "PREFIX=${X11BASE}" -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - -.if !defined(NOPORTDOCS) -PORTDOCS= README CREDITS CHANGELOG -.endif - -PLIST_FILES= bin/trayer - -post-patch: - @${REINPLACE_CMD} -e 's|-D.*_DISABLE_DEPRECATED||g' \ - ${WRKSRC}/Makefile.common - -post-install: - ${MKDIR} ${DOCSDIR} -.if !defined(NOPORTDOCS) -.for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/x11/trayer/distinfo b/x11/trayer/distinfo deleted file mode 100644 index d910badd2..000000000 --- a/x11/trayer/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -SIZE (trayer_1.0.orig.tar.gz) = 29713 -MD5 (trayer_1.0.orig.tar.gz) = e1b0b6464f991f2c296561e377585867 -SHA256 (trayer_1.0.orig.tar.gz) = 64f3b7040a7a563ca4b6924efd950f10c928af7f3535b6f4a00f8bbe0b19484d diff --git a/x11/trayer/pkg-descr b/x11/trayer/pkg-descr deleted file mode 100644 index efcaa7660..000000000 --- a/x11/trayer/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -trayer is small program designed to provide systray functionality -present in GNOME/KDE desktop enviroments for window managers -which doesn't support that function. It's similar to other -applications such as 'peksystray' and 'docker'. - -trayer code was extracted from fbpanel application, you can find more -about it on it's homepage - -WWW: http://fbpanel.sourceforge.net/ diff --git a/x11/workrave/Makefile b/x11/workrave/Makefile deleted file mode 100644 index 205ecb72b..000000000 --- a/x11/workrave/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# New ports collection makefile for: workrave -# Date created: 15 Jul 2003 -# Whom: Koop Mast <einekoai@chello.nl> -# -# $FreeBSD$ -# - -PORTNAME= workrave -PORTVERSION= 1.8.5 -PORTREVISION= 1 -CATEGORIES= x11 gnome -MASTER_SITES= SF - -MAINTAINER= garga@FreeBSD.org -COMMENT= A Gnome RSI prevention tool - -OPTIONS= GNOME "Build with Gnome support" on \ - NETWORK "Build with network support" on - -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack gconf2 intltool -USE_GCC= 3.4+ -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --enable-gconf - -.include <bsd.port.pre.mk> - -.if defined(WITH_GNOME) -LIB_DEPENDS+= gnomeuimm-2.6.1:${PORTSDIR}/x11-toolkits/libgnomeuimm26 -USE_GNOME+= gnomepanel -PLIST_SUB+= GNOME="" -.else -LIB_DEPENDS+= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 -CONFIGURE_ARGS+=--disable-gnome -PLIST_SUB+= GNOME="@comment " -.endif - -.if defined(WITH_NETWORK) -LIB_DEPENDS+= gnet-2.0.0:${PORTSDIR}/net/gnet2 -.else -CONFIGURE_ARGS+=--disable-distribution -.endif - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.include <bsd.port.post.mk> diff --git a/x11/workrave/distinfo b/x11/workrave/distinfo deleted file mode 100644 index cc32715a1..000000000 --- a/x11/workrave/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (workrave-1.8.5.tar.gz) = 3df48ab5600256fadc11a976f15bcc7a -SHA256 (workrave-1.8.5.tar.gz) = 4a2f8f16f015fcec4446953421c8e12cdb41391a6da0e63d04d17b30534a0c56 -SIZE (workrave-1.8.5.tar.gz) = 1940651 diff --git a/x11/workrave/files/patch-frontend__common__src__System.cc b/x11/workrave/files/patch-frontend__common__src__System.cc deleted file mode 100644 index 08aaad5de..000000000 --- a/x11/workrave/files/patch-frontend__common__src__System.cc +++ /dev/null @@ -1,10 +0,0 @@ ---- frontend/common/src/System.cc.orig 2007-09-28 13:18:31.000000000 -0300 -+++ frontend/common/src/System.cc 2007-09-28 13:18:48.000000000 -0300 -@@ -28,6 +28,7 @@ - #include <stdio.h> - #include <string.h> - #include <strings.h> -+#include <sys/wait.h> - - #include "System.hh" - #include "debug.hh" diff --git a/x11/workrave/pkg-descr b/x11/workrave/pkg-descr deleted file mode 100644 index 938a81799..000000000 --- a/x11/workrave/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Workrave is a program that assists in the recovery and prevention of -Repetitive Strain Injury (RSI). The program frequently alerts you to -take micro-pauses, rest breaks and restricts you to your daily limit. -These can be customized and it stops the counter when you stop. - -The program can be run distributed on one or more PCs. All connected -PCs share the same timing information. When you switch computers, you -will still be asked to pause on time. - -WWW: http://www.workrave.org/ diff --git a/x11/workrave/pkg-plist b/x11/workrave/pkg-plist deleted file mode 100644 index c4f656043..000000000 --- a/x11/workrave/pkg-plist +++ /dev/null @@ -1,90 +0,0 @@ -bin/workrave -etc/sound/events/workrave.soundlist -%%GNOME%%libdata/bonobo/servers/Workrave-Applet.server -%%GNOME%%libdata/bonobo/servers/Workrave-Control.server -%%GNOME%%libexec/workrave-applet -%%GNOME%%share/gnome-2.0/ui/GNOME_WorkraveApplet.xml -share/pixmaps/workrave/workrave-icon-huge.png -share/sounds/workrave/break-ignored.wav -share/sounds/workrave/break-prelude.wav -share/sounds/workrave/daily-limit.wav -share/sounds/workrave/exercise-ended.wav -share/sounds/workrave/exercises-ended.wav -share/sounds/workrave/micro-break-ended.wav -share/sounds/workrave/micro-break-started.wav -share/sounds/workrave/rest-break-ended.wav -share/sounds/workrave/rest-break-started.wav -share/workrave/exercises/backward-shoulder-stretch.png -share/workrave/exercises/chair-pushup-1.png -share/workrave/exercises/chair-pushup-2.png -share/workrave/exercises/depth-focus-1.png -share/workrave/exercises/depth-focus-2.png -share/workrave/exercises/exercises.xml -share/workrave/exercises/eye-darkness.png -share/workrave/exercises/finger-stretch-1.png -share/workrave/exercises/finger-stretch-2.png -share/workrave/exercises/fist-roll-1.png -share/workrave/exercises/fist-roll-2.png -share/workrave/exercises/monitor-border-1.png -share/workrave/exercises/monitor-border-2.png -share/workrave/exercises/monitor-border-3.png -share/workrave/exercises/monitor-border-4.png -share/workrave/exercises/neck-tilt-stretch-1.png -share/workrave/exercises/neck-tilt-stretch-2.png -share/workrave/exercises/rotate-arm.png -share/workrave/exercises/shoulder-arm-stretch.png -share/workrave/exercises/turn-head-1.png -share/workrave/exercises/turn-head-2.png -share/workrave/exercises/wrist-lower-arm-desk-stretch-1.png -share/workrave/images/daily-limit.png -share/workrave/images/display.png -share/workrave/images/lock.png -share/workrave/images/micro-break.png -share/workrave/images/monitoring.png -share/workrave/images/network.png -share/workrave/images/prelude-hint-sad.png -share/workrave/images/prelude-hint.png -share/workrave/images/rest-break.png -share/workrave/images/shutdown.png -share/workrave/images/time.png -share/workrave/images/timer-daily.png -share/workrave/images/timer-micro-break.png -share/workrave/images/timer-rest-break.png -share/workrave/images/workrave-icon-huge.png -share/workrave/images/workrave-icon-large.png -share/workrave/images/workrave-icon-medium.png -share/workrave/images/workrave-icon-small.png -share/workrave/images/workrave-quiet-icon-medium.png -share/workrave/images/workrave-suspended-icon-medium.png -share/workrave/images/workrave.png -%%NLS%%share/locale/bg/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/ca/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/cs/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/da/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/de/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/el/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/eo/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/es/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/eu/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/fr/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/he/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/hu/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/it/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/ja/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/lt/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/nl/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/no/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/pl/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/ru/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/sk/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/sl/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/sv/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/tr/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/workrave.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/workrave.mo -@dirrm share/workrave/images -@dirrm share/workrave/exercises -@dirrm share/workrave -@dirrm share/sounds/workrave -@dirrm share/pixmaps/workrave diff --git a/x11/xscreensaver-gnome/Makefile b/x11/xscreensaver-gnome/Makefile deleted file mode 100644 index 2d63a2ae6..000000000 --- a/x11/xscreensaver-gnome/Makefile +++ /dev/null @@ -1,105 +0,0 @@ -# New ports collection makefile for: xscreensaver-gnome -# Date created: 13th February 2002 -# Whom: Ade Lovett <ade@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/xscreensaver-gnome/Makefile,v 1.4 2007/08/07 03:52:33 mezz Exp $ -# - -PORTNAME?= xscreensaver-gnome -PORTVERSION= 4.24 -PORTREVISION?= 6 -CATEGORIES= x11 gnome -MASTER_SITES= http://www.jwz.org/xscreensaver/ -DISTNAME= xscreensaver-${PORTVERSION} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Save your screen while you entertain your cat (for GNOME users) - -LIB_DEPENDS= gle.4:${PORTSDIR}/graphics/gle - -CONFLICTS?= xscreensaver-[0-9]* xscreensaver-gnome-hacks-[0-9]* - -USE_XLIB= yes -USE_XPM= yes -USE_GL= yes -USE_GMAKE= yes -USE_PERL5_RUN= yes -USE_GNOME= gnomehier libglade2 gnomehack -USE_GETTEXT= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-gl --with-gle --with-xpm --with-xml \ - --with-hackdir=${PREFIX}/bin/xscreensaver-hacks \ - --with-configdir=${PREFIX}/share/xscreensaver/config \ - --with-jpeg=${LOCALBASE} --without-motif \ - --without-kerberos -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -OPTIONS?= PAM "Pluggable Authentication Module support" off \ - ALL_FORTUNES "Enable support for all fortunes" off - -MAN1?= anemone.1 apollonian.1 atlantis.1 attraction.1 blaster.1 \ - blitspin.1 bouboule.1 boxed.1 braid.1 bsod.1 bubble3d.1 bubbles.1 \ - bumps.1 cage.1 ccurve.1 circuit.1 compass.1 coral.1 critical.1 \ - crystal.1 cubenetic.1 cynosure.1 dangerball.1 decayscreen.1 deco.1 \ - deluxe.1 demon.1 discrete.1 distort.1 drift.1 engine.1 epicycle.1 \ - euler2d.1 extrusion.1 fadeplot.1 flag.1 flame.1 flipscreen3d.1 flow.1 \ - fluidballs.1 forest.1 galaxy.1 gears.1 gflux.1 glforestfire.1 \ - glplanet.1 glsnake.1 gltext.1 goop.1 grav.1 greynetic.1 halo.1 helix.1 \ - hopalong.1 hyperball.1 hypercube.1 ifs.1 imsmap.1 interference.1 \ - jigsaw.1 juggle.1 julia.1 kaleidescope.1 kumppa.1 lament.1 laser.1 \ - lavalite.1 lightning.1 lisa.1 lissie.1 lmorph.1 loop.1 maze.1 menger.1 \ - moebius.1 moire.1 moire2.1 molecule.1 morph3d.1 mountain.1 munch.1 \ - nerverot.1 noseguy.1 pedal.1 penetrate.1 penrose.1 petri.1 phosphor.1 \ - pipes.1 polyominoes.1 pulsar.1 pyro.1 qix.1 queens.1 rd-bomb.1 \ - ripples.1 rocks.1 rorschach.1 rotor.1 rotzoomer.1 rubik.1 sballs.1 \ - shadebobs.1 sierpinski.1 sierpinski3d.1 slidescreen.1 slip.1 sonar.1 \ - speedmine.1 sphere.1 spheremonics.1 spiral.1 spotlight.1 sproingies.1 \ - squiral.1 stairs.1 starfish.1 starwars.1 stonerview.1 strange.1 \ - superquadrics.1 swirl.1 t3d.1 thornbird.1 triangle.1 truchet.1 twang.1 \ - vermiculate.1 vidwhacker.1 vines.1 wander.1 webcollage.1 \ - whirlwindwarp.1 whirlygig.1 worm.1 xflame.1 xjack.1 xlyap.1 \ - xmatrix.1 xrayswarm.1 xspirograph.1 xsublim.1 xteevee.1 zoom.1 \ - endgame.1 glblur.1 halftone.1 barcode.1 eruption.1 flurry.1 \ - metaballs.1 atunnel.1 piecewise.1 bouncingcow.1 flyingtoasters.1 \ - glslideshow.1 jigglypuff.1 klein.1 blocktube.1 cloudlife.1 \ - cubestorm.1 glknots.1 glmatrix.1 hypertorus.1 antspotlight.1 \ - flipflop.1 polytopes.1 ljlatest.1 apple2.1 blinkbox.1 \ - fontglide.1 gleidescope.1 mirrorblob.1 pong.1 xanalogtv.1 \ - mismunch.1 noof.1 pacman.1 wormhole.1 antinspect.1 fuzzyflakes.1\ - polyhedra.1 anemotaxis.1 providence.1 memscroller.1 fireworkx.1 \ - intermomentary.1 pinion.1 substrate.1 boing.1 boxfit.1 carousel.1 \ - antmaze.1 crackberg.1 interaggregate.1 tangram.1 celtic.1 \ - cube21.1 glhanoi.1 juggler3d.1 timetunnel.1 \ - fiberlamp.1 fliptext.1 xscreensaver-text.1 \ - xscreensaver-command.1 xscreensaver-demo.1 \ - xscreensaver-getimage-file.1 xscreensaver-getimage-video.1 \ - xscreensaver-getimage.1 xscreensaver-gl-helper.1 xscreensaver.1 - -.include <bsd.port.pre.mk> - -.if defined(WITH_ALL_FORTUNES) -CONFIGURE_ARGS+= --with-fortune="/usr/games/fortune -sa" -.endif - -.if !defined(WITH_PAM) -CONFIGURE_ARGS+= --without-pam -.endif - -.if ${ARCH} == "amd64" -CFLAGS+= -O0 -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|malloc[.]h|stdlib.h|g' \ - ${WRKSRC}/hacks/glx/extrusion.c - @${REINPLACE_CMD} -e 's|
||' \ - ${WRKSRC}/hacks/glx/klein.c - @${REINPLACE_CMD} -E -e 's|^[[:space:]]*GL_LIBS="${PTHREAD_LIBS}"|#|g ; \ - s|/usr/X11R6|${LOCALBASE}|g' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|<util.h>|<libutil.h>|' \ - ${WRKSRC}/hacks/phosphor.c ${WRKSRC}/hacks/apple2-main.c - -.include <bsd.port.post.mk> diff --git a/x11/xscreensaver-gnome/distinfo b/x11/xscreensaver-gnome/distinfo deleted file mode 100644 index 8b6b616cd..000000000 --- a/x11/xscreensaver-gnome/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (xscreensaver-4.24.tar.gz) = 174b6a7cebd892c1a6c2d56bf5ac5af6 -SHA256 (xscreensaver-4.24.tar.gz) = 73140a9f209921543a6562442b5d68801883b3fff3b6be751bec934f4b456474 -SIZE (xscreensaver-4.24.tar.gz) = 4936993 diff --git a/x11/xscreensaver-gnome/files/extra-patch-nodriver b/x11/xscreensaver-gnome/files/extra-patch-nodriver deleted file mode 100644 index d341fc445..000000000 --- a/x11/xscreensaver-gnome/files/extra-patch-nodriver +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Mon Sep 12 20:24:57 2005 -+++ Makefile.in Mon Sep 12 20:25:15 2005 -@@ -6,7 +6,7 @@ - VPATH = @srcdir@ - - SHELL = /bin/sh --SUBDIRS = utils driver hacks hacks/glx po -+SUBDIRS = utils hacks hacks/glx - TARFILES = README README.VMS README.debugging INSTALL \ - configure configure.in Makefile.in config.h.in \ - config.h-vms install-sh setup.com config.guess aclocal.m4 \ diff --git a/x11/xscreensaver-gnome/files/patch-ab b/x11/xscreensaver-gnome/files/patch-ab deleted file mode 100644 index dce689cd2..000000000 --- a/x11/xscreensaver-gnome/files/patch-ab +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Wed Mar 23 02:35:18 2005 -+++ configure Wed Mar 23 02:36:54 2005 -@@ -2666,7 +2666,7 @@ - if test -n "$GCC"; then - echo "$as_me:$LINENO: result: Turning on gcc compiler warnings." >&5 - echo "${ECHO_T}Turning on gcc compiler warnings." >&6 -- CC="$CC -pedantic -Wall -Wstrict-prototypes -Wnested-externs" -+ CC="$CC -Wall -Wstrict-prototypes -Wnested-externs" - OBJCC="$OBJCC -Wall" - # supposedly gcc 3.4 will have "-Wdeclaration-after-statement" - # and then perhaps we can do without -pedantic? diff --git a/x11/xscreensaver-gnome/files/patch-driver_Makefile.in b/x11/xscreensaver-gnome/files/patch-driver_Makefile.in deleted file mode 100644 index ed9995479..000000000 --- a/x11/xscreensaver-gnome/files/patch-driver_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- driver/Makefile.in.orig Sun Apr 3 21:14:26 2005 -+++ driver/Makefile.in Sun Apr 3 21:14:39 2005 -@@ -253,7 +253,7 @@ - tests: $(TEST_EXES) - - install: install-program install-ad install-scripts \ -- install-gnome install-man install-xml install-pam -+ install-gnome install-man install-xml - uninstall: uninstall-program uninstall-ad \ - uninstall-gnome uninstall-man uninstall-xml - diff --git a/x11/xscreensaver-gnome/files/patch-driver_passwd-pam.c b/x11/xscreensaver-gnome/files/patch-driver_passwd-pam.c deleted file mode 100644 index 0bd646582..000000000 --- a/x11/xscreensaver-gnome/files/patch-driver_passwd-pam.c +++ /dev/null @@ -1,30 +0,0 @@ ---- driver/passwd-pam.c.orig Sat Jul 12 04:44:38 2003 -+++ driver/passwd-pam.c Thu Feb 5 18:09:45 2004 -@@ -183,6 +183,7 @@ - char *user = 0; - sigset_t set; - struct timespec timeout; -+ struct timeval tv; - - struct passwd *p = getpwuid (getuid ()); - if (!p) return False; -@@ -249,8 +250,9 @@ - timeout.tv_sec = 0; - timeout.tv_nsec = 1; - set = block_sigchld(); -+ TIMESPEC_TO_TIMEVAL (&tv, &timeout); - status = pam_authenticate (pamh, 0); -- sigtimedwait (&set, NULL, &timeout); -+ select (0, NULL, NULL, NULL, &tv); - unblock_sigchld(); - - if (verbose_p) -@@ -289,7 +291,7 @@ - - set = block_sigchld(); - status = pam_authenticate (pamh, 0); -- sigtimedwait(&set, NULL, &timeout); -+ select (0, NULL, NULL, NULL, &tv); - unblock_sigchld(); - - if (verbose_p) diff --git a/x11/xscreensaver-gnome/files/patch-driver_xscreensaver-getimage-file b/x11/xscreensaver-gnome/files/patch-driver_xscreensaver-getimage-file deleted file mode 100644 index 8e29544a2..000000000 --- a/x11/xscreensaver-gnome/files/patch-driver_xscreensaver-getimage-file +++ /dev/null @@ -1,11 +0,0 @@ ---- driver/xscreensaver-getimage-file.orig Tue May 4 20:40:38 2004 -+++ driver/xscreensaver-getimage-file Wed May 19 21:39:59 2004 -@@ -133,7 +133,7 @@ - push @dirs, $file; - $dir_count++; - print STDERR "$progname: found dir $file\n" if ($verbose > 2); -- } elsif (S_ISREG($mode) || S_ISLNK($mode)) { -+ } elsif (S_ISREG($mode) || (-l "$file")) { - - if ($file =~ m/[~%\#]$/ || # backup file, or - ! ($file =~ m/$good_file_re/io)) { # no image extension diff --git a/x11/xscreensaver-gnome/files/patch-driver_xscreensaver.h b/x11/xscreensaver-gnome/files/patch-driver_xscreensaver.h deleted file mode 100644 index 23eb032de..000000000 --- a/x11/xscreensaver-gnome/files/patch-driver_xscreensaver.h +++ /dev/null @@ -1,10 +0,0 @@ ---- driver/xscreensaver.h.orig Tue Jul 22 00:14:02 2003 -+++ driver/xscreensaver.h Tue Jul 22 00:14:10 2003 -@@ -19,6 +19,7 @@ - - #include <string.h> - #include <stdio.h> -+#include <signal.h> - - #include "prefs.h" - diff --git a/x11/xscreensaver-gnome/files/patch-hacks_apple2-main.c b/x11/xscreensaver-gnome/files/patch-hacks_apple2-main.c deleted file mode 100644 index 8af7fa072..000000000 --- a/x11/xscreensaver-gnome/files/patch-hacks_apple2-main.c +++ /dev/null @@ -1,13 +0,0 @@ ---- hacks/apple2-main.c.orig Wed May 19 21:45:49 2004 -+++ hacks/apple2-main.c Wed May 19 21:46:13 2004 -@@ -30,6 +30,10 @@ - # ifdef HAVE_UTIL_H - # include <util.h> - # endif -+#include <sys/types.h> -+#include <sys/ioctl.h> -+#include <termios.h> -+#include <libutil.h> - #endif /* HAVE_FORKPTY */ - - #undef countof diff --git a/x11/xscreensaver-gnome/files/patch-hacks_phosphor.c b/x11/xscreensaver-gnome/files/patch-hacks_phosphor.c deleted file mode 100644 index e01033342..000000000 --- a/x11/xscreensaver-gnome/files/patch-hacks_phosphor.c +++ /dev/null @@ -1,13 +0,0 @@ ---- hacks/phosphor.c.orig Wed May 19 21:43:52 2004 -+++ hacks/phosphor.c Wed May 19 21:44:54 2004 -@@ -33,6 +33,10 @@ - # ifdef HAVE_UTIL_H - # include <util.h> - # endif -+#include <sys/types.h> -+#include <sys/ioctl.h> -+#include <termios.h> -+#include <libutil.h> - #endif /* HAVE_FORKPTY */ - - extern XtAppContext app; diff --git a/x11/xscreensaver-gnome/files/patch-hacks_webcollage b/x11/xscreensaver-gnome/files/patch-hacks_webcollage deleted file mode 100644 index 9cb8dbc05..000000000 --- a/x11/xscreensaver-gnome/files/patch-hacks_webcollage +++ /dev/null @@ -1,23 +0,0 @@ ---- hacks/webcollage.orig Sun Apr 20 02:07:13 2003 -+++ hacks/webcollage Sun Apr 20 02:07:52 2003 -@@ -31,6 +31,9 @@ - # - # Driftnet is the Unix implementation of the MacOS "EtherPEG" program. - -+BEGIN { -+ eval "use bytes"; -+} - - require 5; - use strict; -@@ -46,10 +49,6 @@ - require POSIX; - use Fcntl ':flock'; # import LOCK_* constants - use POSIX qw(strftime); -- --use bytes; # Larry can take Unicode and shove it up his ass sideways. -- # Perl 5.8.0 causes us to start getting incomprehensible -- # errors about UTF-8 all over the place without this. - - - my $progname = $0; $progname =~ s@.*/@@g; diff --git a/x11/xscreensaver-gnome/pkg-descr b/x11/xscreensaver-gnome/pkg-descr deleted file mode 100644 index 7238b1d59..000000000 --- a/x11/xscreensaver-gnome/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Xscreensaver will run several programs to continuously update the -screen instead of going blank. You can specify the programs and their -arguments using resources. You can also add dpms (power saver) options. - -Xscreensaver will make use of any installed OpenGL libraries, such as -Mesa (also in the ports collection). - -The client-server model employed by xscreensaver make it a superior choice -to xlock, since no seperate auto-locking program is needed. It's also -extremely easy to add new programs like xearth, or any other program that -can fill the root window as additional screensavers. - -WWW: http://www.jwz.org/xscreensaver/ diff --git a/x11/xscreensaver-gnome/pkg-messsage b/x11/xscreensaver-gnome/pkg-messsage deleted file mode 100644 index 08720aa38..000000000 --- a/x11/xscreensaver-gnome/pkg-messsage +++ /dev/null @@ -1,14 +0,0 @@ -================================================================================ -If you compiled WITH_PAM support on 4.X, you need to edit /etc/pam.conf and -add the following lines: - -xscreensaver auth required pam_nologin.so no_warn -xscreensaver auth required pam_unix.so no_warn try_pass_first - -If you compiled WITH_PAM support on 5.X or later, you need to create an -/etc/pam.d/xscreensaver file with the following contents: - -auth required pam_nologin.so no_warn -auth required pam_unix.so no_warn try_pass_first -account required pam_nologin.so -================================================================================ diff --git a/x11/xscreensaver-gnome/pkg-plist b/x11/xscreensaver-gnome/pkg-plist deleted file mode 100644 index 0e309bef1..000000000 --- a/x11/xscreensaver-gnome/pkg-plist +++ /dev/null @@ -1,457 +0,0 @@ -bin/xscreensaver -bin/xscreensaver-command -bin/xscreensaver-demo -bin/xscreensaver-getimage -bin/xscreensaver-getimage-file -bin/xscreensaver-getimage-video -bin/xscreensaver-gl-helper -bin/xscreensaver-hacks/anemone -bin/xscreensaver-hacks/anemotaxis -bin/xscreensaver-hacks/antinspect -bin/xscreensaver-hacks/antmaze -bin/xscreensaver-hacks/antspotlight -bin/xscreensaver-hacks/apollonian -bin/xscreensaver-hacks/apple2 -bin/xscreensaver-hacks/atlantis -bin/xscreensaver-hacks/attraction -bin/xscreensaver-hacks/atunnel -bin/xscreensaver-hacks/barcode -bin/xscreensaver-hacks/blaster -bin/xscreensaver-hacks/blinkbox -bin/xscreensaver-hacks/blitspin -bin/xscreensaver-hacks/blocktube -bin/xscreensaver-hacks/boing -bin/xscreensaver-hacks/bouboule -bin/xscreensaver-hacks/bouncingcow -bin/xscreensaver-hacks/boxed -bin/xscreensaver-hacks/boxfit -bin/xscreensaver-hacks/braid -bin/xscreensaver-hacks/bsod -bin/xscreensaver-hacks/bubble3d -bin/xscreensaver-hacks/bubbles -bin/xscreensaver-hacks/bumps -bin/xscreensaver-hacks/cage -bin/xscreensaver-hacks/carousel -bin/xscreensaver-hacks/ccurve -bin/xscreensaver-hacks/celtic -bin/xscreensaver-hacks/circuit -bin/xscreensaver-hacks/cloudlife -bin/xscreensaver-hacks/compass -bin/xscreensaver-hacks/coral -bin/xscreensaver-hacks/crackberg -bin/xscreensaver-hacks/critical -bin/xscreensaver-hacks/crystal -bin/xscreensaver-hacks/cube21 -bin/xscreensaver-hacks/cubenetic -bin/xscreensaver-hacks/cubestorm -bin/xscreensaver-hacks/cynosure -bin/xscreensaver-hacks/dangerball -bin/xscreensaver-hacks/decayscreen -bin/xscreensaver-hacks/deco -bin/xscreensaver-hacks/deluxe -bin/xscreensaver-hacks/demon -bin/xscreensaver-hacks/discrete -bin/xscreensaver-hacks/distort -bin/xscreensaver-hacks/drift -bin/xscreensaver-hacks/endgame -bin/xscreensaver-hacks/engine -bin/xscreensaver-hacks/epicycle -bin/xscreensaver-hacks/eruption -bin/xscreensaver-hacks/euler2d -bin/xscreensaver-hacks/extrusion -bin/xscreensaver-hacks/fadeplot -bin/xscreensaver-hacks/fiberlamp -bin/xscreensaver-hacks/fireworkx -bin/xscreensaver-hacks/flag -bin/xscreensaver-hacks/flame -bin/xscreensaver-hacks/flipflop -bin/xscreensaver-hacks/flipscreen3d -bin/xscreensaver-hacks/fliptext -bin/xscreensaver-hacks/flow -bin/xscreensaver-hacks/fluidballs -bin/xscreensaver-hacks/flurry -bin/xscreensaver-hacks/flyingtoasters -bin/xscreensaver-hacks/fontglide -bin/xscreensaver-hacks/forest -bin/xscreensaver-hacks/fuzzyflakes -bin/xscreensaver-hacks/galaxy -bin/xscreensaver-hacks/gears -bin/xscreensaver-hacks/gflux -bin/xscreensaver-hacks/glblur -bin/xscreensaver-hacks/gleidescope -bin/xscreensaver-hacks/glforestfire -bin/xscreensaver-hacks/glhanoi -bin/xscreensaver-hacks/glknots -bin/xscreensaver-hacks/glmatrix -bin/xscreensaver-hacks/glplanet -bin/xscreensaver-hacks/glslideshow -bin/xscreensaver-hacks/glsnake -bin/xscreensaver-hacks/gltext -bin/xscreensaver-hacks/goop -bin/xscreensaver-hacks/grav -bin/xscreensaver-hacks/greynetic -bin/xscreensaver-hacks/halftone -bin/xscreensaver-hacks/halo -bin/xscreensaver-hacks/helix -bin/xscreensaver-hacks/hopalong -bin/xscreensaver-hacks/hyperball -bin/xscreensaver-hacks/hypercube -bin/xscreensaver-hacks/hypertorus -bin/xscreensaver-hacks/ifs -bin/xscreensaver-hacks/imsmap -bin/xscreensaver-hacks/interaggregate -bin/xscreensaver-hacks/interference -bin/xscreensaver-hacks/intermomentary -bin/xscreensaver-hacks/jigglypuff -bin/xscreensaver-hacks/jigsaw -bin/xscreensaver-hacks/juggle -bin/xscreensaver-hacks/juggler3d -bin/xscreensaver-hacks/julia -bin/xscreensaver-hacks/kaleidescope -bin/xscreensaver-hacks/klein -bin/xscreensaver-hacks/kumppa -bin/xscreensaver-hacks/lament -bin/xscreensaver-hacks/laser -bin/xscreensaver-hacks/lavalite -bin/xscreensaver-hacks/lightning -bin/xscreensaver-hacks/lisa -bin/xscreensaver-hacks/lissie -bin/xscreensaver-hacks/ljlatest -bin/xscreensaver-hacks/lmorph -bin/xscreensaver-hacks/loop -bin/xscreensaver-hacks/maze -bin/xscreensaver-hacks/memscroller -bin/xscreensaver-hacks/menger -bin/xscreensaver-hacks/metaballs -bin/xscreensaver-hacks/mirrorblob -bin/xscreensaver-hacks/mismunch -bin/xscreensaver-hacks/moebius -bin/xscreensaver-hacks/moire -bin/xscreensaver-hacks/moire2 -bin/xscreensaver-hacks/molecule -bin/xscreensaver-hacks/morph3d -bin/xscreensaver-hacks/mountain -bin/xscreensaver-hacks/munch -bin/xscreensaver-hacks/nerverot -bin/xscreensaver-hacks/noof -bin/xscreensaver-hacks/noseguy -bin/xscreensaver-hacks/pacman -bin/xscreensaver-hacks/pedal -bin/xscreensaver-hacks/penetrate -bin/xscreensaver-hacks/penrose -bin/xscreensaver-hacks/petri -bin/xscreensaver-hacks/phosphor -bin/xscreensaver-hacks/piecewise -bin/xscreensaver-hacks/pinion -bin/xscreensaver-hacks/pipes -bin/xscreensaver-hacks/polyhedra -bin/xscreensaver-hacks/polyominoes -bin/xscreensaver-hacks/polytopes -bin/xscreensaver-hacks/pong -bin/xscreensaver-hacks/popsquares -bin/xscreensaver-hacks/providence -bin/xscreensaver-hacks/pulsar -bin/xscreensaver-hacks/pyro -bin/xscreensaver-hacks/qix -bin/xscreensaver-hacks/queens -bin/xscreensaver-hacks/rd-bomb -bin/xscreensaver-hacks/ripples -bin/xscreensaver-hacks/rocks -bin/xscreensaver-hacks/rorschach -bin/xscreensaver-hacks/rotor -bin/xscreensaver-hacks/rotzoomer -bin/xscreensaver-hacks/rubik -bin/xscreensaver-hacks/sballs -bin/xscreensaver-hacks/shadebobs -bin/xscreensaver-hacks/sierpinski -bin/xscreensaver-hacks/sierpinski3d -bin/xscreensaver-hacks/slidescreen -bin/xscreensaver-hacks/slip -bin/xscreensaver-hacks/sonar -bin/xscreensaver-hacks/speedmine -bin/xscreensaver-hacks/sphere -bin/xscreensaver-hacks/spheremonics -bin/xscreensaver-hacks/spiral -bin/xscreensaver-hacks/spotlight -bin/xscreensaver-hacks/sproingies -bin/xscreensaver-hacks/squiral -bin/xscreensaver-hacks/stairs -bin/xscreensaver-hacks/starfish -bin/xscreensaver-hacks/starwars -bin/xscreensaver-hacks/stonerview -bin/xscreensaver-hacks/strange -bin/xscreensaver-hacks/substrate -bin/xscreensaver-hacks/superquadrics -bin/xscreensaver-hacks/swirl -bin/xscreensaver-hacks/t3d -bin/xscreensaver-hacks/tangram -bin/xscreensaver-hacks/thornbird -bin/xscreensaver-hacks/timetunnel -bin/xscreensaver-hacks/triangle -bin/xscreensaver-hacks/truchet -bin/xscreensaver-hacks/twang -bin/xscreensaver-hacks/vermiculate -bin/xscreensaver-hacks/vidwhacker -bin/xscreensaver-hacks/vines -bin/xscreensaver-hacks/wander -bin/xscreensaver-hacks/webcollage -bin/xscreensaver-hacks/webcollage-helper -bin/xscreensaver-hacks/whirlwindwarp -bin/xscreensaver-hacks/whirlygig -bin/xscreensaver-hacks/worm -bin/xscreensaver-hacks/wormhole -bin/xscreensaver-hacks/xanalogtv -bin/xscreensaver-hacks/xflame -bin/xscreensaver-hacks/xjack -bin/xscreensaver-hacks/xlyap -bin/xscreensaver-hacks/xmatrix -bin/xscreensaver-hacks/xrayswarm -bin/xscreensaver-hacks/xspirograph -bin/xscreensaver-hacks/xsublim -bin/xscreensaver-hacks/xteevee -bin/xscreensaver-hacks/zoom -bin/xscreensaver-text -share/applications/gnome-screensaver-properties.desktop -share/pixmaps/xscreensaver.xpm -share/xscreensaver/glade/screensaver-cmndln.png -share/xscreensaver/glade/screensaver-colorselector.png -share/xscreensaver/glade/screensaver-diagnostic.png -share/xscreensaver/glade/screensaver-locking.png -share/xscreensaver/glade/screensaver-power.png -share/xscreensaver/glade/screensaver-snap.png -share/xscreensaver/glade/xscreensaver-demo.glade2 -share/locale/ca/LC_MESSAGES/xscreensaver.mo -share/locale/da/LC_MESSAGES/xscreensaver.mo -share/locale/de/LC_MESSAGES/xscreensaver.mo -share/locale/es/LC_MESSAGES/xscreensaver.mo -share/locale/et/LC_MESSAGES/xscreensaver.mo -share/locale/fi/LC_MESSAGES/xscreensaver.mo -share/locale/fr/LC_MESSAGES/xscreensaver.mo -share/locale/hu/LC_MESSAGES/xscreensaver.mo -share/locale/it/LC_MESSAGES/xscreensaver.mo -share/locale/ja/LC_MESSAGES/xscreensaver.mo -share/locale/ko/LC_MESSAGES/xscreensaver.mo -share/locale/nb/LC_MESSAGES/xscreensaver.mo -share/locale/nl/LC_MESSAGES/xscreensaver.mo -share/locale/no/LC_MESSAGES/xscreensaver.mo -share/locale/pl/LC_MESSAGES/xscreensaver.mo -share/locale/pt/LC_MESSAGES/xscreensaver.mo -share/locale/pt_BR/LC_MESSAGES/xscreensaver.mo -share/locale/ru/LC_MESSAGES/xscreensaver.mo -share/locale/sk/LC_MESSAGES/xscreensaver.mo -share/locale/sv/LC_MESSAGES/xscreensaver.mo -share/locale/vi/LC_MESSAGES/xscreensaver.mo -share/locale/wa/LC_MESSAGES/xscreensaver.mo -share/locale/zh_CN/LC_MESSAGES/xscreensaver.mo -share/locale/zh_TW/LC_MESSAGES/xscreensaver.mo -share/xscreensaver/config/README -share/xscreensaver/config/anemone.xml -share/xscreensaver/config/anemotaxis.xml -share/xscreensaver/config/antinspect.xml -share/xscreensaver/config/antmaze.xml -share/xscreensaver/config/antspotlight.xml -share/xscreensaver/config/apollonian.xml -share/xscreensaver/config/apple2.xml -share/xscreensaver/config/atlantis.xml -share/xscreensaver/config/attraction.xml -share/xscreensaver/config/atunnel.xml -share/xscreensaver/config/barcode.xml -share/xscreensaver/config/blaster.xml -share/xscreensaver/config/blinkbox.xml -share/xscreensaver/config/blitspin.xml -share/xscreensaver/config/blocktube.xml -share/xscreensaver/config/boing.xml -share/xscreensaver/config/bouboule.xml -share/xscreensaver/config/bouncingcow.xml -share/xscreensaver/config/boxed.xml -share/xscreensaver/config/boxfit.xml -share/xscreensaver/config/braid.xml -share/xscreensaver/config/bsod.xml -share/xscreensaver/config/bubble3d.xml -share/xscreensaver/config/bubbles.xml -share/xscreensaver/config/bumps.xml -share/xscreensaver/config/cage.xml -share/xscreensaver/config/carousel.xml -share/xscreensaver/config/celtic.xml -share/xscreensaver/config/ccurve.xml -share/xscreensaver/config/circuit.xml -share/xscreensaver/config/cloudlife.xml -share/xscreensaver/config/compass.xml -share/xscreensaver/config/coral.xml -share/xscreensaver/config/crackberg.xml -share/xscreensaver/config/critical.xml -share/xscreensaver/config/crystal.xml -share/xscreensaver/config/cube21.xml -share/xscreensaver/config/cubenetic.xml -share/xscreensaver/config/cubestorm.xml -share/xscreensaver/config/cynosure.xml -share/xscreensaver/config/dangerball.xml -share/xscreensaver/config/decayscreen.xml -share/xscreensaver/config/deco.xml -share/xscreensaver/config/deluxe.xml -share/xscreensaver/config/demon.xml -share/xscreensaver/config/discrete.xml -share/xscreensaver/config/distort.xml -share/xscreensaver/config/drift.xml -share/xscreensaver/config/endgame.xml -share/xscreensaver/config/engine.xml -share/xscreensaver/config/epicycle.xml -share/xscreensaver/config/eruption.xml -share/xscreensaver/config/euler2d.xml -share/xscreensaver/config/extrusion.xml -share/xscreensaver/config/fadeplot.xml -share/xscreensaver/config/fiberlamp.xml -share/xscreensaver/config/fireworkx.xml -share/xscreensaver/config/flag.xml -share/xscreensaver/config/flame.xml -share/xscreensaver/config/flipflop.xml -share/xscreensaver/config/flipscreen3d.xml -share/xscreensaver/config/fliptext.xml -share/xscreensaver/config/flow.xml -share/xscreensaver/config/fluidballs.xml -share/xscreensaver/config/flurry.xml -share/xscreensaver/config/flyingtoasters.xml -share/xscreensaver/config/fontglide.xml -share/xscreensaver/config/forest.xml -share/xscreensaver/config/fuzzyflakes.xml -share/xscreensaver/config/galaxy.xml -share/xscreensaver/config/gears.xml -share/xscreensaver/config/gflux.xml -share/xscreensaver/config/glblur.xml -share/xscreensaver/config/gleidescope.xml -share/xscreensaver/config/glforestfire.xml -share/xscreensaver/config/glhanoi.xml -share/xscreensaver/config/glknots.xml -share/xscreensaver/config/glmatrix.xml -share/xscreensaver/config/glplanet.xml -share/xscreensaver/config/glslideshow.xml -share/xscreensaver/config/glsnake.xml -share/xscreensaver/config/gltext.xml -share/xscreensaver/config/goop.xml -share/xscreensaver/config/grav.xml -share/xscreensaver/config/greynetic.xml -share/xscreensaver/config/halftone.xml -share/xscreensaver/config/halo.xml -share/xscreensaver/config/helix.xml -share/xscreensaver/config/hopalong.xml -share/xscreensaver/config/hyperball.xml -share/xscreensaver/config/hypercube.xml -share/xscreensaver/config/hypertorus.xml -share/xscreensaver/config/ifs.xml -share/xscreensaver/config/imsmap.xml -share/xscreensaver/config/interaggregate.xml -share/xscreensaver/config/interference.xml -share/xscreensaver/config/intermomentary.xml -share/xscreensaver/config/jigglypuff.xml -share/xscreensaver/config/jigsaw.xml -share/xscreensaver/config/juggle.xml -share/xscreensaver/config/juggler3d.xml -share/xscreensaver/config/julia.xml -share/xscreensaver/config/kaleidescope.xml -share/xscreensaver/config/klein.xml -share/xscreensaver/config/kumppa.xml -share/xscreensaver/config/lament.xml -share/xscreensaver/config/laser.xml -share/xscreensaver/config/lavalite.xml -share/xscreensaver/config/lightning.xml -share/xscreensaver/config/lisa.xml -share/xscreensaver/config/lissie.xml -share/xscreensaver/config/lmorph.xml -share/xscreensaver/config/loop.xml -share/xscreensaver/config/maze.xml -share/xscreensaver/config/memscroller.xml -share/xscreensaver/config/menger.xml -share/xscreensaver/config/metaballs.xml -share/xscreensaver/config/mirrorblob.xml -share/xscreensaver/config/mismunch.xml -share/xscreensaver/config/moebius.xml -share/xscreensaver/config/moire.xml -share/xscreensaver/config/moire2.xml -share/xscreensaver/config/molecule.xml -share/xscreensaver/config/morph3d.xml -share/xscreensaver/config/mountain.xml -share/xscreensaver/config/munch.xml -share/xscreensaver/config/nerverot.xml -share/xscreensaver/config/noof.xml -share/xscreensaver/config/noseguy.xml -share/xscreensaver/config/pacman.xml -share/xscreensaver/config/pedal.xml -share/xscreensaver/config/penetrate.xml -share/xscreensaver/config/penrose.xml -share/xscreensaver/config/petri.xml -share/xscreensaver/config/phosphor.xml -share/xscreensaver/config/piecewise.xml -share/xscreensaver/config/pinion.xml -share/xscreensaver/config/pipes.xml -share/xscreensaver/config/polyhedra.xml -share/xscreensaver/config/polyominoes.xml -share/xscreensaver/config/polytopes.xml -share/xscreensaver/config/pong.xml -share/xscreensaver/config/popsquares.xml -share/xscreensaver/config/providence.xml -share/xscreensaver/config/pulsar.xml -share/xscreensaver/config/pyro.xml -share/xscreensaver/config/qix.xml -share/xscreensaver/config/queens.xml -share/xscreensaver/config/rd-bomb.xml -share/xscreensaver/config/ripples.xml -share/xscreensaver/config/rocks.xml -share/xscreensaver/config/rorschach.xml -share/xscreensaver/config/rotor.xml -share/xscreensaver/config/rotzoomer.xml -share/xscreensaver/config/rubik.xml -share/xscreensaver/config/sballs.xml -share/xscreensaver/config/shadebobs.xml -share/xscreensaver/config/sierpinski.xml -share/xscreensaver/config/sierpinski3d.xml -share/xscreensaver/config/slidescreen.xml -share/xscreensaver/config/slip.xml -share/xscreensaver/config/sonar.xml -share/xscreensaver/config/speedmine.xml -share/xscreensaver/config/sphere.xml -share/xscreensaver/config/spheremonics.xml -share/xscreensaver/config/spiral.xml -share/xscreensaver/config/spotlight.xml -share/xscreensaver/config/sproingies.xml -share/xscreensaver/config/squiral.xml -share/xscreensaver/config/stairs.xml -share/xscreensaver/config/starfish.xml -share/xscreensaver/config/starwars.xml -share/xscreensaver/config/stonerview.xml -share/xscreensaver/config/strange.xml -share/xscreensaver/config/substrate.xml -share/xscreensaver/config/superquadrics.xml -share/xscreensaver/config/swirl.xml -share/xscreensaver/config/t3d.xml -share/xscreensaver/config/tangram.xml -share/xscreensaver/config/thornbird.xml -share/xscreensaver/config/timetunnel.xml -share/xscreensaver/config/triangle.xml -share/xscreensaver/config/truchet.xml -share/xscreensaver/config/twang.xml -share/xscreensaver/config/vermiculate.xml -share/xscreensaver/config/vidwhacker.xml -share/xscreensaver/config/vines.xml -share/xscreensaver/config/wander.xml -share/xscreensaver/config/webcollage.xml -share/xscreensaver/config/whirlwindwarp.xml -share/xscreensaver/config/whirlygig.xml -share/xscreensaver/config/worm.xml -share/xscreensaver/config/wormhole.xml -share/xscreensaver/config/xanalogtv.xml -share/xscreensaver/config/xflame.xml -share/xscreensaver/config/xjack.xml -share/xscreensaver/config/xlyap.xml -share/xscreensaver/config/xmatrix.xml -share/xscreensaver/config/xrayswarm.xml -share/xscreensaver/config/xspirograph.xml -share/xscreensaver/config/xteevee.xml -share/xscreensaver/config/zoom.xml -@dirrm share/xscreensaver/config -@dirrm share/xscreensaver -@dirrm share/xscreensaver/glade -@dirrm share/xscreensaver -@dirrm bin/xscreensaver-hacks -@cwd %%LOCALBASE%% -lib/X11/app-defaults/XScreenSaver -@dirrmtry share/applications diff --git a/x11/xscreensaver-kde/Makefile b/x11/xscreensaver-kde/Makefile deleted file mode 100644 index 673e6e5c4..000000000 --- a/x11/xscreensaver-kde/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: xscreensaver-kde -# Date created: July 08 2004 -# Whom: Michael Nottebrock <lofi@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= xscreensaver-kde -PORTVERSION= ${KDE_VERSION} -PORTREVISION= 0 -CATEGORIES= x11 kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src -PKGNAMEPREFIX= kdeartwork- -DISTNAME= kdeartwork-${PORTVERSION} -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Support for xscreensaver blankers in KDE - -CONFLICTS= kdeartwork-3.1.* kdeartwork-3.2.[0-3] - -USE_KDELIBS_VER=3 -PREFIX= ${KDE_PREFIX} - -USE_BZIP2= yes -USE_AUTOTOOLS= libtool:15 -USE_GMAKE= yes -WRKSRC= ${WRKDIR}/kdeartwork-${PORTVERSION} - -USE_LDCONFIG= yes -LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3 - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" -.include <bsd.port.pre.mk> - -.if exists(${LOCALBASE}/share/applications/gnome-screensaver-properties.desktop) -WITH_XSGNOME= yes -.elif exists(${LOCALBASE}/bin/screensaver) -WITH_XSGNOME= yes -.else -WITH_XS= yes -.endif - -.if defined(WITH_XS) && !defined(WITH_XSGNOME) -BUILD_DEPENDS+= xscreensaver:${PORTSDIR}/x11/xscreensaver -RUN_DEPENDS+= xscreensaver:${PORTSDIR}/x11/xscreensaver -.endif # defined(WITH_XS) - -.if defined(WITH_XSGNOME) -BUILD_DEPENDS+= ${LOCALBASE}/share/applications/gnome-screensaver-properties.desktop:${PORTSDIR}/x11/xscreensaver-gnome -RUN_DEPENDS+= ${LOCALBASE}/share/applications/gnome-screensaver-properties.desktop:${PORTSDIR}/x11/xscreensaver-gnome -.endif # defined(WITH_XSGNOME) - -pre-configure: - @${ECHO_CMD} "kscreensaver" > ${WRKSRC}/inst-apps - @${REINPLACE_CMD} -e 's|kdesavers||g' -e 's|kpartsaver||g' -e 's|xsavers||g' \ - ${WRKSRC}/kscreensaver/Makefile.in - -.include <bsd.port.post.mk> diff --git a/x11/xscreensaver-kde/distinfo b/x11/xscreensaver-kde/distinfo deleted file mode 100644 index d9890f844..000000000 --- a/x11/xscreensaver-kde/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (KDE/kdeartwork-3.5.7.tar.bz2) = 4ce75cd6f98b8662e450be735bc0b060 -SHA256 (KDE/kdeartwork-3.5.7.tar.bz2) = 4c54da23ce3858037ebff95b7d263ab88488b3a25aec6b459b1943f7035cd8f3 -SIZE (KDE/kdeartwork-3.5.7.tar.bz2) = 16577346 diff --git a/x11/xscreensaver-kde/pkg-descr b/x11/xscreensaver-kde/pkg-descr deleted file mode 100644 index 7b969799f..000000000 --- a/x11/xscreensaver-kde/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -This package lets you use all the screensavers from the xscreensavers package -within KDE's screensaving facility. diff --git a/x11/xscreensaver-kde/pkg-plist b/x11/xscreensaver-kde/pkg-plist deleted file mode 100644 index 3528cb733..000000000 --- a/x11/xscreensaver-kde/pkg-plist +++ /dev/null @@ -1,204 +0,0 @@ -bin/kxsconfig -bin/kxsrun -share/applnk/System/ScreenSavers/anemone.desktop -share/applnk/System/ScreenSavers/anemotaxis.desktop -share/applnk/System/ScreenSavers/antinspect.desktop -share/applnk/System/ScreenSavers/antmaze.desktop -share/applnk/System/ScreenSavers/antspotlight.desktop -share/applnk/System/ScreenSavers/apollonian.desktop -share/applnk/System/ScreenSavers/apple2.desktop -share/applnk/System/ScreenSavers/atlantis.desktop -share/applnk/System/ScreenSavers/attraction.desktop -share/applnk/System/ScreenSavers/atunnel.desktop -share/applnk/System/ScreenSavers/barcode.desktop -share/applnk/System/ScreenSavers/blaster.desktop -share/applnk/System/ScreenSavers/blinkbox.desktop -share/applnk/System/ScreenSavers/blitspin.desktop -share/applnk/System/ScreenSavers/blocktube.desktop -share/applnk/System/ScreenSavers/boing.desktop -share/applnk/System/ScreenSavers/bouboule.desktop -share/applnk/System/ScreenSavers/bouncingcow.desktop -share/applnk/System/ScreenSavers/boxed.desktop -share/applnk/System/ScreenSavers/boxfit.desktop -share/applnk/System/ScreenSavers/braid.desktop -share/applnk/System/ScreenSavers/bsod.desktop -share/applnk/System/ScreenSavers/bubble3d.desktop -share/applnk/System/ScreenSavers/bubbles.desktop -share/applnk/System/ScreenSavers/bumps.desktop -share/applnk/System/ScreenSavers/cage.desktop -share/applnk/System/ScreenSavers/carousel.desktop -share/applnk/System/ScreenSavers/ccurve.desktop -share/applnk/System/ScreenSavers/celtic.desktop -share/applnk/System/ScreenSavers/circuit.desktop -share/applnk/System/ScreenSavers/cloudlife.desktop -share/applnk/System/ScreenSavers/compass.desktop -share/applnk/System/ScreenSavers/coral.desktop -share/applnk/System/ScreenSavers/crackberg.desktop -share/applnk/System/ScreenSavers/critical.desktop -share/applnk/System/ScreenSavers/crystal.desktop -share/applnk/System/ScreenSavers/cube21.desktop -share/applnk/System/ScreenSavers/cubenetic.desktop -share/applnk/System/ScreenSavers/cubestorm.desktop -share/applnk/System/ScreenSavers/cynosure.desktop -share/applnk/System/ScreenSavers/dangerball.desktop -share/applnk/System/ScreenSavers/decayscreen.desktop -share/applnk/System/ScreenSavers/deco.desktop -share/applnk/System/ScreenSavers/deluxe.desktop -share/applnk/System/ScreenSavers/demon.desktop -share/applnk/System/ScreenSavers/discrete.desktop -share/applnk/System/ScreenSavers/distort.desktop -share/applnk/System/ScreenSavers/drift.desktop -share/applnk/System/ScreenSavers/endgame.desktop -share/applnk/System/ScreenSavers/engine.desktop -share/applnk/System/ScreenSavers/epicycle.desktop -share/applnk/System/ScreenSavers/eruption.desktop -share/applnk/System/ScreenSavers/euler2d.desktop -share/applnk/System/ScreenSavers/extrusion.desktop -share/applnk/System/ScreenSavers/fadeplot.desktop -share/applnk/System/ScreenSavers/fiberlamp.desktop -share/applnk/System/ScreenSavers/fireworkx.desktop -share/applnk/System/ScreenSavers/flag.desktop -share/applnk/System/ScreenSavers/flame.desktop -share/applnk/System/ScreenSavers/flipflop.desktop -share/applnk/System/ScreenSavers/flipscreen3d.desktop -share/applnk/System/ScreenSavers/fliptext.desktop -share/applnk/System/ScreenSavers/flow.desktop -share/applnk/System/ScreenSavers/fluidballs.desktop -share/applnk/System/ScreenSavers/flurry.desktop -share/applnk/System/ScreenSavers/flyingtoasters.desktop -share/applnk/System/ScreenSavers/fontglide.desktop -share/applnk/System/ScreenSavers/forest.desktop -share/applnk/System/ScreenSavers/fuzzyflakes.desktop -share/applnk/System/ScreenSavers/galaxy.desktop -share/applnk/System/ScreenSavers/gears.desktop -share/applnk/System/ScreenSavers/gflux.desktop -share/applnk/System/ScreenSavers/glblur.desktop -share/applnk/System/ScreenSavers/gleidescope.desktop -share/applnk/System/ScreenSavers/glforestfire.desktop -share/applnk/System/ScreenSavers/glhanoi.desktop -share/applnk/System/ScreenSavers/glknots.desktop -share/applnk/System/ScreenSavers/glmatrix.desktop -share/applnk/System/ScreenSavers/glplanet.desktop -share/applnk/System/ScreenSavers/glslideshow.desktop -share/applnk/System/ScreenSavers/glsnake.desktop -share/applnk/System/ScreenSavers/gltext.desktop -share/applnk/System/ScreenSavers/goop.desktop -share/applnk/System/ScreenSavers/grav.desktop -share/applnk/System/ScreenSavers/greynetic.desktop -share/applnk/System/ScreenSavers/halftone.desktop -share/applnk/System/ScreenSavers/halo.desktop -share/applnk/System/ScreenSavers/helix.desktop -share/applnk/System/ScreenSavers/hopalong.desktop -share/applnk/System/ScreenSavers/hyperball.desktop -share/applnk/System/ScreenSavers/hypercube.desktop -share/applnk/System/ScreenSavers/hypertorus.desktop -share/applnk/System/ScreenSavers/ifs.desktop -share/applnk/System/ScreenSavers/imsmap.desktop -share/applnk/System/ScreenSavers/interaggregate.desktop -share/applnk/System/ScreenSavers/interference.desktop -share/applnk/System/ScreenSavers/intermomentary.desktop -share/applnk/System/ScreenSavers/jigglypuff.desktop -share/applnk/System/ScreenSavers/jigsaw.desktop -share/applnk/System/ScreenSavers/juggle.desktop -share/applnk/System/ScreenSavers/juggler3d.desktop -share/applnk/System/ScreenSavers/julia.desktop -share/applnk/System/ScreenSavers/kaleidescope.desktop -share/applnk/System/ScreenSavers/klein.desktop -share/applnk/System/ScreenSavers/kumppa.desktop -share/applnk/System/ScreenSavers/lament.desktop -share/applnk/System/ScreenSavers/laser.desktop -share/applnk/System/ScreenSavers/lavalite.desktop -share/applnk/System/ScreenSavers/lightning.desktop -share/applnk/System/ScreenSavers/lisa.desktop -share/applnk/System/ScreenSavers/lissie.desktop -share/applnk/System/ScreenSavers/lmorph.desktop -share/applnk/System/ScreenSavers/loop.desktop -share/applnk/System/ScreenSavers/maze.desktop -share/applnk/System/ScreenSavers/memscroller.desktop -share/applnk/System/ScreenSavers/menger.desktop -share/applnk/System/ScreenSavers/metaballs.desktop -share/applnk/System/ScreenSavers/mirrorblob.desktop -share/applnk/System/ScreenSavers/mismunch.desktop -share/applnk/System/ScreenSavers/moebius.desktop -share/applnk/System/ScreenSavers/moire.desktop -share/applnk/System/ScreenSavers/moire2.desktop -share/applnk/System/ScreenSavers/molecule.desktop -share/applnk/System/ScreenSavers/morph3d.desktop -share/applnk/System/ScreenSavers/mountain.desktop -share/applnk/System/ScreenSavers/munch.desktop -share/applnk/System/ScreenSavers/nerverot.desktop -share/applnk/System/ScreenSavers/noof.desktop -share/applnk/System/ScreenSavers/noseguy.desktop -share/applnk/System/ScreenSavers/pacman.desktop -share/applnk/System/ScreenSavers/pedal.desktop -share/applnk/System/ScreenSavers/penetrate.desktop -share/applnk/System/ScreenSavers/penrose.desktop -share/applnk/System/ScreenSavers/petri.desktop -share/applnk/System/ScreenSavers/phosphor.desktop -share/applnk/System/ScreenSavers/piecewise.desktop -share/applnk/System/ScreenSavers/pinion.desktop -share/applnk/System/ScreenSavers/pipes.desktop -share/applnk/System/ScreenSavers/polyhedra.desktop -share/applnk/System/ScreenSavers/polyominoes.desktop -share/applnk/System/ScreenSavers/polytopes.desktop -share/applnk/System/ScreenSavers/pong.desktop -share/applnk/System/ScreenSavers/popsquares.desktop -share/applnk/System/ScreenSavers/providence.desktop -share/applnk/System/ScreenSavers/pulsar.desktop -share/applnk/System/ScreenSavers/pyro.desktop -share/applnk/System/ScreenSavers/qix.desktop -share/applnk/System/ScreenSavers/queens.desktop -share/applnk/System/ScreenSavers/rd-bomb.desktop -share/applnk/System/ScreenSavers/ripples.desktop -share/applnk/System/ScreenSavers/rocks.desktop -share/applnk/System/ScreenSavers/rorschach.desktop -share/applnk/System/ScreenSavers/rotor.desktop -share/applnk/System/ScreenSavers/rotzoomer.desktop -share/applnk/System/ScreenSavers/rubik.desktop -share/applnk/System/ScreenSavers/sballs.desktop -share/applnk/System/ScreenSavers/shadebobs.desktop -share/applnk/System/ScreenSavers/sierpinski.desktop -share/applnk/System/ScreenSavers/sierpinski3d.desktop -share/applnk/System/ScreenSavers/slidescreen.desktop -share/applnk/System/ScreenSavers/slip.desktop -share/applnk/System/ScreenSavers/sonar.desktop -share/applnk/System/ScreenSavers/speedmine.desktop -share/applnk/System/ScreenSavers/sphere.desktop -share/applnk/System/ScreenSavers/spheremonics.desktop -share/applnk/System/ScreenSavers/spiral.desktop -share/applnk/System/ScreenSavers/spotlight.desktop -share/applnk/System/ScreenSavers/sproingies.desktop -share/applnk/System/ScreenSavers/squiral.desktop -share/applnk/System/ScreenSavers/stairs.desktop -share/applnk/System/ScreenSavers/starfish.desktop -share/applnk/System/ScreenSavers/starwars.desktop -share/applnk/System/ScreenSavers/stonerview.desktop -share/applnk/System/ScreenSavers/strange.desktop -share/applnk/System/ScreenSavers/substrate.desktop -share/applnk/System/ScreenSavers/superquadrics.desktop -share/applnk/System/ScreenSavers/swirl.desktop -share/applnk/System/ScreenSavers/t3d.desktop -share/applnk/System/ScreenSavers/tangram.desktop -share/applnk/System/ScreenSavers/thornbird.desktop -share/applnk/System/ScreenSavers/timetunnel.desktop -share/applnk/System/ScreenSavers/triangle.desktop -share/applnk/System/ScreenSavers/truchet.desktop -share/applnk/System/ScreenSavers/twang.desktop -share/applnk/System/ScreenSavers/vermiculate.desktop -share/applnk/System/ScreenSavers/vidwhacker.desktop -share/applnk/System/ScreenSavers/vines.desktop -share/applnk/System/ScreenSavers/wander.desktop -share/applnk/System/ScreenSavers/webcollage.desktop -share/applnk/System/ScreenSavers/whirlwindwarp.desktop -share/applnk/System/ScreenSavers/whirlygig.desktop -share/applnk/System/ScreenSavers/worm.desktop -share/applnk/System/ScreenSavers/wormhole.desktop -share/applnk/System/ScreenSavers/xanalogtv.desktop -share/applnk/System/ScreenSavers/xflame.desktop -share/applnk/System/ScreenSavers/xjack.desktop -share/applnk/System/ScreenSavers/xlyap.desktop -share/applnk/System/ScreenSavers/xmatrix.desktop -share/applnk/System/ScreenSavers/xrayswarm.desktop -share/applnk/System/ScreenSavers/xspirograph.desktop -share/applnk/System/ScreenSavers/xsublim.desktop -share/applnk/System/ScreenSavers/zoom.desktop diff --git a/x11/yelp/Makefile b/x11/yelp/Makefile deleted file mode 100644 index 127539565..000000000 --- a/x11/yelp/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# New ports collection makefile for: yelp -# Date created: 18 May 2002 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/x11/yelp/Makefile,v 1.116 2007/08/14 17:45:08 marcus Exp $ -# - -PORTNAME= yelp -PORTVERSION= 2.20.0 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A help browser for the GNOME 2 desktop - -LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - rarian.0:${PORTSDIR}/textproc/rarian - -USE_GECKO= firefox xulrunner firefox-devel<->firefox -USE_GETTEXT= yes -USE_BZIP2= yes -USE_XLIB= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui gnomedocutils \ - libgnomeprintui -GNU_CONFIGURE= yes -INSTALLS_ICONS= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-mozilla=${GECKO} -MAKE_ENV= G_CHARSET_ALIAS="${LOCALBASE}/libdata/charset.alias" - -GCONF_SCHEMAS= yelp.schemas - -.include <bsd.port.pre.mk> -.include "${PORTSDIR}/www/mozilla/bsd.gecko.mk" -.include <bsd.port.post.mk> diff --git a/x11/yelp/distinfo b/x11/yelp/distinfo deleted file mode 100644 index 4d65e16ff..000000000 --- a/x11/yelp/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/yelp-2.20.0.tar.bz2) = 8902618c343093b1c64ee6d647ec41ed -SHA256 (gnome2/yelp-2.20.0.tar.bz2) = 0f4e1c5f3c4bf8d5109794b4d0a340ed847d49381d42968beb405f14b68c61ed -SIZE (gnome2/yelp-2.20.0.tar.bz2) = 903106 diff --git a/x11/yelp/files/patch-data_man.xml.in b/x11/yelp/files/patch-data_man.xml.in deleted file mode 100644 index 06670069c..000000000 --- a/x11/yelp/files/patch-data_man.xml.in +++ /dev/null @@ -1,12 +0,0 @@ ---- data/man.xml.in.orig Tue Dec 6 17:03:27 2005 -+++ data/man.xml.in Tue Dec 6 17:05:52 2005 -@@ -39,6 +39,9 @@ - <toc id="Man-man9" sect="9"> - <_title>Kernel Routines</_title> - </toc> -+ <toc id="Man-mann" sect="n"> -+ <_title>Tcl/Tk Functions</_title> -+ </toc> - </toc> - - <toc id="Man-man4" sect="4"> diff --git a/x11/yelp/pkg-descr b/x11/yelp/pkg-descr deleted file mode 100644 index d38af5629..000000000 --- a/x11/yelp/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Yelp is a help browser for GNOME 2.0 that displays GNOME -help documents, info pages, manpages, and more. - -WWW: http://www.gnome.org/ diff --git a/x11/yelp/pkg-plist b/x11/yelp/pkg-plist deleted file mode 100644 index 9d5800d0c..000000000 --- a/x11/yelp/pkg-plist +++ /dev/null @@ -1,158 +0,0 @@ -bin/gnome-help -bin/yelp -share/applications/yelp.desktop -share/yelp/default.css -share/yelp/icons/yelp-icon-caution.png -share/yelp/icons/yelp-icon-important.png -share/yelp/icons/yelp-icon-note.png -share/yelp/icons/yelp-icon-tip.png -share/yelp/icons/yelp-icon-warning.png -share/yelp/icons/yelp-watermark-blockquote-00AB.png -share/yelp/icons/yelp-watermark-blockquote-00BB.png -share/yelp/icons/yelp-watermark-blockquote-201C.png -share/yelp/icons/yelp-watermark-blockquote-201D.png -share/yelp/icons/yelp-watermark-blockquote-201E.png -share/yelp/important_docs.xml -share/yelp/info.xml -share/yelp/man.xml -share/yelp/scrollkeeper.xml -share/yelp/toc.xml -share/yelp/ui/yelp-search-ui.xml -share/yelp/ui/yelp-ui.xml -share/yelp/ui/yelp.glade -share/yelp/xslt/db-title.xsl -share/yelp/xslt/db2html.xsl -share/yelp/xslt/info2html.xsl -share/yelp/xslt/man2html.xsl -share/yelp/xslt/search2html.xsl -share/yelp/xslt/toc2html.xsl -share/yelp/xslt/yelp-common.xsl -share/yelp/yelp.js -share/icons/hicolor/192x192/apps/yelp-icon-big.png -share/locale/af/LC_MESSAGES/yelp.mo -share/locale/am/LC_MESSAGES/yelp.mo -share/locale/ar/LC_MESSAGES/yelp.mo -share/locale/az/LC_MESSAGES/yelp.mo -share/locale/be/LC_MESSAGES/yelp.mo -share/locale/be@latin/LC_MESSAGES/yelp.mo -share/locale/bg/LC_MESSAGES/yelp.mo -share/locale/bn/LC_MESSAGES/yelp.mo -share/locale/bn_IN/LC_MESSAGES/yelp.mo -share/locale/br/LC_MESSAGES/yelp.mo -share/locale/bs/LC_MESSAGES/yelp.mo -share/locale/ca/LC_MESSAGES/yelp.mo -share/locale/cs/LC_MESSAGES/yelp.mo -share/locale/cy/LC_MESSAGES/yelp.mo -share/locale/da/LC_MESSAGES/yelp.mo -share/locale/de/LC_MESSAGES/yelp.mo -share/locale/dz/LC_MESSAGES/yelp.mo -share/locale/el/LC_MESSAGES/yelp.mo -share/locale/en_CA/LC_MESSAGES/yelp.mo -share/locale/en_GB/LC_MESSAGES/yelp.mo -share/locale/eo/LC_MESSAGES/yelp.mo -share/locale/es/LC_MESSAGES/yelp.mo -share/locale/et/LC_MESSAGES/yelp.mo -share/locale/eu/LC_MESSAGES/yelp.mo -share/locale/fa/LC_MESSAGES/yelp.mo -share/locale/fi/LC_MESSAGES/yelp.mo -share/locale/fr/LC_MESSAGES/yelp.mo -share/locale/ga/LC_MESSAGES/yelp.mo -share/locale/gl/LC_MESSAGES/yelp.mo -share/locale/gu/LC_MESSAGES/yelp.mo -share/locale/he/LC_MESSAGES/yelp.mo -share/locale/hi/LC_MESSAGES/yelp.mo -share/locale/hr/LC_MESSAGES/yelp.mo -share/locale/hu/LC_MESSAGES/yelp.mo -share/locale/id/LC_MESSAGES/yelp.mo -share/locale/is/LC_MESSAGES/yelp.mo -share/locale/it/LC_MESSAGES/yelp.mo -share/locale/ja/LC_MESSAGES/yelp.mo -share/locale/ka/LC_MESSAGES/yelp.mo -share/locale/kn/LC_MESSAGES/yelp.mo -share/locale/ko/LC_MESSAGES/yelp.mo -share/locale/ku/LC_MESSAGES/yelp.mo -share/locale/ky/LC_MESSAGES/yelp.mo -share/locale/li/LC_MESSAGES/yelp.mo -share/locale/lt/LC_MESSAGES/yelp.mo -share/locale/lv/LC_MESSAGES/yelp.mo -share/locale/mg/LC_MESSAGES/yelp.mo -share/locale/mk/LC_MESSAGES/yelp.mo -share/locale/ml/LC_MESSAGES/yelp.mo -share/locale/mn/LC_MESSAGES/yelp.mo -share/locale/mr/LC_MESSAGES/yelp.mo -share/locale/ms/LC_MESSAGES/yelp.mo -share/locale/nb/LC_MESSAGES/yelp.mo -share/locale/nds@NFE/LC_MESSAGES/yelp.mo -share/locale/ne/LC_MESSAGES/yelp.mo -share/locale/nl/LC_MESSAGES/yelp.mo -share/locale/nn/LC_MESSAGES/yelp.mo -share/locale/nso/LC_MESSAGES/yelp.mo -share/locale/oc/LC_MESSAGES/yelp.mo -share/locale/or/LC_MESSAGES/yelp.mo -share/locale/pa/LC_MESSAGES/yelp.mo -share/locale/pl/LC_MESSAGES/yelp.mo -share/locale/pt/LC_MESSAGES/yelp.mo -share/locale/pt_BR/LC_MESSAGES/yelp.mo -share/locale/ro/LC_MESSAGES/yelp.mo -share/locale/ru/LC_MESSAGES/yelp.mo -share/locale/rw/LC_MESSAGES/yelp.mo -share/locale/si/LC_MESSAGES/yelp.mo -share/locale/sk/LC_MESSAGES/yelp.mo -share/locale/sl/LC_MESSAGES/yelp.mo -share/locale/sq/LC_MESSAGES/yelp.mo -share/locale/sr/LC_MESSAGES/yelp.mo -share/locale/sr@Latn/LC_MESSAGES/yelp.mo -share/locale/sv/LC_MESSAGES/yelp.mo -share/locale/ta/LC_MESSAGES/yelp.mo -share/locale/te/LC_MESSAGES/yelp.mo -share/locale/tg/LC_MESSAGES/yelp.mo -share/locale/th/LC_MESSAGES/yelp.mo -share/locale/tr/LC_MESSAGES/yelp.mo -share/locale/ug/LC_MESSAGES/yelp.mo -share/locale/uk/LC_MESSAGES/yelp.mo -share/locale/vi/LC_MESSAGES/yelp.mo -share/locale/wa/LC_MESSAGES/yelp.mo -share/locale/xh/LC_MESSAGES/yelp.mo -share/locale/zh_CN/LC_MESSAGES/yelp.mo -share/locale/zh_HK/LC_MESSAGES/yelp.mo -share/locale/zh_TW/LC_MESSAGES/yelp.mo -share/locale/zu/LC_MESSAGES/yelp.mo -@dirrm share/yelp/xslt -@dirrm share/yelp/ui -@dirrm share/yelp/icons -@dirrm share/yelp -@dirrmtry share/locale/zu/LC_MESSAGES -@dirrmtry share/locale/zu -@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/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/nso/LC_MESSAGES -@dirrmtry share/locale/nso -@dirrmtry share/locale/nds@NFE/LC_MESSAGES -@dirrmtry share/locale/nds@NFE -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ky/LC_MESSAGES -@dirrmtry share/locale/ky -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/applications diff --git a/x11/zenity/Makefile b/x11/zenity/Makefile deleted file mode 100644 index 9c10f9648..000000000 --- a/x11/zenity/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: zenity -# Date created: 01 Mar 2003 -# Whom: Franz Klammer <klammer@webonaut.com> -# -# $FreeBSD$ -# $MCom: ports/x11/zenity/Makefile,v 1.86 2007/08/14 20:59:18 marcus Exp $ -# - -PORTNAME= zenity -PORTVERSION= 2.20.0 -CATEGORIES= x11 gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Display GNOME dialogs from the command line - -BUILD_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian -RUN_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian - -USE_XLIB= yes -USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack libgnomecanvas gconf2 gnomedocutils -USE_BZIP2= yes -USE_GETTEXT= yes -GNU_CONFIGURE= yes -INSTALLS_OMF= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ - LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" - -MAN1= zenity.1 - -CONFLICTS= gtkada-1.2.* - -.include <bsd.port.mk> diff --git a/x11/zenity/distinfo b/x11/zenity/distinfo deleted file mode 100644 index b33e0c475..000000000 --- a/x11/zenity/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/zenity-2.20.0.tar.bz2) = 64992cdbb38c9f8ea8cd9ea07c1dfc38 -SHA256 (gnome2/zenity-2.20.0.tar.bz2) = 811a27ef5ed951ceb4874f8d19a5a79a0c9802571822cc342e706839768b2ac1 -SIZE (gnome2/zenity-2.20.0.tar.bz2) = 1787052 diff --git a/x11/zenity/pkg-descr b/x11/zenity/pkg-descr deleted file mode 100644 index 384c19680..000000000 --- a/x11/zenity/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Zenity allows dialog boxes to be created and displayed from the -commandline. This provides a simple way to create a GUI for -a shell script. diff --git a/x11/zenity/pkg-plist b/x11/zenity/pkg-plist deleted file mode 100644 index 8082156fb..000000000 --- a/x11/zenity/pkg-plist +++ /dev/null @@ -1,252 +0,0 @@ -bin/gdialog -bin/zenity -share/gnome/help/zenity/C/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/C/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/C/figures/zenity-error-screenshot.png -share/gnome/help/zenity/C/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/C/figures/zenity-information-screenshot.png -share/gnome/help/zenity/C/figures/zenity-list-screenshot.png -share/gnome/help/zenity/C/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/C/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/C/figures/zenity-question-screenshot.png -share/gnome/help/zenity/C/figures/zenity-text-screenshot.png -share/gnome/help/zenity/C/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/C/legal.xml -share/gnome/help/zenity/C/zenity.xml -share/gnome/help/zenity/bg/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-error-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-information-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-list-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-question-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-text-screenshot.png -share/gnome/help/zenity/bg/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/bg/zenity.xml -share/gnome/help/zenity/en_GB/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-error-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-information-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-list-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-question-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-text-screenshot.png -share/gnome/help/zenity/en_GB/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/en_GB/zenity.xml -share/gnome/help/zenity/es/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/es/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/es/figures/zenity-error-screenshot.png -share/gnome/help/zenity/es/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/es/figures/zenity-information-screenshot.png -share/gnome/help/zenity/es/figures/zenity-list-screenshot.png -share/gnome/help/zenity/es/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/es/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/es/figures/zenity-question-screenshot.png -share/gnome/help/zenity/es/figures/zenity-text-screenshot.png -share/gnome/help/zenity/es/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/es/zenity.xml -share/gnome/help/zenity/fr/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-error-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-information-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-list-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-question-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-text-screenshot.png -share/gnome/help/zenity/fr/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/fr/zenity.xml -share/gnome/help/zenity/oc/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-error-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-information-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-list-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-question-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-text-screenshot.png -share/gnome/help/zenity/oc/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/oc/zenity.xml -share/gnome/help/zenity/ru/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-error-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-information-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-list-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-question-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-text-screenshot.png -share/gnome/help/zenity/ru/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/ru/zenity.xml -share/gnome/help/zenity/sv/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-error-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-information-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-list-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-question-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-text-screenshot.png -share/gnome/help/zenity/sv/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/sv/zenity.xml -share/gnome/help/zenity/uk/figures/zenity-calendar-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-entry-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-error-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-fileselection-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-information-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-list-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-notification-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-progress-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-question-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-text-screenshot.png -share/gnome/help/zenity/uk/figures/zenity-warning-screenshot.png -share/gnome/help/zenity/uk/zenity.xml -share/locale/am/LC_MESSAGES/zenity.mo -share/locale/ar/LC_MESSAGES/zenity.mo -share/locale/az/LC_MESSAGES/zenity.mo -share/locale/be/LC_MESSAGES/zenity.mo -share/locale/bg/LC_MESSAGES/zenity.mo -share/locale/bn/LC_MESSAGES/zenity.mo -share/locale/bn_IN/LC_MESSAGES/zenity.mo -share/locale/bs/LC_MESSAGES/zenity.mo -share/locale/ca/LC_MESSAGES/zenity.mo -share/locale/cs/LC_MESSAGES/zenity.mo -share/locale/cy/LC_MESSAGES/zenity.mo -share/locale/da/LC_MESSAGES/zenity.mo -share/locale/de/LC_MESSAGES/zenity.mo -share/locale/dz/LC_MESSAGES/zenity.mo -share/locale/el/LC_MESSAGES/zenity.mo -share/locale/en_CA/LC_MESSAGES/zenity.mo -share/locale/en_GB/LC_MESSAGES/zenity.mo -share/locale/es/LC_MESSAGES/zenity.mo -share/locale/et/LC_MESSAGES/zenity.mo -share/locale/eu/LC_MESSAGES/zenity.mo -share/locale/fa/LC_MESSAGES/zenity.mo -share/locale/fi/LC_MESSAGES/zenity.mo -share/locale/fr/LC_MESSAGES/zenity.mo -share/locale/ga/LC_MESSAGES/zenity.mo -share/locale/gl/LC_MESSAGES/zenity.mo -share/locale/gu/LC_MESSAGES/zenity.mo -share/locale/he/LC_MESSAGES/zenity.mo -share/locale/hi/LC_MESSAGES/zenity.mo -share/locale/hr/LC_MESSAGES/zenity.mo -share/locale/hu/LC_MESSAGES/zenity.mo -share/locale/id/LC_MESSAGES/zenity.mo -share/locale/is/LC_MESSAGES/zenity.mo -share/locale/it/LC_MESSAGES/zenity.mo -share/locale/ja/LC_MESSAGES/zenity.mo -share/locale/ka/LC_MESSAGES/zenity.mo -share/locale/kn/LC_MESSAGES/zenity.mo -share/locale/ko/LC_MESSAGES/zenity.mo -share/locale/ku/LC_MESSAGES/zenity.mo -share/locale/lt/LC_MESSAGES/zenity.mo -share/locale/lv/LC_MESSAGES/zenity.mo -share/locale/mg/LC_MESSAGES/zenity.mo -share/locale/mi/LC_MESSAGES/zenity.mo -share/locale/mk/LC_MESSAGES/zenity.mo -share/locale/ml/LC_MESSAGES/zenity.mo -share/locale/mn/LC_MESSAGES/zenity.mo -share/locale/ms/LC_MESSAGES/zenity.mo -share/locale/nb/LC_MESSAGES/zenity.mo -share/locale/ne/LC_MESSAGES/zenity.mo -share/locale/nl/LC_MESSAGES/zenity.mo -share/locale/nn/LC_MESSAGES/zenity.mo -share/locale/oc/LC_MESSAGES/zenity.mo -share/locale/or/LC_MESSAGES/zenity.mo -share/locale/pa/LC_MESSAGES/zenity.mo -share/locale/pl/LC_MESSAGES/zenity.mo -share/locale/pt/LC_MESSAGES/zenity.mo -share/locale/pt_BR/LC_MESSAGES/zenity.mo -share/locale/ro/LC_MESSAGES/zenity.mo -share/locale/ru/LC_MESSAGES/zenity.mo -share/locale/rw/LC_MESSAGES/zenity.mo -share/locale/sk/LC_MESSAGES/zenity.mo -share/locale/sl/LC_MESSAGES/zenity.mo -share/locale/sq/LC_MESSAGES/zenity.mo -share/locale/sr/LC_MESSAGES/zenity.mo -share/locale/sr@Latn/LC_MESSAGES/zenity.mo -share/locale/sv/LC_MESSAGES/zenity.mo -share/locale/ta/LC_MESSAGES/zenity.mo -share/locale/th/LC_MESSAGES/zenity.mo -share/locale/tr/LC_MESSAGES/zenity.mo -share/locale/ug/LC_MESSAGES/zenity.mo -share/locale/uk/LC_MESSAGES/zenity.mo -share/locale/vi/LC_MESSAGES/zenity.mo -share/locale/xh/LC_MESSAGES/zenity.mo -share/locale/zh_CN/LC_MESSAGES/zenity.mo -share/locale/zh_HK/LC_MESSAGES/zenity.mo -share/locale/zh_TW/LC_MESSAGES/zenity.mo -share/omf/zenity/zenity-C.omf -share/omf/zenity/zenity-bg.omf -share/omf/zenity/zenity-en_GB.omf -share/omf/zenity/zenity-es.omf -share/omf/zenity/zenity-fr.omf -share/omf/zenity/zenity-oc.omf -share/omf/zenity/zenity-ru.omf -share/omf/zenity/zenity-sv.omf -share/omf/zenity/zenity-uk.omf -%%DATADIR%%/clothes/gnome-tshirt.png -%%DATADIR%%/clothes/hawaii-shirt.png -%%DATADIR%%/clothes/monk.png -%%DATADIR%%/clothes/sunglasses.png -%%DATADIR%%/clothes/surfboard.png -%%DATADIR%%/zenity-calendar.png -%%DATADIR%%/zenity-entry.png -%%DATADIR%%/zenity-file.png -%%DATADIR%%/zenity-list.png -%%DATADIR%%/zenity-notification.png -%%DATADIR%%/zenity-progress.png -%%DATADIR%%/zenity-scale.png -%%DATADIR%%/zenity-text.png -%%DATADIR%%/zenity.glade -%%DATADIR%%/zenity.png -@dirrm %%DATADIR%%/clothes -@dirrm %%DATADIR%% -@dirrm share/omf/zenity -@dirrm share/gnome/help/zenity/uk/figures -@dirrm share/gnome/help/zenity/uk -@dirrm share/gnome/help/zenity/sv/figures -@dirrm share/gnome/help/zenity/sv -@dirrm share/gnome/help/zenity/ru/figures -@dirrm share/gnome/help/zenity/ru -@dirrm share/gnome/help/zenity/oc/figures -@dirrm share/gnome/help/zenity/oc -@dirrm share/gnome/help/zenity/fr/figures -@dirrm share/gnome/help/zenity/fr -@dirrm share/gnome/help/zenity/es/figures -@dirrm share/gnome/help/zenity/es -@dirrm share/gnome/help/zenity/en_GB/figures -@dirrm share/gnome/help/zenity/en_GB -@dirrm share/gnome/help/zenity/bg/figures -@dirrm share/gnome/help/zenity/bg -@dirrm share/gnome/help/zenity/C/figures -@dirrm share/gnome/help/zenity/C -@dirrm share/gnome/help/zenity -@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/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mi/LC_MESSAGES -@dirrmtry share/locale/mi -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN |