summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-05-30 02:35:08 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-05-30 02:35:08 +0800
commit251e0434797a4b3cceb984d295cde9ddec449f79 (patch)
tree5008fdba93dcd1bce28373123656d1b27e038e30
parentb13156bb5df2d1185dc9a0193b3814c07eb21701 (diff)
downloadmarcuscom-ports-251e0434797a4b3cceb984d295cde9ddec449f79.tar
marcuscom-ports-251e0434797a4b3cceb984d295cde9ddec449f79.tar.gz
marcuscom-ports-251e0434797a4b3cceb984d295cde9ddec449f79.tar.bz2
marcuscom-ports-251e0434797a4b3cceb984d295cde9ddec449f79.tar.lz
marcuscom-ports-251e0434797a4b3cceb984d295cde9ddec449f79.tar.xz
marcuscom-ports-251e0434797a4b3cceb984d295cde9ddec449f79.tar.zst
marcuscom-ports-251e0434797a4b3cceb984d295cde9ddec449f79.zip
Update to 2.31.1.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14163 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--sysutils/gnome-system-tools/Makefile42
-rw-r--r--sysutils/gnome-system-tools/distinfo3
-rw-r--r--sysutils/gnome-system-tools/files/patch-src_users_user-settings.c31
-rw-r--r--sysutils/gnome-system-tools/pkg-descr10
-rw-r--r--sysutils/gnome-system-tools/pkg-plist582
5 files changed, 668 insertions, 0 deletions
diff --git a/sysutils/gnome-system-tools/Makefile b/sysutils/gnome-system-tools/Makefile
new file mode 100644
index 000000000..b66ee4e88
--- /dev/null
+++ b/sysutils/gnome-system-tools/Makefile
@@ -0,0 +1,42 @@
+# New ports collection makefile for: gnomesystemtools
+# Date created: 17 May 2004
+# Whom: Adam Weinberger <adamw@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom$
+#
+
+PORTNAME= gnome-system-tools
+PORTVERSION= 2.31.1
+CATEGORIES= sysutils gnome
+MASTER_SITES= GNOME
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Tools to configure workstations
+
+LIB_DEPENDS= oobs-1.4:${PORTSDIR}/devel/liboobs \
+ polkit-gtk-1.0:${PORTSDIR}/sysutils/polkit-gnome
+
+USE_BZIP2= yes
+USE_GMAKE= yes
+INSTALLS_ICONS= yes
+USE_GETTEXT= yes
+USE_LDCONFIG= yes
+GNOME_DESKTOP_VERSION=2
+USE_GNOME= gnomehack gnomeprefix intlhack nautilus2
+USE_AUTOTOOLS= libtool:22
+INSTALLS_OMF= yes
+CONFIGURE_ARGS= --enable-services
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+GLIB_SCHEMAS= org.gnome.system-tools.gschema.xml
+
+# can't use post-install: already in use by GLIB_SCHEMAS
+pre-install:
+ @${MKDIR} ${PREFIX}/share/glib-2.0/schemas
+ @${INSTALL_DATA} ${WRKSRC}/org.gnome.system-tools.gschema.xml \
+ ${PREFIX}/share/glib-2.0/schemas
+
+.include <bsd.port.mk>
diff --git a/sysutils/gnome-system-tools/distinfo b/sysutils/gnome-system-tools/distinfo
new file mode 100644
index 000000000..9ce9c9ead
--- /dev/null
+++ b/sysutils/gnome-system-tools/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/gnome-system-tools-2.31.1.tar.bz2) = 9d6bc701ad6eb4bc0e854f474fb74cf2
+SHA256 (gnome2/gnome-system-tools-2.31.1.tar.bz2) = 1e50ea798f21c5beb504f41d74025f00df315ef99892bb216bb4e9b6bd0fec89
+SIZE (gnome2/gnome-system-tools-2.31.1.tar.bz2) = 5407760
diff --git a/sysutils/gnome-system-tools/files/patch-src_users_user-settings.c b/sysutils/gnome-system-tools/files/patch-src_users_user-settings.c
new file mode 100644
index 000000000..c9fcbb653
--- /dev/null
+++ b/sysutils/gnome-system-tools/files/patch-src_users_user-settings.c
@@ -0,0 +1,31 @@
+--- src/users/user-settings.c.orig 2010-01-11 19:53:32.000000000 +0100
++++ src/users/user-settings.c 2010-01-20 15:42:10.000000000 +0100
+@@ -31,7 +31,15 @@
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <stdlib.h>
++#ifdef __FreeBSD__
++# include <sys/param.h>
++# if __FreeBSD_version >= 900007
++# define HAVE_UTMPX_H
++#include <utmpx.h>
++# else
+ #include <utmp.h>
++# endif
++#endif
+ #include <ctype.h>
+
+ #include "users-table.h"
+@@ -274,10 +282,10 @@ static void
+ set_login_length (GtkWidget *entry)
+ {
+ gint max_len;
+-#ifdef __FreeBSD__
++#if (defined(__FreeBSD__) && !defined(HAVE_UTMPX_H))
+ max_len = UT_NAMESIZE;
+ #else
+- struct utmp ut;
++ struct utmpx ut;
+
+ max_len = sizeof (ut.ut_user);
+ #endif
diff --git a/sysutils/gnome-system-tools/pkg-descr b/sysutils/gnome-system-tools/pkg-descr
new file mode 100644
index 000000000..b0b69e539
--- /dev/null
+++ b/sysutils/gnome-system-tools/pkg-descr
@@ -0,0 +1,10 @@
+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
new file mode 100644
index 000000000..0bfaa9786
--- /dev/null
+++ b/sysutils/gnome-system-tools/pkg-plist
@@ -0,0 +1,582 @@
+bin/network-admin
+bin/services-admin
+bin/shares-admin
+bin/time-admin
+bin/users-admin
+etc/gnome-system-tools/user-profiles.conf
+lib/nautilus/extensions-2.0/libnautilus-gst-shares.a
+lib/nautilus/extensions-2.0/libnautilus-gst-shares.la
+lib/nautilus/extensions-2.0/libnautilus-gst-shares.so
+libdata/pkgconfig/gnome-system-tools.pc
+share/applications/network.desktop
+share/applications/services.desktop
+share/applications/shares.desktop
+share/applications/time.desktop
+share/applications/users.desktop
+%%DATADIR%%/pixmaps/world_map-960.png
+%%DATADIR%%/ui/common.ui
+%%DATADIR%%/ui/network.ui
+%%DATADIR%%/ui/services.ui
+%%DATADIR%%/ui/shares.ui
+%%DATADIR%%/ui/time.ui
+%%DATADIR%%/ui/users.ui
+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/network-admin/ca/figures/network-tool.png
+share/gnome/help/network-admin/ca/network-admin.xml
+share/gnome/help/network-admin/cs/figures/network-tool.png
+share/gnome/help/network-admin/cs/network-admin.xml
+share/gnome/help/network-admin/de/figures/network-tool.png
+share/gnome/help/network-admin/de/network-admin.xml
+share/gnome/help/network-admin/el/figures/network-tool.png
+share/gnome/help/network-admin/el/network-admin.xml
+share/gnome/help/network-admin/en_GB/figures/network-tool.png
+share/gnome/help/network-admin/en_GB/network-admin.xml
+share/gnome/help/network-admin/es/figures/network-tool.png
+share/gnome/help/network-admin/es/network-admin.xml
+share/gnome/help/network-admin/fr/figures/network-tool.png
+share/gnome/help/network-admin/fr/network-admin.xml
+share/gnome/help/network-admin/it/figures/network-tool.png
+share/gnome/help/network-admin/it/network-admin.xml
+share/gnome/help/network-admin/oc/figures/network-tool.png
+share/gnome/help/network-admin/oc/network-admin.xml
+share/gnome/help/network-admin/sv/figures/network-tool.png
+share/gnome/help/network-admin/sv/network-admin.xml
+share/gnome/help/network-admin/zh_CN/figures/network-tool.png
+share/gnome/help/network-admin/zh_CN/network-admin.xml
+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/services-admin/ca/figures/services-tool.png
+share/gnome/help/services-admin/ca/services-admin.xml
+share/gnome/help/services-admin/cs/figures/services-tool.png
+share/gnome/help/services-admin/cs/services-admin.xml
+share/gnome/help/services-admin/de/figures/services-tool.png
+share/gnome/help/services-admin/de/services-admin.xml
+share/gnome/help/services-admin/el/figures/services-tool.png
+share/gnome/help/services-admin/el/services-admin.xml
+share/gnome/help/services-admin/en_GB/figures/services-tool.png
+share/gnome/help/services-admin/en_GB/services-admin.xml
+share/gnome/help/services-admin/es/figures/services-tool.png
+share/gnome/help/services-admin/es/services-admin.xml
+share/gnome/help/services-admin/fr/figures/services-tool.png
+share/gnome/help/services-admin/fr/services-admin.xml
+share/gnome/help/services-admin/it/figures/services-tool.png
+share/gnome/help/services-admin/it/services-admin.xml
+share/gnome/help/services-admin/nl/figures/services-tool.png
+share/gnome/help/services-admin/nl/legal.xml
+share/gnome/help/services-admin/nl/services-admin.xml
+share/gnome/help/services-admin/oc/figures/services-tool.png
+share/gnome/help/services-admin/oc/services-admin.xml
+share/gnome/help/services-admin/pl/figures/services-tool.png
+share/gnome/help/services-admin/pl/services-admin.xml
+share/gnome/help/services-admin/pt_BR/figures/services-tool.png
+share/gnome/help/services-admin/pt_BR/services-admin.xml
+share/gnome/help/services-admin/sv/figures/services-tool.png
+share/gnome/help/services-admin/sv/services-admin.xml
+share/gnome/help/services-admin/zh_CN/figures/services-tool.png
+share/gnome/help/services-admin/zh_CN/services-admin.xml
+share/gnome/help/shares-admin/C/figures/shares-tool.png
+share/gnome/help/shares-admin/C/legal.xml
+share/gnome/help/shares-admin/C/shares-admin.xml
+share/gnome/help/shares-admin/ca/figures/shares-tool.png
+share/gnome/help/shares-admin/ca/shares-admin.xml
+share/gnome/help/shares-admin/cs/figures/shares-tool.png
+share/gnome/help/shares-admin/cs/shares-admin.xml
+share/gnome/help/shares-admin/de/figures/shares-tool.png
+share/gnome/help/shares-admin/de/shares-admin.xml
+share/gnome/help/shares-admin/el/figures/shares-tool.png
+share/gnome/help/shares-admin/el/shares-admin.xml
+share/gnome/help/shares-admin/en_GB/figures/shares-tool.png
+share/gnome/help/shares-admin/en_GB/shares-admin.xml
+share/gnome/help/shares-admin/es/figures/shares-tool.png
+share/gnome/help/shares-admin/es/shares-admin.xml
+share/gnome/help/shares-admin/fr/figures/shares-tool.png
+share/gnome/help/shares-admin/fr/shares-admin.xml
+share/gnome/help/shares-admin/it/figures/shares-tool.png
+share/gnome/help/shares-admin/it/shares-admin.xml
+share/gnome/help/shares-admin/oc/figures/shares-tool.png
+share/gnome/help/shares-admin/oc/shares-admin.xml
+share/gnome/help/shares-admin/pt_BR/figures/shares-tool.png
+share/gnome/help/shares-admin/pt_BR/shares-admin.xml
+share/gnome/help/shares-admin/sv/figures/shares-tool.png
+share/gnome/help/shares-admin/sv/shares-admin.xml
+share/gnome/help/shares-admin/zh_CN/figures/shares-tool.png
+share/gnome/help/shares-admin/zh_CN/shares-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-automatic.png
+share/gnome/help/time-admin/C/figures/time-tool-manual.png
+share/gnome/help/time-admin/C/legal.xml
+share/gnome/help/time-admin/C/time-admin.xml
+share/gnome/help/time-admin/ca/figures/time-map.png
+share/gnome/help/time-admin/ca/figures/time-servers.png
+share/gnome/help/time-admin/ca/figures/time-tool-automatic.png
+share/gnome/help/time-admin/ca/figures/time-tool-manual.png
+share/gnome/help/time-admin/ca/time-admin.xml
+share/gnome/help/time-admin/cs/figures/time-map.png
+share/gnome/help/time-admin/cs/figures/time-servers.png
+share/gnome/help/time-admin/cs/figures/time-tool-automatic.png
+share/gnome/help/time-admin/cs/figures/time-tool-manual.png
+share/gnome/help/time-admin/cs/time-admin.xml
+share/gnome/help/time-admin/de/figures/time-map.png
+share/gnome/help/time-admin/de/figures/time-servers.png
+share/gnome/help/time-admin/de/figures/time-tool-automatic.png
+share/gnome/help/time-admin/de/figures/time-tool-manual.png
+share/gnome/help/time-admin/de/time-admin.xml
+share/gnome/help/time-admin/el/figures/time-map.png
+share/gnome/help/time-admin/el/figures/time-servers.png
+share/gnome/help/time-admin/el/figures/time-tool-automatic.png
+share/gnome/help/time-admin/el/figures/time-tool-manual.png
+share/gnome/help/time-admin/el/time-admin.xml
+share/gnome/help/time-admin/en_GB/figures/time-map.png
+share/gnome/help/time-admin/en_GB/figures/time-servers.png
+share/gnome/help/time-admin/en_GB/figures/time-tool-automatic.png
+share/gnome/help/time-admin/en_GB/figures/time-tool-manual.png
+share/gnome/help/time-admin/en_GB/time-admin.xml
+share/gnome/help/time-admin/es/figures/time-map.png
+share/gnome/help/time-admin/es/figures/time-servers.png
+share/gnome/help/time-admin/es/figures/time-tool-automatic.png
+share/gnome/help/time-admin/es/figures/time-tool-manual.png
+share/gnome/help/time-admin/es/time-admin.xml
+share/gnome/help/time-admin/fr/figures/time-map.png
+share/gnome/help/time-admin/fr/figures/time-servers.png
+share/gnome/help/time-admin/fr/figures/time-tool-automatic.png
+share/gnome/help/time-admin/fr/figures/time-tool-manual.png
+share/gnome/help/time-admin/fr/time-admin.xml
+share/gnome/help/time-admin/it/figures/time-map.png
+share/gnome/help/time-admin/it/figures/time-servers.png
+share/gnome/help/time-admin/it/figures/time-tool-automatic.png
+share/gnome/help/time-admin/it/figures/time-tool-manual.png
+share/gnome/help/time-admin/it/time-admin.xml
+share/gnome/help/time-admin/nl/figures/time-map.png
+share/gnome/help/time-admin/nl/figures/time-servers.png
+share/gnome/help/time-admin/nl/figures/time-tool-manual.png
+share/gnome/help/time-admin/nl/legal.xml
+share/gnome/help/time-admin/nl/time-admin.xml
+share/gnome/help/time-admin/oc/figures/time-map.png
+share/gnome/help/time-admin/oc/figures/time-servers.png
+share/gnome/help/time-admin/oc/figures/time-tool-automatic.png
+share/gnome/help/time-admin/oc/figures/time-tool-manual.png
+share/gnome/help/time-admin/oc/time-admin.xml
+share/gnome/help/time-admin/pt_BR/figures/time-map.png
+share/gnome/help/time-admin/pt_BR/figures/time-servers.png
+share/gnome/help/time-admin/pt_BR/figures/time-tool-automatic.png
+share/gnome/help/time-admin/pt_BR/figures/time-tool-manual.png
+share/gnome/help/time-admin/pt_BR/time-admin.xml
+share/gnome/help/time-admin/ru/figures/time-map.png
+share/gnome/help/time-admin/ru/figures/time-servers.png
+share/gnome/help/time-admin/ru/figures/time-tool-automatic.png
+share/gnome/help/time-admin/ru/figures/time-tool-manual.png
+share/gnome/help/time-admin/ru/time-admin.xml
+share/gnome/help/time-admin/sv/figures/time-map.png
+share/gnome/help/time-admin/sv/figures/time-servers.png
+share/gnome/help/time-admin/sv/figures/time-tool-automatic.png
+share/gnome/help/time-admin/sv/figures/time-tool-manual.png
+share/gnome/help/time-admin/sv/time-admin.xml
+share/gnome/help/time-admin/zh_CN/figures/time-map.png
+share/gnome/help/time-admin/zh_CN/figures/time-servers.png
+share/gnome/help/time-admin/zh_CN/figures/time-tool-automatic.png
+share/gnome/help/time-admin/zh_CN/figures/time-tool-manual.png
+share/gnome/help/time-admin/zh_CN/time-admin.xml
+share/gnome/help/users-admin/C/figures/groups.png
+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/help/users-admin/ca/figures/groups.png
+share/gnome/help/users-admin/ca/figures/users-tool.png
+share/gnome/help/users-admin/ca/users-admin.xml
+share/gnome/help/users-admin/cs/figures/groups.png
+share/gnome/help/users-admin/cs/figures/users-tool.png
+share/gnome/help/users-admin/cs/users-admin.xml
+share/gnome/help/users-admin/de/figures/groups.png
+share/gnome/help/users-admin/de/figures/users-tool.png
+share/gnome/help/users-admin/de/users-admin.xml
+share/gnome/help/users-admin/el/figures/groups.png
+share/gnome/help/users-admin/el/figures/users-tool.png
+share/gnome/help/users-admin/el/users-admin.xml
+share/gnome/help/users-admin/en_GB/figures/groups.png
+share/gnome/help/users-admin/en_GB/figures/users-tool.png
+share/gnome/help/users-admin/en_GB/users-admin.xml
+share/gnome/help/users-admin/es/figures/groups.png
+share/gnome/help/users-admin/es/figures/users-tool.png
+share/gnome/help/users-admin/es/users-admin.xml
+share/gnome/help/users-admin/fr/figures/groups.png
+share/gnome/help/users-admin/fr/figures/users-tool.png
+share/gnome/help/users-admin/fr/users-admin.xml
+share/gnome/help/users-admin/it/figures/groups.png
+share/gnome/help/users-admin/it/figures/users-tool.png
+share/gnome/help/users-admin/it/users-admin.xml
+share/gnome/help/users-admin/oc/figures/groups.png
+share/gnome/help/users-admin/oc/figures/users-tool.png
+share/gnome/help/users-admin/oc/users-admin.xml
+share/gnome/help/users-admin/pt_BR/figures/groups.png
+share/gnome/help/users-admin/pt_BR/figures/users-tool.png
+share/gnome/help/users-admin/pt_BR/users-admin.xml
+share/gnome/help/users-admin/ru/figures/groups.png
+share/gnome/help/users-admin/ru/figures/users-tool.png
+share/gnome/help/users-admin/ru/users-admin.xml
+share/gnome/help/users-admin/sv/figures/groups.png
+share/gnome/help/users-admin/sv/figures/users-tool.png
+share/gnome/help/users-admin/sv/users-admin.xml
+share/gnome/help/users-admin/zh_CN/figures/groups.png
+share/gnome/help/users-admin/zh_CN/figures/users-tool.png
+share/gnome/help/users-admin/zh_CN/users-admin.xml
+share/icons/hicolor/16x16/apps/time-admin.png
+share/icons/hicolor/22x22/apps/time-admin.png
+share/icons/hicolor/24x24/apps/time-admin.png
+share/icons/hicolor/32x32/apps/time-admin.png
+share/icons/hicolor/48x48/apps/time-admin.png
+share/icons/hicolor/48x48/devices/irda.png
+share/icons/hicolor/48x48/devices/plip.png
+share/icons/hicolor/scalable/apps/time-admin.svg
+share/locale/af/LC_MESSAGES/gnome-system-tools.mo
+share/locale/am/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ar/LC_MESSAGES/gnome-system-tools.mo
+share/locale/as/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ast/LC_MESSAGES/gnome-system-tools.mo
+share/locale/az/LC_MESSAGES/gnome-system-tools.mo
+share/locale/be/LC_MESSAGES/gnome-system-tools.mo
+share/locale/be@latin/LC_MESSAGES/gnome-system-tools.mo
+share/locale/bg/LC_MESSAGES/gnome-system-tools.mo
+share/locale/bn/LC_MESSAGES/gnome-system-tools.mo
+share/locale/bn_IN/LC_MESSAGES/gnome-system-tools.mo
+share/locale/br/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ca/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ca@valencia/LC_MESSAGES/gnome-system-tools.mo
+share/locale/cs/LC_MESSAGES/gnome-system-tools.mo
+share/locale/cy/LC_MESSAGES/gnome-system-tools.mo
+share/locale/da/LC_MESSAGES/gnome-system-tools.mo
+share/locale/de/LC_MESSAGES/gnome-system-tools.mo
+share/locale/dz/LC_MESSAGES/gnome-system-tools.mo
+share/locale/el/LC_MESSAGES/gnome-system-tools.mo
+share/locale/en@shaw/LC_MESSAGES/gnome-system-tools.mo
+share/locale/en_CA/LC_MESSAGES/gnome-system-tools.mo
+share/locale/en_GB/LC_MESSAGES/gnome-system-tools.mo
+share/locale/es/LC_MESSAGES/gnome-system-tools.mo
+share/locale/et/LC_MESSAGES/gnome-system-tools.mo
+share/locale/eu/LC_MESSAGES/gnome-system-tools.mo
+share/locale/fa/LC_MESSAGES/gnome-system-tools.mo
+share/locale/fi/LC_MESSAGES/gnome-system-tools.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/gnome-system-tools.mo
+share/locale/he/LC_MESSAGES/gnome-system-tools.mo
+share/locale/hi/LC_MESSAGES/gnome-system-tools.mo
+share/locale/hr/LC_MESSAGES/gnome-system-tools.mo
+share/locale/hu/LC_MESSAGES/gnome-system-tools.mo
+share/locale/id/LC_MESSAGES/gnome-system-tools.mo
+share/locale/is/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/ka/LC_MESSAGES/gnome-system-tools.mo
+share/locale/kn/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ko/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ku/LC_MESSAGES/gnome-system-tools.mo
+share/locale/lt/LC_MESSAGES/gnome-system-tools.mo
+share/locale/lv/LC_MESSAGES/gnome-system-tools.mo
+share/locale/mai/LC_MESSAGES/gnome-system-tools.mo
+share/locale/mg/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/mr/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ms/LC_MESSAGES/gnome-system-tools.mo
+share/locale/nb/LC_MESSAGES/gnome-system-tools.mo
+share/locale/nds/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ne/LC_MESSAGES/gnome-system-tools.mo
+share/locale/nl/LC_MESSAGES/gnome-system-tools.mo
+share/locale/nn/LC_MESSAGES/gnome-system-tools.mo
+share/locale/oc/LC_MESSAGES/gnome-system-tools.mo
+share/locale/or/LC_MESSAGES/gnome-system-tools.mo
+share/locale/pa/LC_MESSAGES/gnome-system-tools.mo
+share/locale/pl/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ps/LC_MESSAGES/gnome-system-tools.mo
+share/locale/pt/LC_MESSAGES/gnome-system-tools.mo
+share/locale/pt_BR/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ro/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ru/LC_MESSAGES/gnome-system-tools.mo
+share/locale/rw/LC_MESSAGES/gnome-system-tools.mo
+share/locale/si/LC_MESSAGES/gnome-system-tools.mo
+share/locale/sk/LC_MESSAGES/gnome-system-tools.mo
+share/locale/sl/LC_MESSAGES/gnome-system-tools.mo
+share/locale/sq/LC_MESSAGES/gnome-system-tools.mo
+share/locale/sr/LC_MESSAGES/gnome-system-tools.mo
+share/locale/sr@latin/LC_MESSAGES/gnome-system-tools.mo
+share/locale/sv/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ta/LC_MESSAGES/gnome-system-tools.mo
+share/locale/te/LC_MESSAGES/gnome-system-tools.mo
+share/locale/th/LC_MESSAGES/gnome-system-tools.mo
+share/locale/tr/LC_MESSAGES/gnome-system-tools.mo
+share/locale/uk/LC_MESSAGES/gnome-system-tools.mo
+share/locale/vi/LC_MESSAGES/gnome-system-tools.mo
+share/locale/wa/LC_MESSAGES/gnome-system-tools.mo
+share/locale/xh/LC_MESSAGES/gnome-system-tools.mo
+share/locale/zh_CN/LC_MESSAGES/gnome-system-tools.mo
+share/locale/zh_HK/LC_MESSAGES/gnome-system-tools.mo
+share/locale/zh_TW/LC_MESSAGES/gnome-system-tools.mo
+share/omf/gnome-system-tools/services-admin-nl.omf
+share/omf/gnome-system-tools/time-admin-nl.omf
+share/omf/network-admin/network-admin-C.omf
+share/omf/network-admin/network-admin-ca.omf
+share/omf/network-admin/network-admin-cs.omf
+share/omf/network-admin/network-admin-de.omf
+share/omf/network-admin/network-admin-el.omf
+share/omf/network-admin/network-admin-en_GB.omf
+share/omf/network-admin/network-admin-es.omf
+share/omf/network-admin/network-admin-fr.omf
+share/omf/network-admin/network-admin-it.omf
+share/omf/network-admin/network-admin-oc.omf
+share/omf/network-admin/network-admin-sv.omf
+share/omf/network-admin/network-admin-zh_CN.omf
+share/omf/services-admin/services-admin-C.omf
+share/omf/services-admin/services-admin-ca.omf
+share/omf/services-admin/services-admin-cs.omf
+share/omf/services-admin/services-admin-de.omf
+share/omf/services-admin/services-admin-el.omf
+share/omf/services-admin/services-admin-en_GB.omf
+share/omf/services-admin/services-admin-es.omf
+share/omf/services-admin/services-admin-fr.omf
+share/omf/services-admin/services-admin-it.omf
+share/omf/services-admin/services-admin-oc.omf
+share/omf/services-admin/services-admin-pl.omf
+share/omf/services-admin/services-admin-pt_BR.omf
+share/omf/services-admin/services-admin-sv.omf
+share/omf/services-admin/services-admin-zh_CN.omf
+share/omf/shares-admin/shares-admin-C.omf
+share/omf/shares-admin/shares-admin-ca.omf
+share/omf/shares-admin/shares-admin-cs.omf
+share/omf/shares-admin/shares-admin-de.omf
+share/omf/shares-admin/shares-admin-el.omf
+share/omf/shares-admin/shares-admin-en_GB.omf
+share/omf/shares-admin/shares-admin-es.omf
+share/omf/shares-admin/shares-admin-fr.omf
+share/omf/shares-admin/shares-admin-it.omf
+share/omf/shares-admin/shares-admin-oc.omf
+share/omf/shares-admin/shares-admin-pt_BR.omf
+share/omf/shares-admin/shares-admin-sv.omf
+share/omf/shares-admin/shares-admin-zh_CN.omf
+share/omf/time-admin/time-admin-C.omf
+share/omf/time-admin/time-admin-ca.omf
+share/omf/time-admin/time-admin-cs.omf
+share/omf/time-admin/time-admin-de.omf
+share/omf/time-admin/time-admin-el.omf
+share/omf/time-admin/time-admin-en_GB.omf
+share/omf/time-admin/time-admin-es.omf
+share/omf/time-admin/time-admin-fr.omf
+share/omf/time-admin/time-admin-it.omf
+share/omf/time-admin/time-admin-oc.omf
+share/omf/time-admin/time-admin-pt_BR.omf
+share/omf/time-admin/time-admin-ru.omf
+share/omf/time-admin/time-admin-sv.omf
+share/omf/time-admin/time-admin-zh_CN.omf
+share/omf/users-admin/users-admin-C.omf
+share/omf/users-admin/users-admin-ca.omf
+share/omf/users-admin/users-admin-cs.omf
+share/omf/users-admin/users-admin-de.omf
+share/omf/users-admin/users-admin-el.omf
+share/omf/users-admin/users-admin-en_GB.omf
+share/omf/users-admin/users-admin-es.omf
+share/omf/users-admin/users-admin-fr.omf
+share/omf/users-admin/users-admin-it.omf
+share/omf/users-admin/users-admin-oc.omf
+share/omf/users-admin/users-admin-pt_BR.omf
+share/omf/users-admin/users-admin-ru.omf
+share/omf/users-admin/users-admin-sv.omf
+share/omf/users-admin/users-admin-zh_CN.omf
+@dirrm share/omf/users-admin
+@dirrm share/omf/time-admin
+@dirrm share/omf/shares-admin
+@dirrm share/omf/services-admin
+@dirrm share/omf/network-admin
+@dirrm share/omf/gnome-system-tools
+@dirrm share/gnome/help/users-admin/zh_CN/figures
+@dirrm share/gnome/help/users-admin/zh_CN
+@dirrm share/gnome/help/users-admin/sv/figures
+@dirrm share/gnome/help/users-admin/sv
+@dirrm share/gnome/help/users-admin/ru/figures
+@dirrm share/gnome/help/users-admin/ru
+@dirrm share/gnome/help/users-admin/pt_BR/figures
+@dirrm share/gnome/help/users-admin/pt_BR
+@dirrm share/gnome/help/users-admin/oc/figures
+@dirrm share/gnome/help/users-admin/oc
+@dirrm share/gnome/help/users-admin/it/figures
+@dirrm share/gnome/help/users-admin/it
+@dirrm share/gnome/help/users-admin/fr/figures
+@dirrm share/gnome/help/users-admin/fr
+@dirrm share/gnome/help/users-admin/es/figures
+@dirrm share/gnome/help/users-admin/es
+@dirrm share/gnome/help/users-admin/en_GB/figures
+@dirrm share/gnome/help/users-admin/en_GB
+@dirrm share/gnome/help/users-admin/el/figures
+@dirrm share/gnome/help/users-admin/el
+@dirrm share/gnome/help/users-admin/de/figures
+@dirrm share/gnome/help/users-admin/de
+@dirrm share/gnome/help/users-admin/cs/figures
+@dirrm share/gnome/help/users-admin/cs
+@dirrm share/gnome/help/users-admin/ca/figures
+@dirrm share/gnome/help/users-admin/ca
+@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/zh_CN/figures
+@dirrm share/gnome/help/time-admin/zh_CN
+@dirrm share/gnome/help/time-admin/sv/figures
+@dirrm share/gnome/help/time-admin/sv
+@dirrm share/gnome/help/time-admin/ru/figures
+@dirrm share/gnome/help/time-admin/ru
+@dirrm share/gnome/help/time-admin/pt_BR/figures
+@dirrm share/gnome/help/time-admin/pt_BR
+@dirrm share/gnome/help/time-admin/oc/figures
+@dirrm share/gnome/help/time-admin/oc
+@dirrm share/gnome/help/time-admin/nl/figures
+@dirrm share/gnome/help/time-admin/nl
+@dirrm share/gnome/help/time-admin/it/figures
+@dirrm share/gnome/help/time-admin/it
+@dirrm share/gnome/help/time-admin/fr/figures
+@dirrm share/gnome/help/time-admin/fr
+@dirrm share/gnome/help/time-admin/es/figures
+@dirrm share/gnome/help/time-admin/es
+@dirrm share/gnome/help/time-admin/en_GB/figures
+@dirrm share/gnome/help/time-admin/en_GB
+@dirrm share/gnome/help/time-admin/el/figures
+@dirrm share/gnome/help/time-admin/el
+@dirrm share/gnome/help/time-admin/de/figures
+@dirrm share/gnome/help/time-admin/de
+@dirrm share/gnome/help/time-admin/cs/figures
+@dirrm share/gnome/help/time-admin/cs
+@dirrm share/gnome/help/time-admin/ca/figures
+@dirrm share/gnome/help/time-admin/ca
+@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/shares-admin/zh_CN/figures
+@dirrm share/gnome/help/shares-admin/zh_CN
+@dirrm share/gnome/help/shares-admin/sv/figures
+@dirrm share/gnome/help/shares-admin/sv
+@dirrm share/gnome/help/shares-admin/pt_BR/figures
+@dirrm share/gnome/help/shares-admin/pt_BR
+@dirrm share/gnome/help/shares-admin/oc/figures
+@dirrm share/gnome/help/shares-admin/oc
+@dirrm share/gnome/help/shares-admin/it/figures
+@dirrm share/gnome/help/shares-admin/it
+@dirrm share/gnome/help/shares-admin/fr/figures
+@dirrm share/gnome/help/shares-admin/fr
+@dirrm share/gnome/help/shares-admin/es/figures
+@dirrm share/gnome/help/shares-admin/es
+@dirrm share/gnome/help/shares-admin/en_GB/figures
+@dirrm share/gnome/help/shares-admin/en_GB
+@dirrm share/gnome/help/shares-admin/el/figures
+@dirrm share/gnome/help/shares-admin/el
+@dirrm share/gnome/help/shares-admin/de/figures
+@dirrm share/gnome/help/shares-admin/de
+@dirrm share/gnome/help/shares-admin/cs/figures
+@dirrm share/gnome/help/shares-admin/cs
+@dirrm share/gnome/help/shares-admin/ca/figures
+@dirrm share/gnome/help/shares-admin/ca
+@dirrm share/gnome/help/shares-admin/C/figures
+@dirrm share/gnome/help/shares-admin/C
+@dirrm share/gnome/help/shares-admin
+@dirrm share/gnome/help/services-admin/zh_CN/figures
+@dirrm share/gnome/help/services-admin/zh_CN
+@dirrm share/gnome/help/services-admin/sv/figures
+@dirrm share/gnome/help/services-admin/sv
+@dirrm share/gnome/help/services-admin/pt_BR/figures
+@dirrm share/gnome/help/services-admin/pt_BR
+@dirrm share/gnome/help/services-admin/pl/figures
+@dirrm share/gnome/help/services-admin/pl
+@dirrm share/gnome/help/services-admin/oc/figures
+@dirrm share/gnome/help/services-admin/oc
+@dirrm share/gnome/help/services-admin/nl/figures
+@dirrm share/gnome/help/services-admin/nl
+@dirrm share/gnome/help/services-admin/it/figures
+@dirrm share/gnome/help/services-admin/it
+@dirrm share/gnome/help/services-admin/fr/figures
+@dirrm share/gnome/help/services-admin/fr
+@dirrm share/gnome/help/services-admin/es/figures
+@dirrm share/gnome/help/services-admin/es
+@dirrm share/gnome/help/services-admin/en_GB/figures
+@dirrm share/gnome/help/services-admin/en_GB
+@dirrm share/gnome/help/services-admin/el/figures
+@dirrm share/gnome/help/services-admin/el
+@dirrm share/gnome/help/services-admin/de/figures
+@dirrm share/gnome/help/services-admin/de
+@dirrm share/gnome/help/services-admin/cs/figures
+@dirrm share/gnome/help/services-admin/cs
+@dirrm share/gnome/help/services-admin/ca/figures
+@dirrm share/gnome/help/services-admin/ca
+@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/zh_CN/figures
+@dirrm share/gnome/help/network-admin/zh_CN
+@dirrm share/gnome/help/network-admin/sv/figures
+@dirrm share/gnome/help/network-admin/sv
+@dirrm share/gnome/help/network-admin/oc/figures
+@dirrm share/gnome/help/network-admin/oc
+@dirrm share/gnome/help/network-admin/it/figures
+@dirrm share/gnome/help/network-admin/it
+@dirrm share/gnome/help/network-admin/fr/figures
+@dirrm share/gnome/help/network-admin/fr
+@dirrm share/gnome/help/network-admin/es/figures
+@dirrm share/gnome/help/network-admin/es
+@dirrm share/gnome/help/network-admin/en_GB/figures
+@dirrm share/gnome/help/network-admin/en_GB
+@dirrm share/gnome/help/network-admin/el/figures
+@dirrm share/gnome/help/network-admin/el
+@dirrm share/gnome/help/network-admin/de/figures
+@dirrm share/gnome/help/network-admin/de
+@dirrm share/gnome/help/network-admin/cs/figures
+@dirrm share/gnome/help/network-admin/cs
+@dirrm share/gnome/help/network-admin/ca/figures
+@dirrm share/gnome/help/network-admin/ca
+@dirrm share/gnome/help/network-admin/C/figures
+@dirrm share/gnome/help/network-admin/C
+@dirrm share/gnome/help/network-admin
+@dirrm %%DATADIR%%/ui
+@dirrm %%DATADIR%%/pixmaps
+@dirrm %%DATADIR%%
+@dirrmtry share/applications
+@dirrm etc/gnome-system-tools
+@dirrmtry share/locale/zh_HK/LC_MESSAGES
+@dirrmtry share/locale/zh_HK
+@dirrmtry share/locale/xh/LC_MESSAGES
+@dirrmtry share/locale/xh
+@dirrmtry share/locale/te/LC_MESSAGES
+@dirrmtry share/locale/te
+@dirrmtry share/locale/sr@latin/LC_MESSAGES
+@dirrmtry share/locale/sr@latin
+@dirrmtry share/locale/si/LC_MESSAGES
+@dirrmtry share/locale/si
+@dirrmtry share/locale/rw/LC_MESSAGES
+@dirrmtry share/locale/rw
+@dirrmtry share/locale/ps/LC_MESSAGES
+@dirrmtry share/locale/ps
+@dirrmtry share/locale/oc/LC_MESSAGES
+@dirrmtry share/locale/oc
+@dirrmtry share/locale/nds/LC_MESSAGES
+@dirrmtry share/locale/nds
+@dirrmtry share/locale/mr/LC_MESSAGES
+@dirrmtry share/locale/mr
+@dirrmtry share/locale/mg/LC_MESSAGES
+@dirrmtry share/locale/mg
+@dirrmtry share/locale/mai/LC_MESSAGES
+@dirrmtry share/locale/mai
+@dirrmtry share/locale/ku/LC_MESSAGES
+@dirrmtry share/locale/ku
+@dirrmtry share/locale/en@shaw/LC_MESSAGES
+@dirrmtry share/locale/en@shaw
+@dirrmtry share/locale/dz/LC_MESSAGES
+@dirrmtry share/locale/dz
+@dirrmtry share/locale/ca@valencia/LC_MESSAGES
+@dirrmtry share/locale/ca@valencia
+@dirrmtry share/locale/bn_IN/LC_MESSAGES
+@dirrmtry share/locale/bn_IN
+@dirrmtry share/locale/be@latin/LC_MESSAGES
+@dirrmtry share/locale/be@latin
+@dirrmtry share/locale/ast/LC_MESSAGES
+@dirrmtry share/locale/ast
+@dirrmtry share/locale/as/LC_MESSAGES
+@dirrmtry share/locale/as