summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2007-10-30 21:57:20 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2007-10-30 21:57:20 +0800
commitfc26643ef0b318a23c1a2949911cb41dd24c4ebb (patch)
tree9a0b354a1156bc686ad9ae6ca03599d71ae1b639
parentdef38e78e93cbaaf45fe1ac76cf95d7926047483 (diff)
downloadmarcuscom-ports-fc26643ef0b318a23c1a2949911cb41dd24c4ebb.tar
marcuscom-ports-fc26643ef0b318a23c1a2949911cb41dd24c4ebb.tar.gz
marcuscom-ports-fc26643ef0b318a23c1a2949911cb41dd24c4ebb.tar.bz2
marcuscom-ports-fc26643ef0b318a23c1a2949911cb41dd24c4ebb.tar.lz
marcuscom-ports-fc26643ef0b318a23c1a2949911cb41dd24c4ebb.tar.xz
marcuscom-ports-fc26643ef0b318a23c1a2949911cb41dd24c4ebb.tar.zst
marcuscom-ports-fc26643ef0b318a23c1a2949911cb41dd24c4ebb.zip
Update to 2.21.1
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9891 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--devel/liboobs/Makefile29
-rw-r--r--devel/liboobs/distinfo3
-rw-r--r--devel/liboobs/files/patch-src_oobs-group.c25
-rw-r--r--devel/liboobs/files/patch-src_oobs-user.c35
-rw-r--r--devel/liboobs/pkg-descr1
-rw-r--r--devel/liboobs/pkg-plist81
-rw-r--r--sysutils/gnome-system-tools/Makefile37
-rw-r--r--sysutils/gnome-system-tools/distinfo3
-rw-r--r--sysutils/gnome-system-tools/files/patch-src_users_user-settings.c15
-rw-r--r--sysutils/gnome-system-tools/pkg-descr10
-rw-r--r--sysutils/gnome-system-tools/pkg-plist334
11 files changed, 573 insertions, 0 deletions
diff --git a/devel/liboobs/Makefile b/devel/liboobs/Makefile
new file mode 100644
index 000000000..a927fd46a
--- /dev/null
+++ b/devel/liboobs/Makefile
@@ -0,0 +1,29 @@
+# New ports collection makefile for: liboobs
+# Date created: 2006-06-06
+# Whom: Michael Johnson <ahze@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom: ports/devel/liboobs/Makefile,v 1.23 2007/09/16 16:45:35 ahze Exp $
+#
+
+PORTNAME= liboobs
+PORTVERSION= 2.21.1
+CATEGORIES= devel gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Wrapping library to the System Tools Backends
+
+BUILD_DEPENDS= ${LOCALBASE}/etc/dbus-1/system.d/system-tools-backends.conf:${PORTSDIR}/sysutils/system-tools-backends
+LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib
+RUN_DEPENDS= ${LOCALBASE}/etc/dbus-1/system.d/system-tools-backends.conf:${PORTSDIR}/sysutils/system-tools-backends
+
+USE_BZIP2= yes
+GNU_CONFIGURE= yes
+USE_GNOME= gnomehack glib20
+USE_LDCONFIG= yes
+CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include"
+
+.include <bsd.port.mk>
diff --git a/devel/liboobs/distinfo b/devel/liboobs/distinfo
new file mode 100644
index 000000000..c4d5ecbf0
--- /dev/null
+++ b/devel/liboobs/distinfo
@@ -0,0 +1,3 @@
+MD5 (liboobs-2.21.1.tar.bz2) = 991e8dc0306fa3d514dac9cf22f905c1
+SHA256 (liboobs-2.21.1.tar.bz2) = 2c8ed874bd29e96fe58e211a6f442360b5a2b13d3a9fda8512385c8e85b65587
+SIZE (liboobs-2.21.1.tar.bz2) = 339465
diff --git a/devel/liboobs/files/patch-src_oobs-group.c b/devel/liboobs/files/patch-src_oobs-group.c
new file mode 100644
index 000000000..6abd8b711
--- /dev/null
+++ b/devel/liboobs/files/patch-src_oobs-group.c
@@ -0,0 +1,25 @@
+--- oobs/oobs-group.c.orig Fri Sep 15 18:41:04 2006
++++ oobs/oobs-group.c Tue Oct 31 23:12:40 2006
+@@ -18,7 +18,12 @@
+ * Authors: Carlos Garnacho Parro <carlosg@gnome.org>
+ */
+
++#if defined(HAVE_CONFIG_H)
++#include <config.h>
++#endif
++
+ #include <glib-object.h>
++#include <unistd.h>
+ #include "oobs-session.h"
+ #include "oobs-group.h"
+ #include "oobs-user.h"
+@@ -27,7 +32,9 @@
+ #include "oobs-groupsconfig-private.h"
+ #include "oobs-defines.h"
+ #include "utils.h"
++#ifdef HAVE_CRYPT_H
+ #include <crypt.h>
++#endif
+
+ #define OOBS_GROUP_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), OOBS_TYPE_GROUP, OobsGroupPrivate))
+
diff --git a/devel/liboobs/files/patch-src_oobs-user.c b/devel/liboobs/files/patch-src_oobs-user.c
new file mode 100644
index 000000000..484b86f32
--- /dev/null
+++ b/devel/liboobs/files/patch-src_oobs-user.c
@@ -0,0 +1,35 @@
+--- oobs/oobs-user.c.orig 2007-10-30 09:16:53.406333206 -0400
++++ oobs/oobs-user.c 2007-10-30 09:40:02.560797530 -0400
+@@ -18,12 +18,18 @@
+ * Authors: Carlos Garnacho Parro <carlosg@gnome.org>
+ */
+
++#if defined(HAVE_CONFIG_H)
++#include <config.h>
++#endif
++
+ #include <glib-object.h>
+ #include <sys/types.h>
+ #include <unistd.h>
+ #include <stdlib.h>
+ #include <string.h>
++#ifdef HAVE_CRYPT_H
+ #include <crypt.h>
++#endif
+ #include <utmp.h>
+
+ #include "oobs-usersconfig.h"
+@@ -852,6 +858,7 @@
+
+ login = oobs_user_get_login_name (user);
+
++#if 0 /* FreeBSD does not have ut_type in utmp */
+ while (!match && (entry = getutent ()) != NULL)
+ {
+ match = (entry->ut_type == USER_PROCESS &&
+@@ -862,4 +869,5 @@
+ endutent ();
+
+ return match;
++#endif
+ }
diff --git a/devel/liboobs/pkg-descr b/devel/liboobs/pkg-descr
new file mode 100644
index 000000000..ff7665320
--- /dev/null
+++ b/devel/liboobs/pkg-descr
@@ -0,0 +1 @@
+Wrapping library to the System Tools Backends
diff --git a/devel/liboobs/pkg-plist b/devel/liboobs/pkg-plist
new file mode 100644
index 000000000..05dc890fc
--- /dev/null
+++ b/devel/liboobs/pkg-plist
@@ -0,0 +1,81 @@
+include/liboobs-1.0/oobs/oobs-group.h
+include/liboobs-1.0/oobs/oobs-groupsconfig.h
+include/liboobs-1.0/oobs/oobs-hostsconfig.h
+include/liboobs-1.0/oobs/oobs-iface-ethernet.h
+include/liboobs-1.0/oobs/oobs-iface-irlan.h
+include/liboobs-1.0/oobs/oobs-iface-isdn.h
+include/liboobs-1.0/oobs/oobs-iface-modem.h
+include/liboobs-1.0/oobs/oobs-iface-plip.h
+include/liboobs-1.0/oobs/oobs-iface-wireless.h
+include/liboobs-1.0/oobs/oobs-iface.h
+include/liboobs-1.0/oobs/oobs-ifacesconfig.h
+include/liboobs-1.0/oobs/oobs-list.h
+include/liboobs-1.0/oobs/oobs-nfsconfig.h
+include/liboobs-1.0/oobs/oobs-ntpconfig.h
+include/liboobs-1.0/oobs/oobs-ntpserver.h
+include/liboobs-1.0/oobs/oobs-object.h
+include/liboobs-1.0/oobs/oobs-result.h
+include/liboobs-1.0/oobs/oobs-service.h
+include/liboobs-1.0/oobs/oobs-servicesconfig.h
+include/liboobs-1.0/oobs/oobs-session.h
+include/liboobs-1.0/oobs/oobs-share-nfs.h
+include/liboobs-1.0/oobs/oobs-share-smb.h
+include/liboobs-1.0/oobs/oobs-share.h
+include/liboobs-1.0/oobs/oobs-smbconfig.h
+include/liboobs-1.0/oobs/oobs-statichost.h
+include/liboobs-1.0/oobs/oobs-timeconfig.h
+include/liboobs-1.0/oobs/oobs-user.h
+include/liboobs-1.0/oobs/oobs-usersconfig.h
+include/liboobs-1.0/oobs/oobs.h
+lib/liboobs-1.a
+lib/liboobs-1.la
+lib/liboobs-1.so
+lib/liboobs-1.so.4
+libdata/pkgconfig/liboobs-1.pc
+%%DOCSDIR%%/OobsGroup.html
+%%DOCSDIR%%/OobsGroupsConfig.html
+%%DOCSDIR%%/OobsIface.html
+%%DOCSDIR%%/OobsIfaceEthernet.html
+%%DOCSDIR%%/OobsIfaceIRLan.html
+%%DOCSDIR%%/OobsIfaceISDN.html
+%%DOCSDIR%%/OobsIfaceModem.html
+%%DOCSDIR%%/OobsIfacePlip.html
+%%DOCSDIR%%/OobsIfaceWireless.html
+%%DOCSDIR%%/OobsIfacesConfig.html
+%%DOCSDIR%%/OobsList.html
+%%DOCSDIR%%/OobsNFSConfig.html
+%%DOCSDIR%%/OobsNTPConfig.html
+%%DOCSDIR%%/OobsObject.html
+%%DOCSDIR%%/OobsSMBConfig.html
+%%DOCSDIR%%/OobsService.html
+%%DOCSDIR%%/OobsServicesConfig.html
+%%DOCSDIR%%/OobsSession.html
+%%DOCSDIR%%/OobsShare.html
+%%DOCSDIR%%/OobsShareNFS.html
+%%DOCSDIR%%/OobsShareSMB.html
+%%DOCSDIR%%/OobsStaticHost.html
+%%DOCSDIR%%/OobsTimeConfig.html
+%%DOCSDIR%%/OobsUser.html
+%%DOCSDIR%%/OobsUsersConfig.html
+%%DOCSDIR%%/ch01.html
+%%DOCSDIR%%/ch02.html
+%%DOCSDIR%%/ch03.html
+%%DOCSDIR%%/ch04.html
+%%DOCSDIR%%/ch05.html
+%%DOCSDIR%%/ch06.html
+%%DOCSDIR%%/ch07.html
+%%DOCSDIR%%/ch08.html
+%%DOCSDIR%%/home.png
+%%DOCSDIR%%/index.html
+%%DOCSDIR%%/index.sgml
+%%DOCSDIR%%/left.png
+%%DOCSDIR%%/liboobs-OobsHostsConfig.html
+%%DOCSDIR%%/liboobs-OobsNTPServer.html
+%%DOCSDIR%%/liboobs.devhelp
+%%DOCSDIR%%/liboobs.devhelp2
+%%DOCSDIR%%/right.png
+%%DOCSDIR%%/style.css
+%%DOCSDIR%%/up.png
+@dirrm %%DOCSDIR%%
+@dirrm include/liboobs-1.0/oobs
+@dirrm include/liboobs-1.0
diff --git a/sysutils/gnome-system-tools/Makefile b/sysutils/gnome-system-tools/Makefile
new file mode 100644
index 000000000..bca4ce080
--- /dev/null
+++ b/sysutils/gnome-system-tools/Makefile
@@ -0,0 +1,37 @@
+# New ports collection makefile for: gnomesystemtools
+# Date created: 17 May 2004
+# Whom: Adam Weinberger <adamw@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom: ports/sysutils/gnome-system-tools/Makefile,v 1.68 2007/09/16 16:56:43 ahze Exp $
+
+PORTNAME= gnome-system-tools
+PORTVERSION= 2.21.1
+CATEGORIES= sysutils gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/gnome-system-tools/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
+DISTNAME= gnome-system-tools-${PORTVERSION}
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Tools to configure workstations
+
+LIB_DEPENDS= oobs-1.4:${PORTSDIR}/devel/liboobs
+
+USE_BZIP2= yes
+USE_GMAKE= yes
+INSTALLS_ICONS= yes
+USE_GETTEXT= yes
+USE_LDCONFIG= yes
+USE_XLIB= yes
+GNOME_DESKTOP_VERSION=2
+USE_GNOME= gnomehack gnomeprefix gnometarget intlhack nautilus2
+USE_AUTOTOOLS= libtool:15
+INSTALLS_OMF= yes
+CONFIGURE_ARGS= --enable-services
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+GCONF_SCHEMAS= gnome-system-tools.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..898c8cbfc
--- /dev/null
+++ b/sysutils/gnome-system-tools/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/gnome-system-tools-2.21.1.tar.bz2) = be734b916c2d141948b126859e29bb36
+SHA256 (gnome2/gnome-system-tools-2.21.1.tar.bz2) = 007dafda9af208bdf6b672573681613aea9ed7aa0ec7367fb6132be25c30493c
+SIZE (gnome2/gnome-system-tools-2.21.1.tar.bz2) = 3225673
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..c19a384a9
--- /dev/null
+++ b/sysutils/gnome-system-tools/files/patch-src_users_user-settings.c
@@ -0,0 +1,15 @@
+--- src/users/user-settings.c.orig Sun Apr 22 23:32:58 2007
++++ src/users/user-settings.c Sun Apr 22 23:34:18 2007
+@@ -632,10 +632,10 @@
+ password_changed = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (widget), "changed"));
+
+ if (password_changed)
+- oobs_user_set_password (user, gtk_entry_get_text (GTK_ENTRY (widget)));
++ oobs_user_set_crypted_password (user, gtk_entry_get_text (GTK_ENTRY (widget)));
+ } else {
+ widget = gst_dialog_get_widget (tool->main_dialog, "user_settings_random_passwd");
+- oobs_user_set_password (user, gtk_entry_get_text (GTK_ENTRY (widget)));
++ oobs_user_set_crypted_password (user, gtk_entry_get_text (GTK_ENTRY (widget)));
+ }
+
+ group = get_main_group (oobs_user_get_login_name (user));
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..c4fa6bc5b
--- /dev/null
+++ b/sysutils/gnome-system-tools/pkg-plist
@@ -0,0 +1,334 @@
+bin/network-admin
+bin/services-admin
+bin/shares-admin
+bin/time-admin
+bin/users-admin
+lib/nautilus/extensions-1.0/libnautilus-gst-shares.a
+lib/nautilus/extensions-1.0/libnautilus-gst-shares.la
+lib/nautilus/extensions-1.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/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/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/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/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/nl/figures/service-properties.png
+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/sv/figures/services-tool.png
+share/gnome/help/services-admin/sv/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/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/oc/figures/shares-tool.png
+share/gnome/help/shares-admin/oc/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/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/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/nl/figures/time-map.png
+share/gnome/help/time-admin/nl/figures/time-servers.png
+share/gnome/help/time-admin/nl/figures/time-tool.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/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/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/users-tool.png
+share/gnome/help/users-admin/ca/users-admin.xml
+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/users-tool.png
+share/gnome/help/users-admin/fr/users-admin.xml
+share/gnome/help/users-admin/oc/figures/users-tool.png
+share/gnome/help/users-admin/oc/users-admin.xml
+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/users-tool.png
+share/gnome/help/users-admin/sv/users-admin.xml
+share/icons/hicolor/48x48/devices/irda.png
+share/icons/hicolor/48x48/devices/plip.png
+share/locale/am/LC_MESSAGES/gnome-system-tools.mo
+share/locale/ar/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/ca/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_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/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/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/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/ms/LC_MESSAGES/gnome-system-tools.mo
+share/locale/nb/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/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/sq/LC_MESSAGES/gnome-system-tools.mo
+share/locale/sr/LC_MESSAGES/gnome-system-tools.mo
+share/locale/sr@Latn/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/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-es.omf
+share/omf/network-admin/network-admin-fr.omf
+share/omf/network-admin/network-admin-oc.omf
+share/omf/network-admin/network-admin-sv.omf
+share/omf/services-admin/services-admin-C.omf
+share/omf/services-admin/services-admin-ca.omf
+share/omf/services-admin/services-admin-es.omf
+share/omf/services-admin/services-admin-fr.omf
+share/omf/services-admin/services-admin-oc.omf
+share/omf/services-admin/services-admin-sv.omf
+share/omf/shares-admin/shares-admin-C.omf
+share/omf/shares-admin/shares-admin-ca.omf
+share/omf/shares-admin/shares-admin-es.omf
+share/omf/shares-admin/shares-admin-fr.omf
+share/omf/shares-admin/shares-admin-oc.omf
+share/omf/shares-admin/shares-admin-sv.omf
+share/omf/time-admin/time-admin-C.omf
+share/omf/time-admin/time-admin-ca.omf
+share/omf/time-admin/time-admin-es.omf
+share/omf/time-admin/time-admin-fr.omf
+share/omf/time-admin/time-admin-oc.omf
+share/omf/time-admin/time-admin-ru.omf
+share/omf/time-admin/time-admin-sv.omf
+share/omf/users-admin/users-admin-C.omf
+share/omf/users-admin/users-admin-ca.omf
+share/omf/users-admin/users-admin-es.omf
+share/omf/users-admin/users-admin-fr.omf
+share/omf/users-admin/users-admin-oc.omf
+share/omf/users-admin/users-admin-ru.omf
+share/omf/users-admin/users-admin-sv.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
+@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/si/LC_MESSAGES
+@dirrmtry share/locale/si
+@dirrmtry share/locale/rw/LC_MESSAGES
+@dirrmtry share/locale/rw
+@dirrmtry share/locale/oc/LC_MESSAGES
+@dirrmtry share/locale/oc
+@dirrmtry share/locale/mg/LC_MESSAGES
+@dirrmtry share/locale/mg
+@dirrmtry share/locale/ku/LC_MESSAGES
+@dirrmtry share/locale/ku
+@dirrmtry share/locale/dz/LC_MESSAGES
+@dirrmtry share/locale/dz
+@dirrmtry share/locale/bn_IN/LC_MESSAGES
+@dirrmtry share/locale/bn_IN
+@dirrmtry share/locale/be@latin/LC_MESSAGES
+@dirrmtry share/locale/be@latin
+@dirrm share/icons/hicolor/48x48/devices
+@dirrm share/icons/hicolor/48x48
+@dirrm share/icons/hicolor
+@dirrm share/icons
+@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/oc/figures
+@dirrm share/gnome/help/users-admin/oc
+@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/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/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/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/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/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/sv/figures
+@dirrm share/gnome/help/shares-admin/sv
+@dirrm share/gnome/help/shares-admin/oc/figures
+@dirrm share/gnome/help/shares-admin/oc
+@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/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/sv/figures
+@dirrm share/gnome/help/services-admin/sv
+@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/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/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/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/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/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%%