From 3c6457b905b5e164db6fbb4c635e48d291eadbcd Mon Sep 17 00:00:00 2001 From: ahze Date: Mon, 16 Oct 2006 22:22:16 +0000 Subject: - Update to 2.17.1 git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7806 df743ca5-7f9a-e211-a948-0013205c9059 --- sysutils/gnome-control-center/Makefile | 72 +++++ sysutils/gnome-control-center/distinfo | 3 + ...tch-capplets_about-me_gnome-about-me-password.c | 15 + .../gnome-control-center/files/patch-configure | 28 ++ ...ettings-daemon_gnome-settings-multimedia-keys.c | 11 + .../patch-libwindow-settings_gnome-wm-manager.c | 11 + sysutils/gnome-control-center/pkg-descr | 1 + sysutils/gnome-control-center/pkg-plist | 322 +++++++++++++++++++++ 8 files changed, 463 insertions(+) create mode 100644 sysutils/gnome-control-center/Makefile create mode 100644 sysutils/gnome-control-center/distinfo create mode 100644 sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me-password.c create mode 100644 sysutils/gnome-control-center/files/patch-configure create mode 100644 sysutils/gnome-control-center/files/patch-gnome-settings-daemon_gnome-settings-multimedia-keys.c create mode 100644 sysutils/gnome-control-center/files/patch-libwindow-settings_gnome-wm-manager.c create mode 100644 sysutils/gnome-control-center/pkg-descr create mode 100644 sysutils/gnome-control-center/pkg-plist (limited to 'sysutils') diff --git a/sysutils/gnome-control-center/Makefile b/sysutils/gnome-control-center/Makefile new file mode 100644 index 000000000..0be48adfc --- /dev/null +++ b/sysutils/gnome-control-center/Makefile @@ -0,0 +1,72 @@ +# New ports collection makefile for: gnomecontrolcenter2 +# Date created: 04 May 2002 +# Whom: Joe Marcus Clarke +# +# $FreeBSD$ +# $MCom: ports/sysutils/gnome-control-center/Makefile,v 1.120 2006/10/03 00:02:39 ahze Exp $ +# + +PORTNAME= gnome-control-center +PORTVERSION= 2.17.1 +CATEGORIES= sysutils gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/control-center/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} +DISTNAME= control-center-${PORTVERSION} +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Control center for GNOME 2 project + +LIB_DEPENDS= xklavier.11:${PORTSDIR}/x11/libxklavier + +USE_BZIP2= yes +USE_GETTEXT= yes +USE_XLIB= yes +USE_GMAKE= yes +GNOME_DESKTOP_VERSION=2 +USE_GSTREAMER= good +WANT_GNOME= yes +USE_GNOME= gnomeprefix gnomehack intlhack metacity nautilus2 \ + gnomemenus desktopfileutils nautilus2 +GNU_CONFIGURE= yes +INSTALLS_OMF= yes +INSTALLS_ICONS= yes +USE_LDCONFIG= yes +CONFIGURE_ARGS= --enable-gstreamer=0.10 +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" + +GCONF_SCHEMAS= apps_gnome_settings_daemon_default_editor.schemas \ + apps_gnome_settings_daemon_keybindings.schemas \ + apps_gnome_settings_daemon_screensaver.schemas \ + desktop_gnome_font_rendering.schemas \ + desktop_gnome_peripherals_keyboard_xkb.schemas \ + fontilus.schemas themus.schemas + +.if defined(PACKAGE_BUILDING) || defined(PARALLEL_PACKAGE_BUILD) +.undef WITHOUT_GNOME +WITH_GNOME= yes +.endif + +.include + +.if ${HAVE_GNOME:Mevolutiondataserver}!="" +USE_GNOME+= evolutiondataserver +CONFIGURE_ARGS+=--enable-aboutme +PLIST_SUB+= ABOUTME="" +.else +CONFIGURE_ARGS+=--disable-aboutme +PLIST_SUB+= ABOUTME="@comment " +.endif + +post-patch: + @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|[{]prefix[}]/share/pixmaps|{datadir}/pixmaps|g' + @${REINPLACE_CMD} -e 's|/bin/tar|/usr/bin/tar|g ; \ + s|/bin/gzip|/usr/bin/gzip|g' \ + ${WRKSRC}/capplets/theme-switcher/gnome-theme-installer.c + +post-install: + @-update-desktop-database + +.include diff --git a/sysutils/gnome-control-center/distinfo b/sysutils/gnome-control-center/distinfo new file mode 100644 index 000000000..7a5309c66 --- /dev/null +++ b/sysutils/gnome-control-center/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/control-center-2.17.1.tar.bz2) = f790c3c294ec46c051fcaa1237e14ca8 +SHA256 (gnome2/control-center-2.17.1.tar.bz2) = e2824574e4d82888ce0391c27aaf3c2e694208e9bb8b17bcd74d660c029d0d22 +SIZE (gnome2/control-center-2.17.1.tar.bz2) = 1990928 diff --git a/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me-password.c b/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me-password.c new file mode 100644 index 000000000..69c01de97 --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me-password.c @@ -0,0 +1,15 @@ +--- capplets/about-me/gnome-about-me-password.c.orig Sun Jun 11 04:50:31 2006 ++++ capplets/about-me/gnome-about-me-password.c Tue Jun 13 00:02:27 2006 +@@ -52,6 +52,12 @@ + #include + #endif + ++#if __FreeBSD__ ++#include ++#include ++#include ++#endif ++ + #include "capplet-util.h" + #include "eel-alert-dialog.h" + diff --git a/sysutils/gnome-control-center/files/patch-configure b/sysutils/gnome-control-center/files/patch-configure new file mode 100644 index 000000000..94466c855 --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-configure @@ -0,0 +1,28 @@ +--- configure.orig Thu Jul 13 12:02:50 2006 ++++ configure Thu Jul 13 12:04:24 2006 +@@ -22229,6 +22229,7 @@ echo $ECHO_N "checking for $ac_func... $ + if eval "test \"\${$as_ac_var+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else ++ LIBS="-lintl $LIBS" + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -28440,7 +28441,7 @@ BONOBO_ACTIVATION_IDL_DIR="`$PKG_CONFIG + + + # dbus directory +-DBUS_SERVICES_DIR='$(datadir)'"/dbus-1/services" ++DBUS_SERVICES_DIR='$(prefix)'"/share/dbus-1/services" + + + cat >>confdefs.h <<_ACEOF +@@ -29126,7 +29127,7 @@ fi + + + cat >>confdefs.h <<_ACEOF +-#define GNOMECC_DATA_DIR "${real_prefix}/share/${GETTEXT_PACKAGE}" ++#define GNOMECC_DATA_DIR "${datadir}/${GETTEXT_PACKAGE}" + _ACEOF + + diff --git a/sysutils/gnome-control-center/files/patch-gnome-settings-daemon_gnome-settings-multimedia-keys.c b/sysutils/gnome-control-center/files/patch-gnome-settings-daemon_gnome-settings-multimedia-keys.c new file mode 100644 index 000000000..ed30cddab --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-gnome-settings-daemon_gnome-settings-multimedia-keys.c @@ -0,0 +1,11 @@ +--- gnome-settings-daemon/gnome-settings-multimedia-keys.c.orig Wed Jul 27 13:52:13 2005 ++++ gnome-settings-daemon/gnome-settings-multimedia-keys.c Wed Jul 27 13:52:32 2005 +@@ -828,7 +828,7 @@ + do_mail_action (acme); + break; + case SLEEP_KEY: +- do_sleep_action ("apm", "xset dpms force off"); ++ do_sleep_action ("zzz", "xset dpms force off"); + break; + case SCREENSAVER_KEY: + if ((cmd = g_find_program_in_path ("gnome-screensaver-command"))) diff --git a/sysutils/gnome-control-center/files/patch-libwindow-settings_gnome-wm-manager.c b/sysutils/gnome-control-center/files/patch-libwindow-settings_gnome-wm-manager.c new file mode 100644 index 000000000..95bbf2ea4 --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-libwindow-settings_gnome-wm-manager.c @@ -0,0 +1,11 @@ +--- libwindow-settings/gnome-wm-manager.c.orig Mon Nov 11 00:42:08 2002 ++++ libwindow-settings/gnome-wm-manager.c Mon Nov 11 00:43:26 2002 +@@ -227,7 +227,7 @@ + + done_scan = TRUE; + +- tempdir = gnome_unconditional_datadir_file ("gnome/wm-properties/"); ++ tempdir = gnome_unconditional_datadir_file ("wm-properties/"); + scan_wm_directory (tempdir, FALSE); + g_free (tempdir); + diff --git a/sysutils/gnome-control-center/pkg-descr b/sysutils/gnome-control-center/pkg-descr new file mode 100644 index 000000000..26d4dbe92 --- /dev/null +++ b/sysutils/gnome-control-center/pkg-descr @@ -0,0 +1 @@ +Configuration tools tightly integrated within the GNOME 2 desktop. diff --git a/sysutils/gnome-control-center/pkg-plist b/sysutils/gnome-control-center/pkg-plist new file mode 100644 index 000000000..bc35a765b --- /dev/null +++ b/sysutils/gnome-control-center/pkg-plist @@ -0,0 +1,322 @@ +%%ABOUTME%%bin/gnome-about-me +bin/gnome-accessibility-keyboard-properties +bin/gnome-at-properties +bin/gnome-background-properties +bin/gnome-control-center +bin/gnome-default-applications-properties +bin/gnome-display-properties +bin/gnome-font-properties +bin/gnome-font-viewer +bin/gnome-keybinding-properties +bin/gnome-keyboard-properties +bin/gnome-mouse-properties +bin/gnome-network-preferences +bin/gnome-sound-properties +bin/gnome-theme-manager +bin/gnome-theme-thumbnailer +bin/gnome-thumbnail-font +bin/gnome-typing-monitor +bin/gnome-ui-properties +bin/gnome-window-properties +bin/themus-theme-applier +etc/gnome-vfs-2.0/modules/font-method.conf +etc/gnome-vfs-2.0/modules/theme-method.conf +include/gnome-settings-daemon-2.0/gnome-settings-daemon/gnome-settings-client.h +include/gnome-window-settings-2.0/gnome-window-manager.h +include/gnome-window-settings-2.0/gnome-wm-manager.h +lib/gnome-vfs-2.0/modules/libfont-method.a +lib/gnome-vfs-2.0/modules/libfont-method.la +lib/gnome-vfs-2.0/modules/libfont-method.so +lib/gnome-vfs-2.0/modules/libtheme-method.a +lib/gnome-vfs-2.0/modules/libtheme-method.la +lib/gnome-vfs-2.0/modules/libtheme-method.so +lib/libgnome-window-settings.a +lib/libgnome-window-settings.la +lib/libgnome-window-settings.so +lib/libgnome-window-settings.so.1 +lib/nautilus/extensions-1.0/libnautilus-fontilus.a +lib/nautilus/extensions-1.0/libnautilus-fontilus.la +lib/nautilus/extensions-1.0/libnautilus-fontilus.so +lib/nautilus/extensions-1.0/libnautilus-themus.a +lib/nautilus/extensions-1.0/libnautilus-themus.la +lib/nautilus/extensions-1.0/libnautilus-themus.so +lib/window-manager-settings/libmetacity.a +lib/window-manager-settings/libmetacity.la +lib/window-manager-settings/libmetacity.so +libdata/pkgconfig/gnome-settings-daemon.pc +libdata/pkgconfig/gnome-window-settings-2.0.pc +libexec/gnome-settings-daemon +share/dbus-1/services/org.gnome.SettingsDaemon.service +share/gnome/applications/accessibility-keyboard.desktop +share/gnome/applications/at-properties.desktop +share/gnome/applications/background.desktop +share/gnome/applications/default-applications.desktop +share/gnome/applications/display-properties.desktop +share/gnome/applications/font-properties.desktop +%%ABOUTME%%share/gnome/applications/gnome-about-me.desktop +share/gnome/applications/gnome-font-viewer.desktop +share/gnome/applications/gnome-network-preferences.desktop +share/gnome/applications/gnome-settings-mouse.desktop +share/gnome/applications/gnome-settings-sound.desktop +share/gnome/applications/gnome-ui-properties.desktop +share/gnome/applications/gnomecc.desktop +share/gnome/applications/gtk-theme-selector.desktop +share/gnome/applications/keybinding.desktop +share/gnome/applications/keyboard.desktop +share/gnome/applications/themus-theme-applier.desktop +share/gnome/applications/window-properties.desktop +share/gnome/control-center-2.0/icons/display-capplet.png +share/gnome/control-center-2.0/interfaces/acme.glade +share/gnome/control-center-2.0/interfaces/apply-font.glade +share/gnome/control-center-2.0/interfaces/at-enable-dialog.glade +share/gnome/control-center-2.0/interfaces/font-properties.glade +%%ABOUTME%%share/gnome/control-center-2.0/interfaces/gnome-about-me.glade +share/gnome/control-center-2.0/interfaces/gnome-accessibility-keyboard-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-background-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-default-applications-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-keybinding-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-keyboard-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-mouse-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-network-preferences.glade +share/gnome/control-center-2.0/interfaces/gnome-ui-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-window-properties.glade +share/gnome/control-center-2.0/interfaces/modmap-dialog.glade +share/gnome/control-center-2.0/interfaces/sound-properties.glade +share/gnome/control-center-2.0/interfaces/theme-properties.glade +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-bouncekey.png +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-mousekey.png +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-slowkey.png +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-stickykey.png +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-togglekey.png +share/gnome/control-center-2.0/pixmaps/acme-eject.png +share/gnome/control-center-2.0/pixmaps/at-startup.png +share/gnome/control-center-2.0/pixmaps/at-support.png +share/gnome/control-center-2.0/pixmaps/bar-disabled.png +share/gnome/control-center-2.0/pixmaps/bar-green.png +share/gnome/control-center-2.0/pixmaps/bar-red.png +share/gnome/control-center-2.0/pixmaps/bar.png +share/gnome/control-center-2.0/pixmaps/double-click-maybe.png +share/gnome/control-center-2.0/pixmaps/double-click-off.png +share/gnome/control-center-2.0/pixmaps/double-click-on.png +%%ABOUTME%%share/gnome/control-center-2.0/pixmaps/gnome-about-me-lock-open.png +%%ABOUTME%%share/gnome/control-center-2.0/pixmaps/gnome-about-me-lock.png +share/gnome/control-center-2.0/pixmaps/gnome-speakernotes-muted.png +share/gnome/control-center-2.0/pixmaps/gnome-speakernotes.png +share/gnome/control-center-2.0/pixmaps/keyboard-bell.png +share/gnome/control-center-2.0/pixmaps/keyboard-cursor.png +share/gnome/control-center-2.0/pixmaps/keyboard-repeat.png +share/gnome/control-center-2.0/pixmaps/keyboard-volume.png +share/gnome/control-center-2.0/pixmaps/mouse-cursor-normal-large.png +share/gnome/control-center-2.0/pixmaps/mouse-cursor-normal.png +share/gnome/control-center-2.0/pixmaps/mouse-cursor-white-large.png +share/gnome/control-center-2.0/pixmaps/mouse-cursor-white.png +share/gnome/control-center-2.0/pixmaps/mouse-left.png +share/gnome/control-center-2.0/pixmaps/mouse-right.png +share/gnome/control-center-2.0/pixmaps/ocean-stripes.png +share/gnome/control-center-2.0/pixmaps/stop.png +share/gnome/control-center-2.0/pixmaps/subpixel-bgr.png +share/gnome/control-center-2.0/pixmaps/subpixel-rgb.png +share/gnome/control-center-2.0/pixmaps/subpixel-vbgr.png +share/gnome/control-center-2.0/pixmaps/subpixel-vrgb.png +share/gnome/control-center-2.0/pixmaps/theme-thumbnailing.png +share/gnome/control-center-2.0/pixmaps/visual-bell.png +share/gnome/control-center-2.0/xrdb/Editres.ad +share/gnome/control-center-2.0/xrdb/Emacs.ad +share/gnome/control-center-2.0/xrdb/General.ad +share/gnome/control-center-2.0/xrdb/Motif.ad +share/gnome/control-center-2.0/xrdb/Tk.ad +share/gnome/control-center-2.0/xrdb/Xaw.ad +share/gnome/cursor-fonts/cursor-large-white.pcf +share/gnome/cursor-fonts/cursor-large.pcf +share/gnome/cursor-fonts/cursor-white.pcf +share/gnome/desktop-directories/font-method.directory +share/gnome/desktop-directories/theme-method.directory +share/gnome/gnome-default-applications/gnome-default-applications.xml +share/gnome/help/control-center/C/config-accessibility-keyboard.xml +share/gnome/help/control-center/C/config-background.xml +share/gnome/help/control-center/C/config-behavior.xml +share/gnome/help/control-center/C/config-cds.xml +share/gnome/help/control-center/C/config-default-apps.xml +share/gnome/help/control-center/C/config-file-type.xml +share/gnome/help/control-center/C/config-hints.xml +share/gnome/help/control-center/C/config-html.xml +share/gnome/help/control-center/C/config-kbd.xml +share/gnome/help/control-center/C/config-keybindings.xml +share/gnome/help/control-center/C/config-mouse.xml +share/gnome/help/control-center/C/config-screensaver.xml +share/gnome/help/control-center/C/config-sound.xml +share/gnome/help/control-center/C/config-themes.xml +share/gnome/help/control-center/C/control-center.xml +share/gnome/help/control-center/es/control-center.xml +share/gnome/help/control-center/fr/control-center.xml +share/gnome/help/control-center/ru/control-center.xml +share/gnome/help/control-center/sv/control-center.xml +share/gnome/help/control-center/zh_CN/control-center.xml +share/gnome/idl/ConfigArchiver.idl +share/gnome/idl/GNOME_SettingsDaemon.idl +share/gnome/omf/control-center/control-center-C.omf +share/gnome/omf/control-center/control-center-es.omf +share/gnome/omf/control-center/control-center-fr.omf +share/gnome/omf/control-center/control-center-ru.omf +share/gnome/omf/control-center/control-center-sv.omf +share/gnome/omf/control-center/control-center-zh_CN.omf +share/gnome/pixmaps/display-capplet.png +share/icons/hicolor/48x48/apps/gnome-control-center.png +share/locale/af/LC_MESSAGES/control-center-2.0.mo +share/locale/am/LC_MESSAGES/control-center-2.0.mo +share/locale/ar/LC_MESSAGES/control-center-2.0.mo +share/locale/az/LC_MESSAGES/control-center-2.0.mo +share/locale/be/LC_MESSAGES/control-center-2.0.mo +share/locale/bg/LC_MESSAGES/control-center-2.0.mo +share/locale/bn/LC_MESSAGES/control-center-2.0.mo +share/locale/bn_IN/LC_MESSAGES/control-center-2.0.mo +share/locale/br/LC_MESSAGES/control-center-2.0.mo +share/locale/bs/LC_MESSAGES/control-center-2.0.mo +share/locale/ca/LC_MESSAGES/control-center-2.0.mo +share/locale/cs/LC_MESSAGES/control-center-2.0.mo +share/locale/cy/LC_MESSAGES/control-center-2.0.mo +share/locale/da/LC_MESSAGES/control-center-2.0.mo +share/locale/de/LC_MESSAGES/control-center-2.0.mo +share/locale/dz/LC_MESSAGES/control-center-2.0.mo +share/locale/el/LC_MESSAGES/control-center-2.0.mo +share/locale/en_CA/LC_MESSAGES/control-center-2.0.mo +share/locale/en_GB/LC_MESSAGES/control-center-2.0.mo +share/locale/es/LC_MESSAGES/control-center-2.0.mo +share/locale/et/LC_MESSAGES/control-center-2.0.mo +share/locale/eu/LC_MESSAGES/control-center-2.0.mo +share/locale/fa/LC_MESSAGES/control-center-2.0.mo +share/locale/fi/LC_MESSAGES/control-center-2.0.mo +share/locale/fr/LC_MESSAGES/control-center-2.0.mo +share/locale/ga/LC_MESSAGES/control-center-2.0.mo +share/locale/gl/LC_MESSAGES/control-center-2.0.mo +share/locale/gu/LC_MESSAGES/control-center-2.0.mo +share/locale/he/LC_MESSAGES/control-center-2.0.mo +share/locale/hi/LC_MESSAGES/control-center-2.0.mo +share/locale/hr/LC_MESSAGES/control-center-2.0.mo +share/locale/hu/LC_MESSAGES/control-center-2.0.mo +share/locale/id/LC_MESSAGES/control-center-2.0.mo +share/locale/is/LC_MESSAGES/control-center-2.0.mo +share/locale/it/LC_MESSAGES/control-center-2.0.mo +share/locale/ja/LC_MESSAGES/control-center-2.0.mo +share/locale/ka/LC_MESSAGES/control-center-2.0.mo +share/locale/ko/LC_MESSAGES/control-center-2.0.mo +share/locale/ku/LC_MESSAGES/control-center-2.0.mo +share/locale/lt/LC_MESSAGES/control-center-2.0.mo +share/locale/lv/LC_MESSAGES/control-center-2.0.mo +share/locale/mg/LC_MESSAGES/control-center-2.0.mo +share/locale/mk/LC_MESSAGES/control-center-2.0.mo +share/locale/ml/LC_MESSAGES/control-center-2.0.mo +share/locale/mn/LC_MESSAGES/control-center-2.0.mo +share/locale/mr/LC_MESSAGES/control-center-2.0.mo +share/locale/ms/LC_MESSAGES/control-center-2.0.mo +share/locale/nb/LC_MESSAGES/control-center-2.0.mo +share/locale/ne/LC_MESSAGES/control-center-2.0.mo +share/locale/nl/LC_MESSAGES/control-center-2.0.mo +share/locale/nn/LC_MESSAGES/control-center-2.0.mo +share/locale/nso/LC_MESSAGES/control-center-2.0.mo +share/locale/or/LC_MESSAGES/control-center-2.0.mo +share/locale/pa/LC_MESSAGES/control-center-2.0.mo +share/locale/pl/LC_MESSAGES/control-center-2.0.mo +share/locale/pt/LC_MESSAGES/control-center-2.0.mo +share/locale/pt_BR/LC_MESSAGES/control-center-2.0.mo +share/locale/ro/LC_MESSAGES/control-center-2.0.mo +share/locale/ru/LC_MESSAGES/control-center-2.0.mo +share/locale/rw/LC_MESSAGES/control-center-2.0.mo +share/locale/sk/LC_MESSAGES/control-center-2.0.mo +share/locale/sl/LC_MESSAGES/control-center-2.0.mo +share/locale/sq/LC_MESSAGES/control-center-2.0.mo +share/locale/sr/LC_MESSAGES/control-center-2.0.mo +share/locale/sr@Latn/LC_MESSAGES/control-center-2.0.mo +share/locale/sv/LC_MESSAGES/control-center-2.0.mo +share/locale/ta/LC_MESSAGES/control-center-2.0.mo +share/locale/te/LC_MESSAGES/control-center-2.0.mo +share/locale/th/LC_MESSAGES/control-center-2.0.mo +share/locale/tr/LC_MESSAGES/control-center-2.0.mo +share/locale/uk/LC_MESSAGES/control-center-2.0.mo +share/locale/vi/LC_MESSAGES/control-center-2.0.mo +share/locale/wa/LC_MESSAGES/control-center-2.0.mo +share/locale/xh/LC_MESSAGES/control-center-2.0.mo +share/locale/zh_CN/LC_MESSAGES/control-center-2.0.mo +share/locale/zh_HK/LC_MESSAGES/control-center-2.0.mo +share/locale/zh_TW/LC_MESSAGES/control-center-2.0.mo +share/locale/zu/LC_MESSAGES/control-center-2.0.mo +@dirrm share/gnome/omf/control-center +@dirrm share/gnome/help/control-center/zh_CN +@dirrm share/gnome/help/control-center/ru/ +@dirrm share/gnome/help/control-center/sv +@dirrm share/gnome/help/control-center/fr +@dirrm share/gnome/help/control-center/es +@dirrm share/gnome/help/control-center/C +@dirrm share/gnome/help/control-center +@dirrm share/gnome/gnome-default-applications +@dirrm share/gnome/gnome-background-properties +@dirrm share/gnome/desktop-directories +@dirrm share/gnome/cursor-fonts +@dirrm share/gnome/control-center-2.0/xrdb +@dirrm share/gnome/control-center-2.0/pixmaps +@dirrm share/gnome/control-center-2.0/interfaces +@dirrmtry share/gnome/control-center-2.0/icons +@dirrm lib/window-manager-settings +@dirrm include/gnome-window-settings-2.0 +@dirrm include/gnome-settings-daemon-2.0/gnome-settings-daemon +@dirrm include/gnome-settings-daemon-2.0 +@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true +@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true +@dirrmtry share/locale/zu/LC_MESSAGES +@dirrmtry share/locale/zu +@dirrmtry share/locale/zh_TW/LC_MESSAGES +@dirrmtry share/locale/zh_TW +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/zh_CN/LC_MESSAGES +@dirrmtry share/locale/zh_CN +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/uk/LC_MESSAGES +@dirrmtry share/locale/uk +@dirrmtry share/locale/te/LC_MESSAGES +@dirrmtry share/locale/te +@dirrmtry share/locale/sr/LC_MESSAGES +@dirrmtry share/locale/sr +@dirrmtry share/locale/sl/LC_MESSAGES +@dirrmtry share/locale/sl +@dirrmtry share/locale/sk/LC_MESSAGES +@dirrmtry share/locale/sk +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/ro/LC_MESSAGES +@dirrmtry share/locale/ro +@dirrmtry share/locale/pt/LC_MESSAGES +@dirrmtry share/locale/pt +@dirrmtry share/locale/pl/LC_MESSAGES +@dirrmtry share/locale/pl +@dirrmtry share/locale/nso/LC_MESSAGES +@dirrmtry share/locale/nso +@dirrmtry share/locale/nn/LC_MESSAGES +@dirrmtry share/locale/nn +@dirrmtry share/locale/ne/LC_MESSAGES +@dirrmtry share/locale/ne +@dirrmtry share/locale/mr/LC_MESSAGES +@dirrmtry share/locale/mr +@dirrmtry share/locale/mg/LC_MESSAGES +@dirrmtry share/locale/mg +@dirrmtry share/locale/ku/LC_MESSAGES +@dirrmtry share/locale/ku +@dirrmtry share/locale/ko/LC_MESSAGES +@dirrmtry share/locale/ko +@dirrmtry share/locale/gl/LC_MESSAGES +@dirrmtry share/locale/gl +@dirrmtry share/locale/fi/LC_MESSAGES +@dirrmtry share/locale/fi +@dirrmtry share/locale/el/LC_MESSAGES +@dirrmtry share/locale/el +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/cs/LC_MESSAGES +@dirrmtry share/locale/cs +@dirrmtry share/locale/ca/LC_MESSAGES +@dirrmtry share/locale/ca +@dirrmtry share/locale/bn_IN/LC_MESSAGES +@dirrmtry share/locale/bn_IN +@dirrmtry share/locale/be/LC_MESSAGES +@dirrmtry share/locale/be -- cgit v1.2.3