summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--deskutils/gnomeutils2/Makefile39
-rw-r--r--deskutils/gnomeutils2/distinfo3
-rw-r--r--deskutils/gnomeutils2/files/patch-ai11
-rw-r--r--deskutils/gnomeutils2/files/patch-gnome-screenshot_screenshot-save.c29
-rw-r--r--deskutils/gnomeutils2/files/patch-gsearchtool_gsearchtool-support.c10
-rw-r--r--deskutils/gnomeutils2/files/patch-logview__logview.h10
-rw-r--r--deskutils/gnomeutils2/files/patch-logview_calendar.h10
-rw-r--r--deskutils/gnomeutils2/files/patch-logview_loglist.h10
-rw-r--r--deskutils/gnomeutils2/files/patch-logview_logrtns.c52
-rw-r--r--deskutils/gnomeutils2/files/patch-logview_logview-findbar.h10
-rw-r--r--deskutils/gnomeutils2/files/patch-logview_misc.c21
-rw-r--r--deskutils/gnomeutils2/pkg-descr2
-rw-r--r--deskutils/gnomeutils2/pkg-plist187
-rw-r--r--x11/gnome2/Makefile4
14 files changed, 2 insertions, 396 deletions
diff --git a/deskutils/gnomeutils2/Makefile b/deskutils/gnomeutils2/Makefile
deleted file mode 100644
index 39f20d1bf..000000000
--- a/deskutils/gnomeutils2/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# New ports collection makefile for: gnomeutils2
-# Date created: 06 May 2002
-# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
-#
-# $FreeBSD$
-# $MCom: ports/deskutils/gnomeutils2/Makefile,v 1.95 2006/05/02 05:56:43 marcus Exp $
-#
-
-PORTNAME= gnomeutils2
-PORTVERSION= 2.15.0
-PORTREVISION= 2
-PORTEPOCH= 1
-CATEGORIES= deskutils gnome
-MASTER_SITES= ${MASTER_SITE_GNOME}
-MASTER_SITE_SUBDIR= sources/gnome-utils/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
-DISTNAME= gnome-utils-${PORTVERSION}
-DIST_SUBDIR= gnome2
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= GNOME 2 support utilities
-
-USE_BZIP2= yes
-USE_GETTEXT= yes
-USE_X_PREFIX= yes
-INSTALLS_OMF= yes
-USE_GMAKE= yes
-GNOME_DESKTOP_VERSION=2
-INSTALLS_SHLIB= 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
-GCONF_SCHEMAS= gnome-dictionary.schemas gnome-screenshot.schemas \
- gnome-search-tool.schemas logview.schemas
-
-.include <bsd.port.mk>
diff --git a/deskutils/gnomeutils2/distinfo b/deskutils/gnomeutils2/distinfo
deleted file mode 100644
index dbd326259..000000000
--- a/deskutils/gnomeutils2/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (gnome2/gnome-utils-2.15.0.tar.bz2) = 4628989354585116362c5e06c144402a
-SHA256 (gnome2/gnome-utils-2.15.0.tar.bz2) = 75a8ac18dc10fe927d220aee3b1eb28a15bcdb430432b77bf0f38fc928d7eab8
-SIZE (gnome2/gnome-utils-2.15.0.tar.bz2) = 2258436
diff --git a/deskutils/gnomeutils2/files/patch-ai b/deskutils/gnomeutils2/files/patch-ai
deleted file mode 100644
index 927a2b461..000000000
--- a/deskutils/gnomeutils2/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/gnomeutils2/files/patch-gnome-screenshot_screenshot-save.c b/deskutils/gnomeutils2/files/patch-gnome-screenshot_screenshot-save.c
deleted file mode 100644
index 0cc89594e..000000000
--- a/deskutils/gnomeutils2/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/gnomeutils2/files/patch-gsearchtool_gsearchtool-support.c b/deskutils/gnomeutils2/files/patch-gsearchtool_gsearchtool-support.c
deleted file mode 100644
index 9d1ee8c9c..000000000
--- a/deskutils/gnomeutils2/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/gnomeutils2/files/patch-logview__logview.h b/deskutils/gnomeutils2/files/patch-logview__logview.h
deleted file mode 100644
index 3cd50f68c..000000000
--- a/deskutils/gnomeutils2/files/patch-logview__logview.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- logview/logview.h.orig Wed Apr 19 12:39:07 2006
-+++ logview/logview.h Wed Apr 19 12:40:08 2006
-@@ -73,6 +73,7 @@
- void logview_set_window_title (LogviewWindow *window);
- void logview_set_font (LogviewWindow *window, const gchar *fontname);
- void logview_show_main_content (LogviewWindow *window);
-+GType logview_window_get_type (void);
- GtkWidget *logview_window_new (void);
-
- #endif /* __LOGVIEW_H__ */
diff --git a/deskutils/gnomeutils2/files/patch-logview_calendar.h b/deskutils/gnomeutils2/files/patch-logview_calendar.h
deleted file mode 100644
index 3aefb999f..000000000
--- a/deskutils/gnomeutils2/files/patch-logview_calendar.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- logview/calendar.h.orig Tue Apr 18 22:20:35 2006
-+++ logview/calendar.h Tue Apr 18 22:20:58 2006
-@@ -45,6 +45,7 @@ typedef struct CalendarClass
- GtkCalendarClass parent_class;
- }CalendarClass;
-
-+GType calendar_get_type (void);
- GtkWidget *calendar_new (void);
- void calendar_select_date (Calendar *calendar, GDate *date);
- void calendar_init_data (Calendar *calendar, LogviewWindow *logview);
diff --git a/deskutils/gnomeutils2/files/patch-logview_loglist.h b/deskutils/gnomeutils2/files/patch-logview_loglist.h
deleted file mode 100644
index 149e04a59..000000000
--- a/deskutils/gnomeutils2/files/patch-logview_loglist.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- logview/loglist.h.orig Wed Apr 19 00:30:12 2006
-+++ logview/loglist.h Wed Apr 19 00:30:23 2006
-@@ -39,6 +39,7 @@ typedef struct LogListClass
- GtkTreeViewClass parent_class;
- }LogListClass;
-
-+GType loglist_get_type (void);
- GtkWidget *loglist_new (void);
- void loglist_connect (LogList *list, LogviewWindow *window);
- void loglist_add_log (LogList *list, Log *log);
diff --git a/deskutils/gnomeutils2/files/patch-logview_logrtns.c b/deskutils/gnomeutils2/files/patch-logview_logrtns.c
deleted file mode 100644
index 85333d2fe..000000000
--- a/deskutils/gnomeutils2/files/patch-logview_logrtns.c
+++ /dev/null
@@ -1,52 +0,0 @@
---- logview/logrtns.c.orig Wed Apr 19 00:28:00 2006
-+++ logview/logrtns.c Wed Apr 19 00:29:24 2006
-@@ -48,7 +48,7 @@ file_exist (char *filename, gboolean sho
- char *secondary = NULL;
-
- if (filename == NULL)
-- return;
-+ return FALSE;
-
- result = gnome_vfs_open (&handle, filename, GNOME_VFS_OPEN_READ);
- if (result != GNOME_VFS_OK) {
-@@ -83,7 +83,7 @@ file_is_zipped (char *filename)
- char *mime_type;
-
- if (filename == NULL)
-- return;
-+ return FALSE;
-
- mime_type = gnome_vfs_get_mime_type (filename);
- if (mime_type == NULL)
-@@ -106,7 +106,7 @@ file_is_log (char *filename, gboolean sh
- LogStats *stats;
-
- if (filename == NULL)
-- return;
-+ return FALSE;
-
- stats = log_stats_new (filename, show_error);
- if (stats==NULL)
-@@ -134,11 +134,11 @@ string_get_date_string (gchar *line)
- int i=0;
-
- if (line == NULL || line[0] == 0)
-- return;
-+ return NULL;
-
- split = g_strsplit (line, " ", 4);
- if (split == NULL)
-- return;
-+ return NULL;
-
- while ((day == NULL || month == NULL) && split[i]!=NULL && i<4) {
- if (g_str_equal (split[i], "")) {
-@@ -531,7 +531,7 @@ log_unbold (gpointer data)
- LogList *list;
- Log *log = data;
-
-- g_return_if_fail (log != NULL);
-+ g_return_val_if_fail (log != NULL, FALSE);
-
- logview = log->window;
-
diff --git a/deskutils/gnomeutils2/files/patch-logview_logview-findbar.h b/deskutils/gnomeutils2/files/patch-logview_logview-findbar.h
deleted file mode 100644
index 1e6acd101..000000000
--- a/deskutils/gnomeutils2/files/patch-logview_logview-findbar.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- logview/logview-findbar.h.orig Wed Apr 19 00:27:03 2006
-+++ logview/logview-findbar.h Wed Apr 19 00:27:17 2006
-@@ -44,6 +44,7 @@ typedef struct LogviewFindBarClass
- GtkHBoxClass parent_class;
- }LogviewFindBarClass;
-
-+GType logview_findbar_get_type (void);
- GtkWidget *logview_findbar_new (void);
- void logview_findbar_connect (LogviewFindBar *findbar, LogviewWindow *logview);
- void logview_findbar_update_visibility (LogviewFindBar *findbar, LogviewWindow *logview);
diff --git a/deskutils/gnomeutils2/files/patch-logview_misc.c b/deskutils/gnomeutils2/files/patch-logview_misc.c
deleted file mode 100644
index 1a0f54cfe..000000000
--- a/deskutils/gnomeutils2/files/patch-logview_misc.c
+++ /dev/null
@@ -1,21 +0,0 @@
---- logview/misc.c.orig Tue Apr 18 21:28:07 2006
-+++ logview/misc.c Tue Apr 18 21:28:30 2006
-@@ -135,15 +135,15 @@ string_get_date (char *line)
- {
- GDate *date;
- struct tm tp;
-- int cp;
-+ char *cp;
-
- if (line == NULL || line[0] == 0)
- return NULL;
-
- cp = strptime (line, "%b %d", &tp);
-- if (cp == 0) {
-+ if (cp == NULL) {
- cp = strptime (line, "%F", &tp);
-- if (cp == 0) {
-+ if (cp == NULL) {
- return NULL;
- }
- }
diff --git a/deskutils/gnomeutils2/pkg-descr b/deskutils/gnomeutils2/pkg-descr
deleted file mode 100644
index bfe154899..000000000
--- a/deskutils/gnomeutils2/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/gnomeutils2/pkg-plist b/deskutils/gnomeutils2/pkg-plist
deleted file mode 100644
index b16a5ac96..000000000
--- a/deskutils/gnomeutils2/pkg-plist
+++ /dev/null
@@ -1,187 +0,0 @@
-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-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-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.3
-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-GdictContext.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.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/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/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/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/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-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-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/omf/gnome-dictionary/gnome-dictionary-C.omf
-share/gnome/omf/gnome-dictionary/gnome-dictionary-es.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-system-log/gnome-system-log-C.omf
-share/gnome/omf/gnome-system-log/gnome-system-log-es.omf
-share/gnome/pixmaps/gnome-dictionary.png
-share/gnome/pixmaps/gsearchtool/thumbnail_frame.png
-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/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/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/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/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/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_TW/LC_MESSAGES/gnome-utils-2.0.mo
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@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/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/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/es/figures
-@dirrm share/gnome/help/gnome-dictionary/es
-@dirrm share/gnome/help/gnome-dictionary/C/figures
-@dirrm share/gnome/help/gnome-dictionary/C
-@dirrm share/gnome/help/gnome-dictionary
-@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/doc/gdict
-@dirrm include/gdict-1.0/gdict
-@dirrm include/gdict-1.0
diff --git a/x11/gnome2/Makefile b/x11/gnome2/Makefile
index 2084f3b56..d60356b6a 100644
--- a/x11/gnome2/Makefile
+++ b/x11/gnome2/Makefile
@@ -3,7 +3,7 @@
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
-# $MCom: ports/x11/gnome2/Makefile,v 1.147 2006/05/28 02:26:11 mezz Exp $
+# $MCom: ports/x11/gnome2/Makefile,v 1.148 2006/05/28 02:44:18 mezz Exp $
#
PORTNAME= gnome2
@@ -19,7 +19,7 @@ COMMENT?= The "meta-port" for the GNOME 2 integrated X11 desktop
RUN_DEPENDS?= ${X11BASE}/libexec/gweather-applet-2:${PORTSDIR}/x11/gnomeapplets2 \
gnome-cd:${PORTSDIR}/audio/gnome-media \
- gnome-dictionary:${PORTSDIR}/deskutils/gnomeutils2 \
+ gnome-dictionary:${PORTSDIR}/deskutils/gnome-utils \
eog:${PORTSDIR}/graphics/eog \
gconf-editor:${PORTSDIR}/sysutils/gconf-editor \
gnect:${PORTSDIR}/games/gnomegames2 \