1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Remove misc/gnomeutils2 after a repo copy to deskutils/gnomeutils2.

This commit is contained in:
Joe Marcus Clarke 2003-08-06 20:22:57 +00:00
parent 209a810dac
commit efad845a4e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=86404
11 changed files with 0 additions and 602 deletions

View File

@ -110,7 +110,6 @@
SUBDIR += gnomepm
SUBDIR += gnomesword
SUBDIR += gnomeuserdocs2
SUBDIR += gnomeutils2
SUBDIR += gnuls
SUBDIR += gnustep-examples
SUBDIR += goblin

View File

@ -1,34 +0,0 @@
# New ports collection makefile for: gnomeutils2
# Date created: 06 May 2002
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= gnomeutils2
PORTVERSION= 2.2.3
PORTEPOCH= 1
CATEGORIES= misc gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/gnome-utils/2.2
DISTNAME= gnome-utils-${PORTVERSION}
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
COMMENT= GNOME 2 support utilities
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_REINPLACE= yes
USE_GMAKE= yes
GNOME_DESKTOP_VERSION=2
USE_GNOME= gnomeprefix gnomehack gnomehier gnomepanel
USE_LIBTOOL= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
MAN1= gnome-calculator.1 \
gnome-character-map.1 gnome-dictionary.1 \
gnome-search-tool.1 gnome-system-log.1 gdialog.1
.include <bsd.port.mk>

View File

@ -1 +0,0 @@
MD5 (gnome2/gnome-utils-2.2.3.tar.bz2) = 2bde68d39e135a99dfd308a7ec7b6c4a

View File

