diff options
Diffstat (limited to 'deskutils/gnome-utils')
-rw-r--r-- | deskutils/gnome-utils/Makefile | 45 | ||||
-rw-r--r-- | deskutils/gnome-utils/distinfo | 3 | ||||
-rw-r--r-- | deskutils/gnome-utils/files/patch-ai | 11 | ||||
-rw-r--r-- | deskutils/gnome-utils/files/patch-gnome-screenshot_screenshot-save.c | 29 | ||||
-rw-r--r-- | deskutils/gnome-utils/files/patch-gsearchtool_gsearchtool-support.c | 10 | ||||
-rw-r--r-- | deskutils/gnome-utils/pkg-descr | 2 | ||||
-rw-r--r-- | deskutils/gnome-utils/pkg-plist | 389 |
7 files changed, 0 insertions, 489 deletions
diff --git a/deskutils/gnome-utils/Makefile b/deskutils/gnome-utils/Makefile deleted file mode 100644 index e7a5f6fb5..000000000 --- a/deskutils/gnome-utils/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# New ports collection makefile for: gnomeutils2 -# Date created: 06 May 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/deskutils/gnome-utils/Makefile,v 1.107 2006/09/04 15:06:00 ahze Exp $ -# - -PORTNAME= gnome-utils -PORTVERSION= 2.16.1 -PORTEPOCH= 1 -CATEGORIES= deskutils 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 2 support utilities - -LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_XLIB= yes -INSTALLS_OMF= yes -USE_GMAKE= yes -GNOME_DESKTOP_VERSION=2 -USE_LDCONFIG= yes -INSTALLS_ICONS= yes -USE_GNOME= gnomeprefix gnomehack intlhack gnomepanel \ - libgnomeprintui gnomedesktop ltverhack -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -MAN1= gnome-dictionary.1 gnome-search-tool.1 gnome-system-log.1 \ - baobab.1 -GCONF_SCHEMAS= gnome-dictionary.schemas gnome-screenshot.schemas \ - gnome-search-tool.schemas logview.schemas baobab.schemas - -post-patch: - @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} -n 10 \ - ${REINPLACE_CMD} -e 's|@mandir@|${PREFIX}/man|' - -.include <bsd.port.mk> diff --git a/deskutils/gnome-utils/distinfo b/deskutils/gnome-utils/distinfo deleted file mode 100644 index 359e7096b..000000000 --- a/deskutils/gnome-utils/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (gnome2/gnome-utils-2.16.1.tar.bz2) = fa07bc6c19468d2a5e7b8713a7ffe9eb -SHA256 (gnome2/gnome-utils-2.16.1.tar.bz2) = 7981ed72f2ddc9bfb9cc38cd6038da41b95a100d4451c9794561e9eea4cc42cd -SIZE (gnome2/gnome-utils-2.16.1.tar.bz2) = 3170280 diff --git a/deskutils/gnome-utils/files/patch-ai b/deskutils/gnome-utils/files/patch-ai deleted file mode 100644 index 927a2b461..000000000 --- a/deskutils/gnome-utils/files/patch-ai +++ /dev/null @@ -1,11 +0,0 @@ ---- xmldocs.make.orig Thu Aug 7 09:56:16 2003 -+++ xmldocs.make Thu Aug 7 13:55:58 2003 -@@ -36,7 +36,7 @@ - # ********** Begin of section some packagers may need to modify ********** - # This variable (docdir) specifies where the documents should be installed. - # This default value should work for most packages. --docdir = $(datadir)/gnome/help/$(docname)/$(lang) -+docdir = $(datadir)/help/$(docname)/$(lang) - - # ********** You should not have to edit below this line ********** - xml_files = $(entities) $(docname).xml diff --git a/deskutils/gnome-utils/files/patch-gnome-screenshot_screenshot-save.c b/deskutils/gnome-utils/files/patch-gnome-screenshot_screenshot-save.c deleted file mode 100644 index 0cc89594e..000000000 --- a/deskutils/gnome-utils/files/patch-gnome-screenshot_screenshot-save.c +++ /dev/null @@ -1,29 +0,0 @@ ---- gnome-screenshot/screenshot-save.c.orig Mon Nov 1 15:56:19 2004 -+++ gnome-screenshot/screenshot-save.c Fri Dec 17 23:11:51 2004 -@@ -94,16 +94,20 @@ - gchar *message = NULL; - gchar *error_message = NULL; - GtkWidget *dialog; -+ GIOStatus status; - -- g_io_channel_read_line (source, &error_message, NULL, NULL, NULL); -- message = g_strdup_printf ("Unable to save the screenshot to disk:\n\n%s", error_message); -- dialog = gtk_message_dialog_new (NULL, 0, -+ status = g_io_channel_read_line (source, &error_message, NULL, NULL, NULL); -+ if (status == G_IO_STATUS_NORMAL) -+ { -+ message = g_strdup_printf ("Unable to save the screenshot to disk:\n\n%s", error_message); -+ dialog = gtk_message_dialog_new (NULL, 0, - GTK_MESSAGE_ERROR, - GTK_BUTTONS_OK, - message); -- gtk_dialog_run (GTK_DIALOG (dialog)); -- gtk_widget_destroy (dialog); -- exit (1); -+ gtk_dialog_run (GTK_DIALOG (dialog)); -+ gtk_widget_destroy (dialog); -+ exit (1); -+ } - } - - (*save_callback) (save_user_data); diff --git a/deskutils/gnome-utils/files/patch-gsearchtool_gsearchtool-support.c b/deskutils/gnome-utils/files/patch-gsearchtool_gsearchtool-support.c deleted file mode 100644 index 9d1ee8c9c..000000000 --- a/deskutils/gnome-utils/files/patch-gsearchtool_gsearchtool-support.c +++ /dev/null @@ -1,10 +0,0 @@ ---- gsearchtool/gsearchtool-support.c.orig Thu Jan 5 23:26:25 2006 -+++ gsearchtool/gsearchtool-support.c Thu Jan 5 23:27:04 2006 -@@ -31,6 +31,7 @@ - - #include <glib/gi18n.h> - #include <glib/gdate.h> -+#include <sys/types.h> - #include <regex.h> - #include <gdk/gdkx.h> - #include <libart_lgpl/art_rgb.h> diff --git a/deskutils/gnome-utils/pkg-descr b/deskutils/gnome-utils/pkg-descr deleted file mode 100644 index bfe154899..000000000 --- a/deskutils/gnome-utils/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -GNOME 2.0 support utilities, including a dictionary looker-upper, -a frontend for find(1), a system log viewer, and more. diff --git a/deskutils/gnome-utils/pkg-plist b/deskutils/gnome-utils/pkg-plist deleted file mode 100644 index 8b80f46ae..000000000 --- a/deskutils/gnome-utils/pkg-plist +++ /dev/null @@ -1,389 +0,0 @@ -bin/baobab -bin/gnome-dictionary -bin/gnome-panel-screenshot -bin/gnome-screenshot -bin/gnome-search-tool -bin/gnome-system-log -include/gdict-1.0/gdict/gdict-client-context.h -include/gdict-1.0/gdict/gdict-context.h -include/gdict-1.0/gdict/gdict-database-chooser.h -include/gdict-1.0/gdict/gdict-defbox.h -include/gdict-1.0/gdict/gdict-entry.h -include/gdict-1.0/gdict/gdict-enum-types.h -include/gdict-1.0/gdict/gdict-source-loader.h -include/gdict-1.0/gdict/gdict-source.h -include/gdict-1.0/gdict/gdict-speller.h -include/gdict-1.0/gdict/gdict-utils.h -include/gdict-1.0/gdict/gdict-version.h -include/gdict-1.0/gdict/gdict.h -lib/libgdict-1.0.a -lib/libgdict-1.0.la -lib/libgdict-1.0.so -lib/libgdict-1.0.so.5 -libdata/bonobo/servers/GNOME_DictionaryApplet.server -libdata/pkgconfig/gdict-1.0.pc -libexec/gnome-dictionary-applet -share/doc/gdict/gdict-GdictClientContext.html -share/doc/gdict/gdict-GdictDefbox.html -share/doc/gdict/gdict-GdictEntry.html -share/doc/gdict/gdict-GdictSource.html -share/doc/gdict/gdict-GdictSourceLoader.html -share/doc/gdict/gdict-gdict-context.html -share/doc/gdict/gdict.devhelp -share/doc/gdict/gdict.devhelp2 -share/doc/gdict/gdict.html -share/doc/gdict/gdictui.html -share/doc/gdict/home.png -share/doc/gdict/index.html -share/doc/gdict/index.sgml -share/doc/gdict/introduction.html -share/doc/gdict/left.png -share/doc/gdict/right.png -share/doc/gdict/sources-loader.html -share/doc/gdict/sources.html -share/doc/gdict/style.css -share/doc/gdict/up.png -share/gnome/applications/baobab.desktop -share/gnome/applications/gnome-dictionary.desktop -share/gnome/applications/gnome-screenshot.desktop -share/gnome/applications/gnome-search-tool.desktop -share/gnome/applications/gnome-system-log.desktop -share/gnome/baobab/pixmaps/alfa_sort.png -share/gnome/baobab/pixmaps/baobab.glade -share/gnome/baobab/pixmaps/baobab.xpm -share/gnome/baobab/pixmaps/busy.gif -share/gnome/baobab/pixmaps/done.png -share/gnome/baobab/pixmaps/format_numeric.png -share/gnome/baobab/pixmaps/format_percent.png -share/gnome/baobab/pixmaps/green.png -share/gnome/baobab/pixmaps/nautilus.png -share/gnome/baobab/pixmaps/num_sort.png -share/gnome/baobab/pixmaps/red.png -share/gnome/baobab/pixmaps/scan_directory.png -share/gnome/baobab/pixmaps/scan_harddisk.png -share/gnome/baobab/pixmaps/search.png -share/gnome/baobab/pixmaps/searchall.png -share/gnome/baobab/pixmaps/shot.png -share/gnome/baobab/pixmaps/stop.png -share/gnome/baobab/pixmaps/white.png -share/gnome/baobab/pixmaps/yellow.png -share/gnome/gdict-1.0/sources/default.desktop -share/gnome/gdict-1.0/sources/spanish.desktop -share/gnome/gnome-2.0/ui/GNOME_DictionaryApplet.xml -share/gnome/gnome-dictionary/gnome-dictionary-preferences.glade -share/gnome/gnome-dictionary/gnome-dictionary-ui.xml -share/gnome/gnome-screenshot/glade/gnome-screenshot.glade -share/gnome/gnome-system-log/gnome-system-log-actions.db -share/gnome/gnome-system-log/gnome-system-log-descript.db -share/gnome/gnome-system-log/gnome-system-log-regexp.db -share/gnome/help/baobab/C/baobab.xml -share/gnome/help/baobab/C/figures/baobab_fullscan.png -share/gnome/help/baobab/C/figures/baobab_prefs.png -share/gnome/help/baobab/C/figures/baobab_remote.png -share/gnome/help/baobab/C/figures/baobab_treemaps.png -share/gnome/help/baobab/C/figures/baobab_window.png -share/gnome/help/baobab/C/legal.xml -share/gnome/help/baobab/sv/baobab.xml -share/gnome/help/baobab/sv/figures/baobab_fullscan.png -share/gnome/help/baobab/sv/figures/baobab_prefs.png -share/gnome/help/baobab/sv/figures/baobab_remote.png -share/gnome/help/baobab/sv/figures/baobab_treemaps.png -share/gnome/help/baobab/sv/figures/baobab_window.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/C/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/C/legal.xml -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/el/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/es/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/fr/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/ru/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/sv/gnome-dictionary.xml -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-add-source.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-applet-window.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-applet.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-application.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-find.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-lookup.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-preferences-print.png -share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-preferences-source.png -share/gnome/help/gnome-dictionary/uk/gnome-dictionary.xml -share/gnome/help/gnome-search-tool/C/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/C/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/C/legal.xml -share/gnome/help/gnome-search-tool/es/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/es/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/fr/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/fr/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/ru/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/ru/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/sv/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/sv/gnome-search-tool.xml -share/gnome/help/gnome-search-tool/uk/figures/gnome-search-tool_window.png -share/gnome/help/gnome-search-tool/uk/gnome-search-tool.xml -share/gnome/help/gnome-system-log/C/figures/syslog_window.png -share/gnome/help/gnome-system-log/C/gnome-system-log.xml -share/gnome/help/gnome-system-log/C/legal.xml -share/gnome/help/gnome-system-log/es/figures/syslog_window.png -share/gnome/help/gnome-system-log/es/gnome-system-log.xml -share/gnome/help/gnome-system-log/fr/figures/syslog_window.png -share/gnome/help/gnome-system-log/fr/gnome-system-log.xml -share/gnome/help/gnome-system-log/it/figures/syslog_window.png -share/gnome/help/gnome-system-log/it/gnome-system-log.xml -share/gnome/help/gnome-system-log/sv/figures/syslog_window.png -share/gnome/help/gnome-system-log/sv/gnome-system-log.xml -share/gnome/help/gnome-system-log/uk/figures/syslog_window.png -share/gnome/help/gnome-system-log/uk/gnome-system-log.xml -share/gnome/omf/baobab/baobab-C.omf -share/gnome/omf/baobab/baobab-sv.omf -share/gnome/omf/gnome-dictionary/gnome-dictionary-C.omf -share/gnome/omf/gnome-dictionary/gnome-dictionary-el.omf -share/gnome/omf/gnome-dictionary/gnome-dictionary-es.omf -share/gnome/omf/gnome-dictionary/gnome-dictionary-fr.omf -share/gnome/omf/gnome-dictionary/gnome-dictionary-ru.omf -share/gnome/omf/gnome-dictionary/gnome-dictionary-sv.omf -share/gnome/omf/gnome-dictionary/gnome-dictionary-uk.omf -share/gnome/omf/gnome-search-tool/gnome-search-tool-C.omf -share/gnome/omf/gnome-search-tool/gnome-search-tool-es.omf -share/gnome/omf/gnome-search-tool/gnome-search-tool-fr.omf -share/gnome/omf/gnome-search-tool/gnome-search-tool-ru.omf -share/gnome/omf/gnome-search-tool/gnome-search-tool-sv.omf -share/gnome/omf/gnome-search-tool/gnome-search-tool-uk.omf -share/gnome/omf/gnome-system-log/gnome-system-log-C.omf -share/gnome/omf/gnome-system-log/gnome-system-log-es.omf -share/gnome/omf/gnome-system-log/gnome-system-log-fr.omf -share/gnome/omf/gnome-system-log/gnome-system-log-it.omf -share/gnome/omf/gnome-system-log/gnome-system-log-sv.omf -share/gnome/omf/gnome-system-log/gnome-system-log-uk.omf -share/gnome/pixmaps/gsearchtool/thumbnail_frame.png -share/icons/hicolor/48x48/apps/baobab.png -share/icons/hicolor/48x48/apps/gnome-dictionary.png -share/icons/hicolor/scalable/apps/gnome-dictionary.svg -share/locale/am/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ar/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/az/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/be/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/bg/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/bn/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/bn_IN/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/bs/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ca/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/cs/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/cy/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/da/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/de/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/dz/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/el/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/en_CA/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/en_GB/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/es/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/et/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/eu/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/fa/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/fi/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/fr/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ga/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/gl/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/gu/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/he/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/hi/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/hr/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/hu/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/id/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/it/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ja/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ka/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ko/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ku/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/lt/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/lv/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/mg/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/mk/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ml/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/mn/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ms/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/nb/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ne/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/nl/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/nn/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/or/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/pa/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/pl/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/pt/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/pt_BR/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ro/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ru/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/rw/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/sk/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/sl/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/sq/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/sr/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/sr@Latn/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/sv/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/ta/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/th/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/tr/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/uk/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/vi/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/wa/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/xh/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/zh_CN/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/zh_HK/LC_MESSAGES/gnome-utils-2.0.mo -share/locale/zh_TW/LC_MESSAGES/gnome-utils-2.0.mo -@dirrm share/gnome/pixmaps/gsearchtool -@dirrm share/gnome/omf/gnome-system-log -@dirrm share/gnome/omf/gnome-search-tool -@dirrm share/gnome/omf/gnome-dictionary -@dirrm share/gnome/omf/baobab -@dirrm share/gnome/help/gnome-system-log/uk/figures -@dirrm share/gnome/help/gnome-system-log/uk -@dirrm share/gnome/help/gnome-system-log/sv/figures -@dirrm share/gnome/help/gnome-system-log/sv -@dirrm share/gnome/help/gnome-system-log/it/figures -@dirrm share/gnome/help/gnome-system-log/it -@dirrm share/gnome/help/gnome-system-log/fr/figures -@dirrm share/gnome/help/gnome-system-log/fr -@dirrm share/gnome/help/gnome-system-log/es/figures -@dirrm share/gnome/help/gnome-system-log/es -@dirrm share/gnome/help/gnome-system-log/C/figures -@dirrm share/gnome/help/gnome-system-log/C -@dirrm share/gnome/help/gnome-system-log -@dirrm share/gnome/help/gnome-search-tool/uk/figures -@dirrm share/gnome/help/gnome-search-tool/uk -@dirrm share/gnome/help/gnome-search-tool/sv/figures -@dirrm share/gnome/help/gnome-search-tool/sv -@dirrm share/gnome/help/gnome-search-tool/ru/figures -@dirrm share/gnome/help/gnome-search-tool/ru -@dirrm share/gnome/help/gnome-search-tool/fr/figures -@dirrm share/gnome/help/gnome-search-tool/fr -@dirrm share/gnome/help/gnome-search-tool/es/figures -@dirrm share/gnome/help/gnome-search-tool/es -@dirrm share/gnome/help/gnome-search-tool/C/figures -@dirrm share/gnome/help/gnome-search-tool/C -@dirrm share/gnome/help/gnome-search-tool -@dirrm share/gnome/help/gnome-dictionary/uk/figures -@dirrm share/gnome/help/gnome-dictionary/uk -@dirrm share/gnome/help/gnome-dictionary/sv/figures -@dirrm share/gnome/help/gnome-dictionary/sv -@dirrm share/gnome/help/gnome-dictionary/ru/figures -@dirrm share/gnome/help/gnome-dictionary/ru -@dirrm share/gnome/help/gnome-dictionary/fr/figures -@dirrm share/gnome/help/gnome-dictionary/fr -@dirrm share/gnome/help/gnome-dictionary/es/figures -@dirrm share/gnome/help/gnome-dictionary/es -@dirrm share/gnome/help/gnome-dictionary/el/figures -@dirrm share/gnome/help/gnome-dictionary/el -@dirrm share/gnome/help/gnome-dictionary/C/figures -@dirrm share/gnome/help/gnome-dictionary/C -@dirrm share/gnome/help/gnome-dictionary -@dirrm share/gnome/help/baobab/sv/figures -@dirrm share/gnome/help/baobab/sv -@dirrm share/gnome/help/baobab/C/figures -@dirrm share/gnome/help/baobab/C -@dirrm share/gnome/help/baobab -@dirrm share/gnome/gnome-system-log -@dirrm share/gnome/gnome-screenshot/glade -@dirrm share/gnome/gnome-screenshot -@dirrm share/gnome/gnome-dictionary -@dirrm share/gnome/gdict-1.0/sources -@dirrm share/gnome/gdict-1.0 -@dirrm share/gnome/baobab/pixmaps -@dirrm share/gnome/baobab -@dirrm share/doc/gdict -@dirrm include/gdict-1.0/gdict -@dirrm include/gdict-1.0 -@dirrmtry share/locale/zh_TW/LC_MESSAGES -@dirrmtry share/locale/zh_TW -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/zh_CN/LC_MESSAGES -@dirrmtry share/locale/zh_CN -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh -@dirrmtry share/locale/uk/LC_MESSAGES -@dirrmtry share/locale/uk -@dirrmtry share/locale/sr/LC_MESSAGES -@dirrmtry share/locale/sr -@dirrmtry share/locale/sl/LC_MESSAGES -@dirrmtry share/locale/sl -@dirrmtry share/locale/sk/LC_MESSAGES -@dirrmtry share/locale/sk -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ro/LC_MESSAGES -@dirrmtry share/locale/ro -@dirrmtry share/locale/pt/LC_MESSAGES -@dirrmtry share/locale/pt -@dirrmtry share/locale/pl/LC_MESSAGES -@dirrmtry share/locale/pl -@dirrmtry share/locale/nn/LC_MESSAGES -@dirrmtry share/locale/nn -@dirrmtry share/locale/ne/LC_MESSAGES -@dirrmtry share/locale/ne -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/ko/LC_MESSAGES -@dirrmtry share/locale/ko -@dirrmtry share/locale/gl/LC_MESSAGES -@dirrmtry share/locale/gl -@dirrmtry share/locale/fi/LC_MESSAGES -@dirrmtry share/locale/fi -@dirrmtry share/locale/el/LC_MESSAGES -@dirrmtry share/locale/el -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/cs/LC_MESSAGES -@dirrmtry share/locale/cs -@dirrmtry share/locale/ca/LC_MESSAGES -@dirrmtry share/locale/ca -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be/LC_MESSAGES -@dirrmtry share/locale/be |