summaryrefslogtreecommitdiffstats
path: root/sysutils/gnome-system-tools
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-11-08 07:20:22 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-11-08 07:20:22 +0800
commitecc692c609745ed2590ee410fcf60f8fc5577767 (patch)
tree804fc05006975ef53fbc334db1f4ffa42ff9359f /sysutils/gnome-system-tools
parent3a142666db7f6854784739853cd212ba74b8b6bd (diff)
downloadmarcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar
marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar.gz
marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar.bz2
marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar.lz
marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar.xz
marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar.zst
marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.zip
Remove these ports now that they have been merged into the ports tree.
Next stop, GNOME 2.9! git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3045 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'sysutils/gnome-system-tools')
-rw-r--r--sysutils/gnome-system-tools/Makefile44
-rw-r--r--sysutils/gnome-system-tools/distinfo2
-rw-r--r--sysutils/gnome-system-tools/files/patch-backends_replace.pl.in34
-rw-r--r--sysutils/gnome-system-tools/files/patch-backends_service-list.pl.in10
-rw-r--r--sysutils/gnome-system-tools/files/patch-configure11
-rw-r--r--sysutils/gnome-system-tools/pkg-descr10
-rw-r--r--sysutils/gnome-system-tools/pkg-plist257
7 files changed, 0 insertions, 368 deletions
diff --git a/sysutils/gnome-system-tools/Makefile b/sysutils/gnome-system-tools/Makefile
deleted file mode 100644
index ea712a90a..000000000
--- a/sysutils/gnome-system-tools/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# New ports collection makefile for: gnomesystemtools
-# Date created: 17 May 2004
-# Whom: Adam Weinberger <adamw@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= gnomesystemtools
-PORTVERSION= 1.0.0
-PORTREVISION= 2
-CATEGORIES= sysutils gnome
-MASTER_SITES= ${MASTER_SITE_GNOME}
-MASTER_SITE_SUBDIR= sources/gnome-system-tools/1.0
-DISTNAME= gnome-system-tools-${PORTVERSION}
-DIST_SUBDIR= gnome2
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= Tools to configure workstations
-
-USE_BZIP2= yes
-USE_GMAKE= yes
-USE_PERL5= yes
-USE_X_PREFIX= yes
-USE_GNOME= gnomehack gnomeprefix gnometarget intlhack libgnomeui
-USE_LIBTOOL_VER=15
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
-
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} > 500000
-CONFIGURE_ARGS+= --enable-services
-PLIST_SUB+= SERVICES=""
-.else
-PLIST_SUB+= SERVICES="@comment "
-.endif
-
-.if ${PERL_LEVEL} < 500600
-post-configure:
- @${FIND} ${WRKSRC}/backends \( -name "*.pl" -or -name "*-conf" \) | \
- ${XARGS} ${REINPLACE_CMD} -e 's|@scriptsdir|[@]scriptsdir|g'
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/sysutils/gnome-system-tools/distinfo b/sysutils/gnome-system-tools/distinfo
deleted file mode 100644
index 9d0dc16e5..000000000
--- a/sysutils/gnome-system-tools/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (gnome2/gnome-system-tools-1.0.0.tar.bz2) = 7f85cab03aeffdb9c57925fe2be0e001
-SIZE (gnome2/gnome-system-tools-1.0.0.tar.bz2) = 2719276
diff --git a/sysutils/gnome-system-tools/files/patch-backends_replace.pl.in b/sysutils/gnome-system-tools/files/patch-backends_replace.pl.in
deleted file mode 100644
index 7f7cce28e..000000000
--- a/sysutils/gnome-system-tools/files/patch-backends_replace.pl.in
+++ /dev/null
@@ -1,34 +0,0 @@
---- backends/replace.pl.in.orig Fri Oct 22 02:41:56 2004
-+++ backends/replace.pl.in Fri Oct 22 02:42:48 2004
-@@ -1113,19 +1113,19 @@
-
- return -1 if (!&gst_replace_interfaces_iface_stanza_locate ($buff, \$line_no, $iface));
-
-- delete $$buff[$line_no];
-+ splice @{$buff},$line_no,1;
- $line_no ++;
-
- while (&gst_replace_interfaces_get_next_option ($buff, \$line_no) != -1)
- {
-- delete $$buff[$line_no];
-+ splice @{$buff},$line_no,1;
- $line_no ++;
- }
-
- $line_no = 0;
- if (&gst_replace_interfaces_auto_stanza_locate ($buff, \$line_no, $iface))
- {
-- delete $$buff[$line_no];
-+ splice @{$buff},$line_no,1;
- }
-
- &gst_file_buffer_clean ($buff);
-@@ -1663,7 +1663,7 @@
- }
- else
- {
-- delete $$buff[$i];
-+ splice @{$buff},$i,1;
- }
- }
- }
diff --git a/sysutils/gnome-system-tools/files/patch-backends_service-list.pl.in b/sysutils/gnome-system-tools/files/patch-backends_service-list.pl.in
deleted file mode 100644
index 16861791c..000000000
--- a/sysutils/gnome-system-tools/files/patch-backends_service-list.pl.in
+++ /dev/null
@@ -1,10 +0,0 @@
---- backends/service-list.pl.in.orig Sun Sep 19 13:20:02 2004
-+++ backends/service-list.pl.in Sun Sep 19 13:20:10 2004
-@@ -225,6 +225,7 @@
- "atm3\.sh",
- "ccd",
- "cleanvar",
-+ "cleartmp",
- "devdb",
- "devfs",
- "dhclient",
diff --git a/sysutils/gnome-system-tools/files/patch-configure b/sysutils/gnome-system-tools/files/patch-configure
deleted file mode 100644
index b854cde3a..000000000
--- a/sysutils/gnome-system-tools/files/patch-configure
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.orig Wed May 26 12:02:51 2004
-+++ configure Wed May 26 12:03:23 2004
-@@ -22623,7 +22623,7 @@
- GST_CFLAGS="$GST_DEPENDS_CFLAGS $GST_CRACK_LIB_CFLAGS $GST_DEPRECATED_FLAGS"
-
- GST_TOOL_LIBS="$GST_LIBS -lutil \$(top_builddir)/src/common/libsetuptool.a"
--GST_TOOL_CFLAGS="$GST_CFLAGS -I\$(top_srcdir)/src/common"
-+GST_TOOL_CFLAGS="-I\$(top_srcdir)/src/common $GST_CFLAGS"
-
- GST_TOOL_CLEANFILES="\$(desktop) \$(desktop).in"
- GST_TOOL_EXTRA_DIST="\$(toolpixmaps) \$(desktop).in.in"
diff --git a/sysutils/gnome-system-tools/pkg-descr b/sysutils/gnome-system-tools/pkg-descr
deleted file mode 100644
index b0b69e539..000000000
--- a/sysutils/gnome-system-tools/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-Various tools to assist in administration and configuration of a workstation.
-Included are tools to:
-
- * Administer user and group accounts
- * Change the date, time, and time zone
- * Set up and configure network interfaces
- * Modify bootloader settings
- * Start, stop, and modify system services
-
-WWW: http://www.gnome.org/projects/gst/
diff --git a/sysutils/gnome-system-tools/pkg-plist b/sysutils/gnome-system-tools/pkg-plist
deleted file mode 100644
index 1ccb07eb1..000000000
--- a/sysutils/gnome-system-tools/pkg-plist
+++ /dev/null
@@ -1,257 +0,0 @@
-bin/network-admin
-%%SERVICES%%bin/services-admin
-bin/time-admin
-bin/users-admin
-etc/X11/sysconfig/network.desktop
-%%SERVICES%%etc/X11/sysconfig/services.desktop
-etc/X11/sysconfig/time.desktop
-etc/X11/sysconfig/users.desktop
-@unexec env GCONF_CONFIG_SOURCE=xml::%D/etc/gconf/gconf.xml.defaults gconftool-2 --makefile-uninstall-rule %D/etc/gconf/schemas/gnome-system-tools.schemas > /dev/null || /usr/bin/true
-etc/gconf/schemas/gnome-system-tools.schemas
-@exec env GCONF_CONFIG_SOURCE=xml::%D/etc/gconf/gconf.xml.defaults gconftool-2 --makefile-install-rule %D/etc/gconf/schemas/gnome-system-tools.schemas > /dev/null || /usr/bin/true
-libdata/pkgconfig/gnome-system-tools.pc
-libdata/pkgconfig/system-tools-backends.pc
-share/gnome-system-tools/interfaces/boot.glade
-share/gnome-system-tools/interfaces/common.glade
-share/gnome-system-tools/interfaces/disks.glade
-share/gnome-system-tools/interfaces/network.glade
-share/gnome-system-tools/interfaces/services.glade
-share/gnome-system-tools/interfaces/time.glade
-share/gnome-system-tools/interfaces/users.glade
-share/gnome-system-tools/pixmaps/16_ethernet.xpm
-share/gnome-system-tools/pixmaps/16_loopback.xpm
-share/gnome-system-tools/pixmaps/16_plip.xpm
-share/gnome-system-tools/pixmaps/16_ppp.xpm
-share/gnome-system-tools/pixmaps/black_panther.png
-share/gnome-system-tools/pixmaps/boot.png
-share/gnome-system-tools/pixmaps/computer.png
-share/gnome-system-tools/pixmaps/conectiva.png
-share/gnome-system-tools/pixmaps/connection-ethernet.png
-share/gnome-system-tools/pixmaps/connection-modem.png
-share/gnome-system-tools/pixmaps/debian.png
-share/gnome-system-tools/pixmaps/fedora.png
-share/gnome-system-tools/pixmaps/freebsd.png
-share/gnome-system-tools/pixmaps/gentoo.png
-share/gnome-system-tools/pixmaps/gnome-dev-cdrom-data.png
-share/gnome-system-tools/pixmaps/gnome-dev-cdrom-mixed.png
-share/gnome-system-tools/pixmaps/irda-16.png
-share/gnome-system-tools/pixmaps/irda-48.png
-share/gnome-system-tools/pixmaps/mandrake.png
-share/gnome-system-tools/pixmaps/nameresolution.png
-share/gnome-system-tools/pixmaps/nameresolution_alias.png
-share/gnome-system-tools/pixmaps/nameresolution_id.png
-share/gnome-system-tools/pixmaps/network.png
-share/gnome-system-tools/pixmaps/openna.png
-share/gnome-system-tools/pixmaps/pld.png
-share/gnome-system-tools/pixmaps/plip-48.png
-share/gnome-system-tools/pixmaps/ppp.png
-share/gnome-system-tools/pixmaps/reading.png
-share/gnome-system-tools/pixmaps/redhat.png
-share/gnome-system-tools/pixmaps/server.png
-share/gnome-system-tools/pixmaps/services.png
-share/gnome-system-tools/pixmaps/settings.png
-share/gnome-system-tools/pixmaps/slackware.png
-share/gnome-system-tools/pixmaps/specifix.png
-share/gnome-system-tools/pixmaps/suse.png
-share/gnome-system-tools/pixmaps/talk-userlist.png
-share/gnome-system-tools/pixmaps/time.png
-share/gnome-system-tools/pixmaps/timezone.png
-share/gnome-system-tools/pixmaps/turbolinux.png
-share/gnome-system-tools/pixmaps/unsupported-distro.png
-share/gnome-system-tools/pixmaps/users-groups.png
-share/gnome-system-tools/pixmaps/users.png
-share/gnome-system-tools/pixmaps/vine.png
-share/gnome-system-tools/pixmaps/wavelan-16.png
-share/gnome-system-tools/pixmaps/wavelan-48.png
-share/gnome-system-tools/pixmaps/world_map-960.png
-share/gnome/applications/network.desktop
-%%SERVICES%%share/gnome/applications/services.desktop
-share/gnome/applications/time.desktop
-share/gnome/applications/users.desktop
-share/gnome/help/boot-admin/C/boot-admin.xml
-share/gnome/help/boot-admin/C/figures/boot-tool.png
-share/gnome/help/boot-admin/C/legal.xml
-share/gnome/help/network-admin/C/figures/network-tool.png
-share/gnome/help/network-admin/C/legal.xml
-share/gnome/help/network-admin/C/network-admin.xml
-share/gnome/help/services-admin/C/figures/service-properties.png
-share/gnome/help/services-admin/C/figures/services-tool.png
-share/gnome/help/services-admin/C/legal.xml
-share/gnome/help/services-admin/C/services-admin.xml
-share/gnome/help/time-admin/C/figures/time-map.png
-share/gnome/help/time-admin/C/figures/time-servers.png
-share/gnome/help/time-admin/C/figures/time-tool.png
-share/gnome/help/time-admin/C/legal.xml
-share/gnome/help/time-admin/C/time-admin.xml
-share/gnome/help/users-admin/C/figures/users-tool.png
-share/gnome/help/users-admin/C/legal.xml
-share/gnome/help/users-admin/C/users-admin.xml
-share/gnome/omf/gnome-system-tools/boot-admin-C.omf
-@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-system-tools/boot-admin-C.omf 2>/dev/null || /usr/bin/true
-share/gnome/omf/gnome-system-tools/network-admin-C.omf
-@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-system-tools/network-admin-C.omf 2>/dev/null || /usr/bin/true
-share/gnome/omf/gnome-system-tools/services-admin-C.omf
-@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-system-tools/services-admin-C.omf 2>/dev/null || /usr/bin/true
-share/gnome/omf/gnome-system-tools/time-admin-C.omf
-@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-system-tools/time-admin-C.omf 2>/dev/null || /usr/bin/true
-share/gnome/omf/gnome-system-tools/users-admin-C.omf
-@exec scrollkeeper-install -q %D/share/gnome/omf/gnome-system-tools/users-admin-C.omf 2>/dev/null || /usr/bin/true
-share/locale/am/LC_MESSAGES/gnome-system-tools.mo
-share/locale/ar/LC_MESSAGES/gnome-system-tools.mo
-share/locale/ar/LC_MESSAGES/setup-tools-backends.mo
-share/locale/az/LC_MESSAGES/gnome-system-tools.mo
-share/locale/az/LC_MESSAGES/setup-tools-backends.mo
-share/locale/bg/LC_MESSAGES/gnome-system-tools.mo
-share/locale/bn/LC_MESSAGES/setup-tools-backends.mo
-share/locale/bn/LC_MESSAGES/gnome-system-tools.mo
-share/locale/bs/LC_MESSAGES/setup-tools-backends.mo
-share/locale/ca/LC_MESSAGES/gnome-system-tools.mo
-share/locale/ca/LC_MESSAGES/setup-tools-backends.mo
-share/locale/cs/LC_MESSAGES/gnome-system-tools.mo
-share/locale/cs/LC_MESSAGES/setup-tools-backends.mo
-share/locale/da/LC_MESSAGES/gnome-system-tools.mo
-share/locale/da/LC_MESSAGES/setup-tools-backends.mo
-share/locale/de/LC_MESSAGES/gnome-system-tools.mo
-share/locale/de/LC_MESSAGES/setup-tools-backends.mo
-share/locale/el/LC_MESSAGES/gnome-system-tools.mo
-share/locale/el/LC_MESSAGES/setup-tools-backends.mo
-share/locale/en_CA/LC_MESSAGES/gnome-system-tools.mo
-share/locale/en_CA/LC_MESSAGES/setup-tools-backends.mo
-share/locale/en_GB/LC_MESSAGES/gnome-system-tools.mo
-share/locale/en_GB/LC_MESSAGES/setup-tools-backends.mo
-share/locale/es/LC_MESSAGES/gnome-system-tools.mo
-share/locale/es/LC_MESSAGES/setup-tools-backends.mo
-share/locale/et/LC_MESSAGES/gnome-system-tools.mo
-share/locale/eu/LC_MESSAGES/gnome-system-tools.mo
-share/locale/eu/LC_MESSAGES/setup-tools-backends.mo
-share/locale/fi/LC_MESSAGES/gnome-system-tools.mo
-share/locale/fi/LC_MESSAGES/setup-tools-backends.mo
-share/locale/fr/LC_MESSAGES/gnome-system-tools.mo
-share/locale/ga/LC_MESSAGES/gnome-system-tools.mo
-share/locale/gl/LC_MESSAGES/gnome-system-tools.mo
-share/locale/gu/LC_MESSAGES/setup-tools-backends.mo
-share/locale/gu/LC_MESSAGES/gnome-system-tools.mo
-share/locale/hr/LC_MESSAGES/gnome-system-tools.mo
-share/locale/hr/LC_MESSAGES/setup-tools-backends.mo
-share/locale/hu/LC_MESSAGES/gnome-system-tools.mo
-share/locale/it/LC_MESSAGES/gnome-system-tools.mo
-share/locale/ja/LC_MESSAGES/gnome-system-tools.mo
-share/locale/ja/LC_MESSAGES/setup-tools-backends.mo
-share/locale/ko/LC_MESSAGES/gnome-system-tools.mo
-share/locale/ko/LC_MESSAGES/setup-tools-backends.mo
-share/locale/lt/LC_MESSAGES/gnome-system-tools.mo
-share/locale/lt/LC_MESSAGES/setup-tools-backends.mo
-share/locale/lv/LC_MESSAGES/gnome-system-tools.mo
-share/locale/mk/LC_MESSAGES/gnome-system-tools.mo
-share/locale/ml/LC_MESSAGES/gnome-system-tools.mo
-share/locale/mn/LC_MESSAGES/gnome-system-tools.mo
-share/locale/ms/LC_MESSAGES/gnome-system-tools.mo
-share/locale/ms/LC_MESSAGES/setup-tools-backends.mo
-share/locale/nb/LC_MESSAGES/setup-tools-backends.mo
-share/locale/nl/LC_MESSAGES/gnome-system-tools.mo
-share/locale/nl/LC_MESSAGES/setup-tools-backends.mo
-share/locale/nn/LC_MESSAGES/gnome-system-tools.mo
-share/locale/no/LC_MESSAGES/gnome-system-tools.mo
-share/locale/no/LC_MESSAGES/setup-tools-backends.mo
-share/locale/pa/LC_MESSAGES/setup-tools-backends.mo
-share/locale/pa/LC_MESSAGES/gnome-system-tools.mo
-share/locale/pl/LC_MESSAGES/gnome-system-tools.mo
-share/locale/pl/LC_MESSAGES/setup-tools-backends.mo
-share/locale/pt/LC_MESSAGES/gnome-system-tools.mo
-share/locale/pt/LC_MESSAGES/setup-tools-backends.mo
-share/locale/pt_BR/LC_MESSAGES/gnome-system-tools.mo
-share/locale/pt_BR/LC_MESSAGES/setup-tools-backends.mo
-share/locale/ro/LC_MESSAGES/gnome-system-tools.mo
-share/locale/ro/LC_MESSAGES/setup-tools-backends.mo
-share/locale/ru/LC_MESSAGES/gnome-system-tools.mo
-share/locale/sk/LC_MESSAGES/gnome-system-tools.mo
-share/locale/sq/LC_MESSAGES/gnome-system-tools.mo
-share/locale/sq/LC_MESSAGES/setup-tools-backends.mo
-share/locale/sr/LC_MESSAGES/gnome-system-tools.mo
-share/locale/sr/LC_MESSAGES/setup-tools-backends.mo
-share/locale/sr@Latn/LC_MESSAGES/gnome-system-tools.mo
-share/locale/sr@Latn/LC_MESSAGES/setup-tools-backends.mo
-share/locale/sv/LC_MESSAGES/gnome-system-tools.mo
-share/locale/sv/LC_MESSAGES/setup-tools-backends.mo
-share/locale/ta/LC_MESSAGES/gnome-system-tools.mo
-share/locale/ta/LC_MESSAGES/setup-tools-backends.mo
-share/locale/tr/LC_MESSAGES/gnome-system-tools.mo
-share/locale/uk/LC_MESSAGES/gnome-system-tools.mo
-share/locale/uk/LC_MESSAGES/setup-tools-backends.mo
-share/locale/vi/LC_MESSAGES/gnome-system-tools.mo
-share/locale/wa/LC_MESSAGES/gnome-system-tools.mo
-share/locale/zh_CN/LC_MESSAGES/gnome-system-tools.mo
-share/locale/zh_CN/LC_MESSAGES/setup-tools-backends.mo
-share/locale/zh_TW/LC_MESSAGES/gnome-system-tools.mo
-share/locale/zh_TW/LC_MESSAGES/setup-tools-backends.mo
-share/setup-tool-backends/files/debian_ipchains
-share/setup-tool-backends/scripts/boot-conf
-share/setup-tool-backends/scripts/boot-grub.pl
-share/setup-tool-backends/scripts/boot-lilo.pl
-share/setup-tool-backends/scripts/boot-yaboot.pl
-share/setup-tool-backends/scripts/boot.pl
-share/setup-tool-backends/scripts/debug.pl
-share/setup-tool-backends/scripts/dhcpd-conf
-share/setup-tool-backends/scripts/dhcpd.pl
-share/setup-tool-backends/scripts/disks-conf
-share/setup-tool-backends/scripts/display-conf
-share/setup-tool-backends/scripts/file.pl
-share/setup-tool-backends/scripts/filesys.pl
-share/setup-tool-backends/scripts/font-conf
-share/setup-tool-backends/scripts/font.pl
-share/setup-tool-backends/scripts/general.pl
-share/setup-tool-backends/scripts/guess_system.sh
-share/setup-tool-backends/scripts/internetsharing-conf
-share/setup-tool-backends/scripts/ishare.pl
-share/setup-tool-backends/scripts/media.pl
-share/setup-tool-backends/scripts/memory-conf
-share/setup-tool-backends/scripts/mouse-conf
-share/setup-tool-backends/scripts/network-conf
-share/setup-tool-backends/scripts/network.pl
-share/setup-tool-backends/scripts/package-conf
-share/setup-tool-backends/scripts/parse.pl
-share/setup-tool-backends/scripts/partition.pl
-share/setup-tool-backends/scripts/platform.pl
-share/setup-tool-backends/scripts/print-conf
-share/setup-tool-backends/scripts/print.pl
-share/setup-tool-backends/scripts/replace.pl
-share/setup-tool-backends/scripts/report.pl
-share/setup-tool-backends/scripts/service-list.pl
-share/setup-tool-backends/scripts/service.pl
-share/setup-tool-backends/scripts/services-conf
-share/setup-tool-backends/scripts/share.pl
-share/setup-tool-backends/scripts/shares-conf
-share/setup-tool-backends/scripts/time-conf
-share/setup-tool-backends/scripts/tokenizer.pl
-share/setup-tool-backends/scripts/type1inst
-share/setup-tool-backends/scripts/users-conf
-share/setup-tool-backends/scripts/util.pl
-share/setup-tool-backends/scripts/x.pl
-share/setup-tool-backends/scripts/xml.pl
-@dirrm share/setup-tool-backends/scripts
-@dirrm share/setup-tool-backends/files
-@dirrm share/setup-tool-backends
-@dirrm share/gnome/omf/gnome-system-tools
-@dirrm share/gnome/help/users-admin/C/figures
-@dirrm share/gnome/help/users-admin/C
-@dirrm share/gnome/help/users-admin
-@dirrm share/gnome/help/time-admin/C/figures
-@dirrm share/gnome/help/time-admin/C
-@dirrm share/gnome/help/time-admin
-@dirrm share/gnome/help/services-admin/C/figures
-@dirrm share/gnome/help/services-admin/C
-@dirrm share/gnome/help/services-admin
-@dirrm share/gnome/help/network-admin/C/figures
-@dirrm share/gnome/help/network-admin/C
-@dirrm share/gnome/help/network-admin
-@dirrm share/gnome/help/boot-admin/C/figures
-@dirrm share/gnome/help/boot-admin/C
-@dirrm share/gnome/help/boot-admin
-@dirrm share/gnome-system-tools/pixmaps
-@dirrm share/gnome-system-tools/interfaces
-@dirrm share/gnome-system-tools
-@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-system-tools/boot-admin-C.omf 2>/dev/null || /usr/bin/true
-@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-system-tools/network-admin-C.omf 2>/dev/null || /usr/bin/true
-@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-system-tools/services-admin-C.omf 2>/dev/null || /usr/bin/true
-@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-system-tools/time-admin-C.omf 2>/dev/null || /usr/bin/true
-@unexec scrollkeeper-uninstall -q %D/share/gnome/omf/gnome-system-tools/users-admin-C.omf 2>/dev/null || /usr/bin/true