@ -1,28 +0,0 @@
--- gdialog/dialog.h.orig Tue Jul 6 16:23:33 1999
+++ gdialog/dialog.h Wed Aug 18 11:34:23 1999
@@ -36,24 +36,7 @@
#include <gnome.h>
#endif
-#ifdef ultrix
-# include <cursesX.h>
-#else
-# if defined(USE_NCURSES) && !defined(RENAMED_NCURSES)
-# include <ncurses.h>
-# else
-# if !defined(_XOPEN_SOURCE_EXTENDED) && !defined(__sgi)
-# define hacked 1
-# define _XOPEN_SOURCE_EXTENDED
-# define _ACS_COMPAT_CODE
-# endif
-# include <curses.h>
-# ifdef hacked
-# undef _XOPEN_SOURCE_EXTENDED
-# undef _ACS_COMPAT_CODE
-# endif
-# endif
-#endif
+#include <ncurses.h>
/*
* Change these if you want

View File

@ -1,11 +0,0 @@
--- sgmldocs.make.orig Mon May 6 23:46:55 2002
+++ sgmldocs.make Mon May 6 23:47:10 2002
@@ -32,7 +32,7 @@
# dist-hook: app-dist-hook
#
-docdir = $(datadir)/gnome/help/$(docname)/$(lang)
+docdir = $(datadir)/help/$(docname)/$(lang)
doc_DATA = index.html

View File

@ -1,11 +0,0 @@
--- configure.orig Mon Nov 25 09:25:29 2002
+++ configure Tue Nov 26 16:04:42 2002
@@ -10347,7 +10347,7 @@
cat >>confdefs.h <<_ACEOF
-#define GNOME_ICONDIR "${prefix}/share/pixmaps"
+#define GNOME_ICONDIR "${datadir}/pixmaps"
_ACEOF

View File

@ -1,15 +0,0 @@
$FreeBSD$
--- logview/log_repaint.c 2001/11/23 16:01:55 1.1
+++ logview/log_repaint.c 2001/11/23 16:02:30
@@ -24,7 +24,9 @@
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
+#ifdef HAVE_MALLOC_H
#include <malloc.h>
+#endif
#include <string.h>
#include <gnome.h>
#include "logview.h"

View File

@ -1,15 +0,0 @@
$FreeBSD$
--- logview/logrtns.h 2001/11/23 16:04:00 1.1
+++ logview/logrtns.h 2001/11/23 16:04:14
@@ -24,7 +24,9 @@
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
+#ifdef HAVE_MALLOC_H
#include <malloc.h>
+#endif
#include <string.h>
#include "logview.h"

View File

@ -1,37 +0,0 @@
--- logview/logview.c.orig Sun Feb 16 15:34:59 2003
+++ logview/logview.c Wed Apr 23 14:51:26 2003
@@ -774,7 +774,7 @@
if ( ! found) {
g_snprintf (full_name, sizeof (full_name),
- "%s/share/gnome-system-log/gnome-system-log-regexp.db", LOGVIEWINSTALLPREFIX);
+ "%s/gnome-system-log/gnome-system-log-regexp.db", DATADIR);
if (access (full_name, R_OK) == 0) {
found = TRUE;
g_free (cfg->regexp_db_path);
@@ -797,7 +797,7 @@
if ( ! found) {
g_snprintf (full_name, sizeof (full_name),
- "%s/share/gnome-system-log/gnome-system-log-descript.db", LOGVIEWINSTALLPREFIX);
+ "%s/gnome-system-log/gnome-system-log-descript.db", DATADIR);
if (access (full_name, R_OK) == 0) {
found = TRUE;
g_free (cfg->descript_db_path);
@@ -831,7 +831,7 @@
if ( ! found) {
g_snprintf (full_name, sizeof (full_name),
- "%s/share/gnome-system-log/gnome-system-log-actions.db", LOGVIEWINSTALLPREFIX);
+ "%s/gnome-system-log/gnome-system-log-actions.db", DATADIR);
if (access (full_name, R_OK) == 0) {
found = TRUE;
g_free (cfg->action_db_path);
@@ -882,7 +882,6 @@
else
prefs->logfile = NULL;
}
- g_free (logfile);
}
void SaveUserPrefs(UserPrefsStruct *prefs)

View File

@ -1,3 +0,0 @@
GNOME 2 support utilities, including an on-the-fly dialog box tool
(like Zenity), a dictionary, a frontend for find(1), and a system log
viewer.

View File

@ -1,446 +0,0 @@
bin/gdialog
bin/gnome-calculator
bin/gnome-character-map
bin/gnome-dictionary
bin/gnome-search-tool
bin/gnome-system-log
etc/gconf/gconf.xml.defaults/apps/gnome-dictionary/%gconf.xml
etc/gconf/gconf.xml.defaults/apps/gnome-system-log/%gconf.xml
etc/gconf/gconf.xml.defaults/schemas/apps/gnome-dictionary/%gconf.xml
etc/gconf/gconf.xml.defaults/schemas/apps/gnome-system-log/%gconf.xml
etc/gconf/schemas/gdict.schemas
etc/gconf/schemas/logview.schemas
libdata/bonobo/servers/GNOME_GDictApplet.server
libexec/gdict-applet
share/gnome/applications/gnome-calculator.desktop
share/gnome/applications/gnome-character-map.desktop
share/gnome/applications/gnome-dictionary.desktop
share/gnome/applications/gnome-search-tool.desktop
share/gnome/applications/gnome-system-log.desktop
share/gnome/gnome-2.0/ui/GNOME_GDictApplet.xml
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/gdialog/C/figures/example-dialog.png
share/gnome/help/gdialog/C/figures/gdialog-msgbox.png
share/gnome/help/gdialog/C/figures/gdialog-yesno.png
share/gnome/help/gdialog/C/gdialog.xml
share/gnome/help/gdialog/C/legal.xml
share/gnome/help/gdialog/ja/figures/example-dialog.png
share/gnome/help/gdialog/ja/figures/gdialog-msgbox.png
share/gnome/help/gdialog/ja/figures/gdialog-yesno.png
share/gnome/help/gdialog/ja/gdialog.xml
share/gnome/help/gdialog/ja/legal.xml
share/gnome/help/gnome-calculator/C/figures/gcalc_window.png
share/gnome/help/gnome-calculator/C/gnome-calculator.xml
share/gnome/help/gnome-calculator/C/legal.xml
share/gnome/help/gnome-calculator/de/figures/gcalc-main.png
share/gnome/help/gnome-calculator/de/gnome-calculator.xml
share/gnome/help/gnome-calculator/de/legal.xml
share/gnome/help/gnome-calculator/es/figures/gcalc-main.png
share/gnome/help/gnome-calculator/es/gnome-calculator.xml
share/gnome/help/gnome-calculator/es/legal.xml
share/gnome/help/gnome-calculator/fr/figures/gcalc_window.png
share/gnome/help/gnome-calculator/fr/gnome-calculator.xml
share/gnome/help/gnome-calculator/fr/legal.xml
share/gnome/help/gnome-calculator/it/figures/gcalc-main.png
share/gnome/help/gnome-calculator/it/gnome-calculator.xml
share/gnome/help/gnome-calculator/it/legal.xml
share/gnome/help/gnome-calculator/ja/figures/gcalc_window.png
share/gnome/help/gnome-calculator/ja/gnome-calculator.xml
share/gnome/help/gnome-calculator/ja/legal.xml
share/gnome/help/gnome-calculator/ko/figures/gcalc_window.png
share/gnome/help/gnome-calculator/ko/gnome-calculator.xml
share/gnome/help/gnome-calculator/ko/legal.xml
share/gnome/help/gnome-calculator/sv/figures/gcalc_window.png
share/gnome/help/gnome-calculator/sv/gnome-calculator.xml
share/gnome/help/gnome-calculator/sv/legal.xml
share/gnome/help/gnome-calculator/zh_CN/figures/gcalc_window.png
share/gnome/help/gnome-calculator/zh_CN/gnome-calculator.xml
share/gnome/help/gnome-calculator/zh_CN/legal.xml
share/gnome/help/gnome-calculator/zh_TW/figures/gcalc_window.png
share/gnome/help/gnome-calculator/zh_TW/gnome-calculator.xml
share/gnome/help/gnome-calculator/zh_TW/legal.xml
share/gnome/help/gnome-character-map/C/figures/gnome-character-map.png
share/gnome/help/gnome-character-map/C/gnome-character-map.xml
share/gnome/help/gnome-character-map/C/legal.xml
share/gnome/help/gnome-character-map/de/figures/gnome-character-map.png
share/gnome/help/gnome-character-map/de/gnome-character-map.xml
share/gnome/help/gnome-character-map/de/legal.xml
share/gnome/help/gnome-character-map/es/figures/gnome-character-map.png
share/gnome/help/gnome-character-map/es/gnome-character-map.xml
share/gnome/help/gnome-character-map/es/legal.xml
share/gnome/help/gnome-character-map/fr/figures/gnome-character-map.png
share/gnome/help/gnome-character-map/fr/gnome-character-map.xml
share/gnome/help/gnome-character-map/fr/legal.xml
share/gnome/help/gnome-character-map/it/figures/gnome-character-map.png
share/gnome/help/gnome-character-map/it/gnome-character-map.xml
share/gnome/help/gnome-character-map/it/legal.xml
share/gnome/help/gnome-character-map/ja/figures/gnome-character-map.png
share/gnome/help/gnome-character-map/ja/gnome-character-map.xml
share/gnome/help/gnome-character-map/ja/legal.xml
share/gnome/help/gnome-character-map/ko/figures/gnome-character-map.png
share/gnome/help/gnome-character-map/ko/gnome-character-map.xml
share/gnome/help/gnome-character-map/ko/legal.xml
share/gnome/help/gnome-character-map/sv/figures/gnome-character-map.png
share/gnome/help/gnome-character-map/sv/gnome-character-map.xml
share/gnome/help/gnome-character-map/sv/legal.xml
share/gnome/help/gnome-character-map/zh_CN/figures/gnome-character-map.png
share/gnome/help/gnome-character-map/zh_CN/gnome-character-map.xml
share/gnome/help/gnome-character-map/zh_CN/legal.xml
share/gnome/help/gnome-character-map/zh_TW/figures/gnome-character-map.png
share/gnome/help/gnome-character-map/zh_TW/gnome-character-map.xml
share/gnome/help/gnome-character-map/zh_TW/legal.xml
share/gnome/help/gnome-dictionary/C/figures/gdict_applet.png
share/gnome/help/gnome-dictionary/C/figures/gdict_window.png
share/gnome/help/gnome-dictionary/C/gnome-dictionary.xml
share/gnome/help/gnome-dictionary/C/legal.xml
share/gnome/help/gnome-dictionary/ja/figures/gdict_applet.png
share/gnome/help/gnome-dictionary/ja/figures/gdict_window.png
share/gnome/help/gnome-dictionary/ja/gnome-dictionary.xml
share/gnome/help/gnome-dictionary/ja/legal.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/de/figures/gnome-search-tool_window.png
share/gnome/help/gnome-search-tool/de/gnome-search-tool.xml
share/gnome/help/gnome-search-tool/de/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/es/legal.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/fr/legal.xml
share/gnome/help/gnome-search-tool/it/figures/gnome-search-tool_window.png
share/gnome/help/gnome-search-tool/it/gnome-search-tool.xml
share/gnome/help/gnome-search-tool/it/legal.xml
share/gnome/help/gnome-search-tool/ja/figures/gnome-search-tool_window.png
share/gnome/help/gnome-search-tool/ja/gnome-search-tool.xml
share/gnome/help/gnome-search-tool/ja/legal.xml
share/gnome/help/gnome-search-tool/ko/figures/gnome-search-tool_window.png
share/gnome/help/gnome-search-tool/ko/gnome-search-tool.xml
share/gnome/help/gnome-search-tool/ko/legal.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/sv/legal.xml
share/gnome/help/gnome-search-tool/zh_CN/figures/gnome-search-tool_window.png
share/gnome/help/gnome-search-tool/zh_CN/gnome-search-tool.xml
share/gnome/help/gnome-search-tool/zh_CN/legal.xml
share/gnome/help/gnome-search-tool/zh_TW/figures/gnome-search-tool_window.png
share/gnome/help/gnome-search-tool/zh_TW/gnome-search-tool.xml
share/gnome/help/gnome-search-tool/zh_TW/legal.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/de/figures/syslog_window.png
share/gnome/help/gnome-system-log/de/gnome-system-log.xml
share/gnome/help/gnome-system-log/de/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/es/legal.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/fr/legal.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/it/legal.xml
share/gnome/help/gnome-system-log/ja/figures/syslog_window.png
share/gnome/help/gnome-system-log/ja/gnome-system-log.xml
share/gnome/help/gnome-system-log/ja/legal.xml
share/gnome/help/gnome-system-log/ko/figures/syslog_window.png
share/gnome/help/gnome-system-log/ko/gnome-system-log.xml
share/gnome/help/gnome-system-log/ko/legal.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/sv/legal.xml
share/gnome/help/gnome-system-log/zh_CN/figures/syslog_window.png
share/gnome/help/gnome-system-log/zh_CN/gnome-system-log.xml
share/gnome/help/gnome-system-log/zh_CN/legal.xml
share/gnome/help/gnome-system-log/zh_TW/figures/syslog_window.png
share/gnome/help/gnome-system-log/zh_TW/gnome-system-log.xml
share/gnome/help/gnome-system-log/zh_TW/legal.xml
share/gnome/omf/gnome-utils/gdialog-C.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gdialog-C.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gdialog-ja.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gdialog-ja.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-calculator-C.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-calculator-C.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-calculator-de.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-calculator-de.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-calculator-es.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-calculator-es.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-calculator-fr.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-calculator-fr.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-calculator-it.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-calculator-it.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-calculator-ja.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-calculator-ja.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-calculator-ko.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-calculator-ko.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-calculator-sv.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-calculator-sv.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-calculator-zh_CN.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-calculator-zh_CN.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-calculator-zh_TW.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-calculator-zh_TW.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-character-map-C.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-character-map-C.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-character-map-de.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-character-map-de.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-character-map-es.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-character-map-es.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-character-map-fr.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-character-map-fr.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-character-map-it.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-character-map-it.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-character-map-ja.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-character-map-ja.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-character-map-ko.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-character-map-ko.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-character-map-sv.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-character-map-sv.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-character-map-zh_CN.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-character-map-zh_CN.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-character-map-zh_TW.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-character-map-zh_TW.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-dictionary-C.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-dictionary-C.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-dictionary-ja.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-dictionary-ja.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-search-tool-C.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-C.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-search-tool-de.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-de.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-search-tool-es.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-es.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-search-tool-fr.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-fr.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-search-tool-it.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-it.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-search-tool-ja.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-ja.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-search-tool-ko.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-ko.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-search-tool-sv.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-sv.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-search-tool-zh_CN.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-zh_CN.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-search-tool-zh_TW.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-zh_TW.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-system-log-C.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-system-log-C.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-system-log-de.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-system-log-de.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-system-log-es.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-system-log-es.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-system-log-fr.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-system-log-fr.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-system-log-it.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-system-log-it.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-system-log-ja.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-system-log-ja.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-system-log-ko.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-system-log-ko.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-system-log-sv.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-system-log-sv.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-system-log-zh_CN.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-system-log-zh_CN.omf 2>/dev/null || /usr/bin/true
share/gnome/omf/gnome-utils/gnome-system-log-zh_TW.omf
@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-utils/gnome-system-log-zh_TW.omf 2>/dev/null || /usr/bin/true
share/gnome/pixmaps/gdict.png
share/gnome/pixmaps/gnome-character-map.png
share/gnome/pixmaps/gnome-searchtool.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/ca/LC_MESSAGES/gnome-utils-2.0.mo
share/locale/cs/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_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/he/LC_MESSAGES/gnome-utils-2.0.mo
share/locale/hi/LC_MESSAGES/gnome-utils-2.0.mo
share/locale/hu/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/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/nl/LC_MESSAGES/gnome-utils-2.0.mo
share/locale/nn/LC_MESSAGES/gnome-utils-2.0.mo
share/locale/no/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/sk/LC_MESSAGES/gnome-utils-2.0.mo
share/locale/sl/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/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/zh_CN/LC_MESSAGES/gnome-utils-2.0.mo
share/locale/zh_TW/LC_MESSAGES/gnome-utils-2.0.mo
@dirrm share/gnome/pixmaps/gnome-system-log
@dirrm share/gnome/help/gnome-system-log/zh_TW/figures
@dirrm share/gnome/help/gnome-system-log/zh_TW
@dirrm share/gnome/help/gnome-system-log/zh_CN/figures
@dirrm share/gnome/help/gnome-system-log/zh_CN
@dirrm share/gnome/help/gnome-system-log/sv/figures
@dirrm share/gnome/help/gnome-system-log/sv
@dirrm share/gnome/help/gnome-system-log/ko/figures
@dirrm share/gnome/help/gnome-system-log/ko
@dirrm share/gnome/help/gnome-system-log/ja/figures
@dirrm share/gnome/help/gnome-system-log/ja
@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/de/figures
@dirrm share/gnome/help/gnome-system-log/de
@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/zh_TW/figures
@dirrm share/gnome/help/gnome-search-tool/zh_TW
@dirrm share/gnome/help/gnome-search-tool/zh_CN/figures
@dirrm share/gnome/help/gnome-search-tool/zh_CN
@dirrm share/gnome/help/gnome-search-tool/sv/figures
@dirrm share/gnome/help/gnome-search-tool/sv
@dirrm share/gnome/help/gnome-search-tool/ko/figures
@dirrm share/gnome/help/gnome-search-tool/ko
@dirrm share/gnome/help/gnome-search-tool/ja/figures
@dirrm share/gnome/help/gnome-search-tool/ja
@dirrm share/gnome/help/gnome-search-tool/it/figures
@dirrm share/gnome/help/gnome-search-tool/it
@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/de/figures
@dirrm share/gnome/help/gnome-search-tool/de
@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/ja/figures
@dirrm share/gnome/help/gnome-dictionary/ja
@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/gnome-character-map/zh_TW/figures
@dirrm share/gnome/help/gnome-character-map/zh_TW
@dirrm share/gnome/help/gnome-character-map/zh_CN/figures
@dirrm share/gnome/help/gnome-character-map/zh_CN
@dirrm share/gnome/help/gnome-character-map/sv/figures
@dirrm share/gnome/help/gnome-character-map/sv
@dirrm share/gnome/help/gnome-character-map/ko/figures
@dirrm share/gnome/help/gnome-character-map/ko
@dirrm share/gnome/help/gnome-character-map/ja/figures
@dirrm share/gnome/help/gnome-character-map/ja
@dirrm share/gnome/help/gnome-character-map/it/figures
@dirrm share/gnome/help/gnome-character-map/it
@dirrm share/gnome/help/gnome-character-map/fr/figures
@dirrm share/gnome/help/gnome-character-map/fr
@dirrm share/gnome/help/gnome-character-map/es/figures
@dirrm share/gnome/help/gnome-character-map/es
@dirrm share/gnome/help/gnome-character-map/de/figures
@dirrm share/gnome/help/gnome-character-map/de
@dirrm share/gnome/help/gnome-character-map/C/figures
@dirrm share/gnome/help/gnome-character-map/C
@dirrm share/gnome/help/gnome-character-map
@dirrm share/gnome/help/gnome-calculator/zh_TW/figures
@dirrm share/gnome/help/gnome-calculator/zh_TW
@dirrm share/gnome/help/gnome-calculator/zh_CN/figures
@dirrm share/gnome/help/gnome-calculator/zh_CN
@dirrm share/gnome/help/gnome-calculator/sv/figures
@dirrm share/gnome/help/gnome-calculator/sv
@dirrm share/gnome/help/gnome-calculator/ko/figures
@dirrm share/gnome/help/gnome-calculator/ko
@dirrm share/gnome/help/gnome-calculator/ja/figures
@dirrm share/gnome/help/gnome-calculator/ja
@dirrm share/gnome/help/gnome-calculator/it/figures
@dirrm share/gnome/help/gnome-calculator/it
@dirrm share/gnome/help/gnome-calculator/fr/figures
@dirrm share/gnome/help/gnome-calculator/fr
@dirrm share/gnome/help/gnome-calculator/es/figures
@dirrm share/gnome/help/gnome-calculator/es
@dirrm share/gnome/help/gnome-calculator/de/figures
@dirrm share/gnome/help/gnome-calculator/de
@dirrm share/gnome/help/gnome-calculator/C/figures
@dirrm share/gnome/help/gnome-calculator/C
@dirrm share/gnome/help/gnome-calculator
@dirrm share/gnome/help/gdialog/ja/figures
@dirrm share/gnome/help/gdialog/ja
@dirrm share/gnome/help/gdialog/C/figures
@dirrm share/gnome/help/gdialog/C
@dirrm share/gnome/gnome-system-log
@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-system-log
@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome-dictionary
@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-system-log
@dirrm etc/gconf/gconf.xml.defaults/apps/gnome-dictionary
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gdialog-C.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gdialog-ja.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-calculator-C.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-calculator-de.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-calculator-es.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-calculator-fr.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-calculator-it.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-calculator-ja.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-calculator-ko.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-calculator-sv.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-calculator-zh_CN.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-calculator-zh_TW.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-character-map-C.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-character-map-de.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-character-map-es.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-character-map-fr.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-character-map-it.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-character-map-ja.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-character-map-ko.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-character-map-sv.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-character-map-zh_CN.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-character-map-zh_TW.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-dictionary-C.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-dictionary-ja.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-C.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-de.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-es.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-fr.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-it.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-ja.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-ko.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-sv.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-zh_CN.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-search-tool-zh_TW.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-system-log-C.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-system-log-de.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-system-log-es.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-system-log-fr.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-system-log-it.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-system-log-ja.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-system-log-ko.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-system-log-sv.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-system-log-zh_CN.omf 2>/dev/null || /usr/bin/true
@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-utils/gnome-system-log-zh_TW.omf 2>/dev/null || /usr/bin/true