From 2d4722abfbdaa5d50d994ffcaf3c20c316902cd6 Mon Sep 17 00:00:00 2001 From: marcus Date: Tue, 13 Nov 2007 06:33:41 +0000 Subject: Update to 2.12.1. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9927 df743ca5-7f9a-e211-a948-0013205c9059 --- x11/gnome-applets/Makefile | 107 ++ x11/gnome-applets/distinfo | 3 + x11/gnome-applets/files/patch-aa | 104 ++ .../files/patch-battstat_acpi-freebsd.c | 152 ++ .../files/patch-battstat_acpi-freebsd.h | 78 + .../files/patch-battstat_battstat_applet.c | 21 + .../files/patch-battstat_power-management.c | 123 ++ x11/gnome-applets/files/patch-cpufreq-freebsd | 436 ++++++ .../files/patch-cpufreq-selector-freebsd | 228 +++ .../patch-invest-applet_invest_invest-applet.py | 13 + .../files/patch-invest-applet_invest_invest-chart | 13 + x11/gnome-applets/files/patch-mixer_applet.c | 11 + .../files/patch-modemlights_Makefile.in | 10 + x11/gnome-applets/pkg-descr | 3 + x11/gnome-applets/pkg-plist | 1641 ++++++++++++++++++++ 15 files changed, 2943 insertions(+) create mode 100644 x11/gnome-applets/Makefile create mode 100644 x11/gnome-applets/distinfo create mode 100644 x11/gnome-applets/files/patch-aa create mode 100644 x11/gnome-applets/files/patch-battstat_acpi-freebsd.c create mode 100644 x11/gnome-applets/files/patch-battstat_acpi-freebsd.h create mode 100644 x11/gnome-applets/files/patch-battstat_battstat_applet.c create mode 100644 x11/gnome-applets/files/patch-battstat_power-management.c create mode 100644 x11/gnome-applets/files/patch-cpufreq-freebsd create mode 100644 x11/gnome-applets/files/patch-cpufreq-selector-freebsd create mode 100644 x11/gnome-applets/files/patch-invest-applet_invest_invest-applet.py create mode 100644 x11/gnome-applets/files/patch-invest-applet_invest_invest-chart create mode 100644 x11/gnome-applets/files/patch-mixer_applet.c create mode 100644 x11/gnome-applets/files/patch-modemlights_Makefile.in create mode 100644 x11/gnome-applets/pkg-descr create mode 100644 x11/gnome-applets/pkg-plist (limited to 'x11/gnome-applets') diff --git a/x11/gnome-applets/Makefile b/x11/gnome-applets/Makefile new file mode 100644 index 000000000..2059181a7 --- /dev/null +++ b/x11/gnome-applets/Makefile @@ -0,0 +1,107 @@ +# New ports collection makefile for: gnomeapplets2 +# Date created: 26th May 2000 +# Whom: Joe Marcus Clarke +# +# $FreeBSD$ +# $MCom: ports/x11/gnome-applets/Makefile,v 1.165 2007/09/16 17:19:03 ahze Exp $ +# + +PORTNAME= gnome-applets +PORTVERSION= 2.21.1 +CATEGORIES= x11 gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Applets components for the GNOME 2 Desktop Environment + +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/system-tools-backends-2.0.pc:${PORTSDIR}/sysutils/system-tools-backends \ + ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-control-center +LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop \ + xklavier.11:${PORTSDIR}/x11/libxklavier \ + gucharmap.6:${PORTSDIR}/deskutils/gucharmap +RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/system-tools-backends-2.0.pc:${PORTSDIR}/sysutils/system-tools-backends \ + ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-control-center + +USE_GETTEXT= yes +USE_BZIP2= yes +USE_XLIB= yes +USE_GMAKE= yes +GNOME_DESKTOP_VERSION=2 +INSTALLS_OMF= yes +INSTALLS_ICONS= yes +USE_LDCONFIG= yes +USE_GNOME= gnomeprefix gnomehack intlhack gnomepanel \ + gail gnomedocutils libgnomekbd +WANT_GNOME= yes +USE_GSTREAMER= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-gstreamer=0.10 \ + --enable-stickynotes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ + LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ + OS_SYS="/usr/include" + +GCONF_SCHEMAS= charpick.schemas drivemount.schemas geyes.schemas \ + gweather.schemas mixer.schemas multiload.schemas \ + stickynotes.schemas + +OPTIONS= MINI_COMMANDER "Enable mini-commander applet" off + +.if defined(PACKAGE_BUILDING) +.undef WITHOUT_GNOME +WITH_GNOME= yes +.endif + +.include + +.if exists(${LOCALBASE}/libdata/pkgconfig/libnotify.pc) || \ + !defined(WITHOUT_LIBNOTIFY) +LIB_DEPENDS+= notify:${PORTSDIR}/devel/libnotify +.endif + +.if ${ARCH} != "i386" && ${ARCH} != "amd64" +CONFIGURE_ENV+= CFLAGS="${CFLAGS} -fPIC" +PLIST_SUB= BATTERY="@comment " +.else +GCONF_SCHEMAS+= battstat.schemas +PLIST_SUB= BATTERY="" +.endif + +.if ${ARCH} != "i386" && ${ARCH} != "amd64" +PLIST_SUB+= CPUFREQ="@comment " +.else +PLIST_SUB+= CPUFREQ="" +GCONF_SCHEMAS+= cpufreq-applet.schemas +.endif + +.if defined(WITH_MINI_COMMANDER) +CONFIGURE_ARGS+= --enable-mini-commander +GCONF_SCHEMAS+= mini-commander-global.schemas mini-commander.schemas +PLIST_SUB+= COMMANDER="" +.else +PLIST_SUB+= COMMANDER="@comment " +.endif + +.if ( exists(${pygnomedesktop_DETECT}) ) || \ + ( ( ${HAVE_GNOME:Mpygnomedesktop}!="" ) && ${ARCH}!="sparc64" ) +USE_PYTHON= yes +.include "${PORTSDIR}/Mk/bsd.python.mk" +USE_GNOME+= pygnomedesktop +PLIST_SUB+= PYTHON="" +.else +PLIST_SUB+= PYTHON="@comment " +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|g' \ + ${WRKSRC}/libgweather/weather-met.c + @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ + 's|" == "|" = "|g' +.if !defined(USE_PYTHON) + @${REINPLACE_CMD} -e 's|HAVE_PYGTK="yes"|HAVE_PYGTK="no"|' \ + ${WRKSRC}/configure +.endif + +.include diff --git a/x11/gnome-applets/distinfo b/x11/gnome-applets/distinfo new file mode 100644 index 000000000..2d160dc23 --- /dev/null +++ b/x11/gnome-applets/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/gnome-applets-2.21.1.tar.bz2) = 3abfa92d933ed2eda39008c60141aa55 +SHA256 (gnome2/gnome-applets-2.21.1.tar.bz2) = f207cf766de9c4bdcf59cbd8669a81efc3e101f592a1c2cae5e397a9032e406c +SIZE (gnome2/gnome-applets-2.21.1.tar.bz2) = 7512052 diff --git a/x11/gnome-applets/files/patch-aa b/x11/gnome-applets/files/patch-aa new file mode 100644 index 000000000..7d1f86084 --- /dev/null +++ b/x11/gnome-applets/files/patch-aa @@ -0,0 +1,104 @@ +--- configure.orig 2007-07-09 18:13:48.000000000 -0400 ++++ configure 2007-07-09 18:14:19.000000000 -0400 +@@ -25117,7 +25117,7 @@ _ACEOF + + test "x$prefix" = xNONE && prefix="$ac_default_prefix" + test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' +- ac_define_dir=`eval echo $"${datadir}/locale"` ++ ac_define_dir=`eval echo "${datadir}/locale"` + ac_define_dir=`eval echo $ac_define_dir` + GNOMELOCALEDIR="$ac_define_dir" + +@@ -27157,8 +27157,8 @@ fi + + ;; + # list of supported OS cores that do not use libapm +- i386-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*kfreebsd*-gnu) +- if -n "${OS_SYS}" ; then ++ i386-*-freebsd*|amd64-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*kfreebsd*-gnu) ++ if test -n "${OS_SYS}" ; then + ACPIINC="-I${OS_SYS}" + else + ACPIINC="-I/usr/src/sys" +@@ -27924,7 +27924,7 @@ echo "${ECHO_T}no" >&6; } + fi + + +- stb="system-tools-backends" ++ stb="system-tools-backends-2.0" + + if test x$PKG_CONFIG != xno ; then + if $PKG_CONFIG --atleast-pkgconfig-version 0.12 ; then +@@ -28166,6 +28166,9 @@ if test x$disable_cpufreq = xno; then + *linux*) + build_cpufreq_applet=yes + ;; ++ i386-*-freebsd*|amd64-*-freebsd*) ++ build_cpufreq_applet=yes ++ ;; + *) + { echo "$as_me:$LINENO: WARNING: ${host} is not supported by cpufreq applet, not building" >&5 + echo "$as_me: WARNING: ${host} is not supported by cpufreq applet, not building" >&2;} +@@ -28684,7 +28687,7 @@ gladedir="${pkgdatadir}/glade" + + test "x$prefix" = xNONE && prefix="$ac_default_prefix" + test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' +- ac_define_dir=`eval echo $"${iconsdir}"` ++ ac_define_dir=`eval echo "${iconsdir}"` + ac_define_dir=`eval echo $ac_define_dir` + GNOME_ICONDIR="$ac_define_dir" + +@@ -28697,7 +28700,7 @@ _ACEOF + + test "x$prefix" = xNONE && prefix="$ac_default_prefix" + test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' +- ac_define_dir=`eval echo $"${pixmapsdir}"` ++ ac_define_dir=`eval echo "${pixmapsdir}"` + ac_define_dir=`eval echo $ac_define_dir` + GNOME_PIXMAPSDIR="$ac_define_dir" + +@@ -28710,7 +28713,7 @@ _ACEOF + + test "x$prefix" = xNONE && prefix="$ac_default_prefix" + test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' +- ac_define_dir=`eval echo $"${gladedir}"` ++ ac_define_dir=`eval echo "${gladedir}"` + ac_define_dir=`eval echo $ac_define_dir` + GNOME_GLADEDIR="$ac_define_dir" + +@@ -28723,7 +28726,7 @@ _ACEOF + + test "x$prefix" = xNONE && prefix="$ac_default_prefix" + test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' +- ac_define_dir=`eval echo $"${datadir}"` ++ ac_define_dir=`eval echo "${datadir}"` + ac_define_dir=`eval echo $ac_define_dir` + DATADIR="$ac_define_dir" + +@@ -28736,7 +28739,7 @@ _ACEOF + + test "x$prefix" = xNONE && prefix="$ac_default_prefix" + test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' +- ac_define_dir=`eval echo $"${sysconfdir}"` ++ ac_define_dir=`eval echo "${sysconfdir}"` + ac_define_dir=`eval echo $ac_define_dir` + SYSCONFDIR="$ac_define_dir" + +@@ -28749,7 +28752,7 @@ _ACEOF + + test "x$prefix" = xNONE && prefix="$ac_default_prefix" + test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' +- ac_define_dir=`eval echo $"${libdir}"` ++ ac_define_dir=`eval echo "${libdir}"` + ac_define_dir=`eval echo $ac_define_dir` + LIBDIR="$ac_define_dir" + +@@ -28762,7 +28765,7 @@ _ACEOF + + test "x$prefix" = xNONE && prefix="$ac_default_prefix" + test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' +- ac_define_dir=`eval echo $"$prefix"` ++ ac_define_dir=`eval echo "$prefix"` + ac_define_dir=`eval echo $ac_define_dir` + PREFIX="$ac_define_dir" + diff --git a/x11/gnome-applets/files/patch-battstat_acpi-freebsd.c b/x11/gnome-applets/files/patch-battstat_acpi-freebsd.c new file mode 100644 index 000000000..48746fa03 --- /dev/null +++ b/x11/gnome-applets/files/patch-battstat_acpi-freebsd.c @@ -0,0 +1,152 @@ +--- battstat/acpi-freebsd.c.orig Sun Jul 3 16:41:26 2005 ++++ battstat/acpi-freebsd.c Sun Jul 3 16:49:55 2005 +@@ -31,9 +31,13 @@ + + #include + #include ++#include + #include ++#include + #include ++#if defined(__i386__) + #include ++#endif + #include + #include + #include +@@ -92,16 +96,36 @@ gboolean + acpi_freebsd_init(struct acpi_info * acpiinfo) + { + int acpi_fd; ++ int event_fd; + + g_assert(acpiinfo); + +- acpi_fd = open(ACPIDEV, O_RDONLY); +- if (acpi_fd >= 0) { +- acpiinfo->acpifd = acpi_fd; ++ if (acpiinfo->acpifd == -1) { ++ acpi_fd = open(ACPIDEV, O_RDONLY); ++ if (acpi_fd >= 0) { ++ acpiinfo->acpifd = acpi_fd; ++ } ++ else { ++ acpiinfo->acpifd = -1; ++ return FALSE; ++ } + } +- else { +- acpiinfo->acpifd = -1; +- return FALSE; ++ ++ event_fd = socket(PF_UNIX, SOCK_STREAM, 0); ++ if (event_fd >= 0) { ++ struct sockaddr_un addr; ++ addr.sun_family = AF_UNIX; ++ strcpy(addr.sun_path, "/var/run/devd.pipe"); ++ if (connect(event_fd, (struct sockaddr *) &addr, sizeof(addr)) == 0) { ++ acpiinfo->event_fd = event_fd; ++ acpiinfo->event_inited = TRUE; ++ acpiinfo->channel = g_io_channel_unix_new(event_fd); ++ } ++ else { ++ close(event_fd); ++ acpiinfo->event_fd = -1; ++ acpiinfo->event_inited = FALSE; ++ } + } + + update_battery_info(acpiinfo); +@@ -110,6 +134,65 @@ acpi_freebsd_init(struct acpi_info * acp + return TRUE; + } + ++#define ACPI_EVENT_IGNORE 0 ++#define ACPI_EVENT_AC 1 ++#define ACPI_EVENT_BATTERY_INFO 2 ++ ++static int parse_acpi_event(GString *buffer) ++{ ++ if (strstr(buffer->str, "system=ACPI")) { ++ if (strstr(buffer->str, "subsystem=ACAD")) ++ return ACPI_EVENT_AC; ++ if (strstr(buffer->str, "subsystem=CMBAT")) ++ return ACPI_EVENT_BATTERY_INFO; ++ } ++ ++ return ACPI_EVENT_IGNORE; ++} ++ ++void acpi_freebsd_update(struct acpi_info *acpiinfo) ++{ ++ /* XXX This is needed for systems where devd does not have permissions ++ * to allow for event-driven updates. ++ */ ++ update_ac_info(acpiinfo); ++ update_battery_info(acpiinfo); ++} ++ ++gboolean acpi_process_event(struct acpi_info *acpiinfo, gboolean *read_error) ++{ ++ gsize i; ++ int evt; ++ gboolean result = FALSE; ++ GString *buffer; ++ GIOStatus stat; ++ buffer = g_string_new(NULL); ++ ++ *read_error = FALSE; ++ stat = g_io_channel_read_line_string(acpiinfo->channel, buffer, &i, NULL); ++ ++ if (stat == G_IO_STATUS_ERROR || stat == G_IO_STATUS_EOF) { ++ *read_error = TRUE; ++ g_string_free(buffer, TRUE); ++ return FALSE; ++ } ++ ++ evt = parse_acpi_event(buffer); ++ switch (evt) { ++ case ACPI_EVENT_AC: ++ update_ac_info(acpiinfo); ++ result = TRUE; ++ break; ++ case ACPI_EVENT_BATTERY_INFO: ++ update_battery_info(acpiinfo); ++ result = TRUE; ++ break; ++ } ++ ++ g_string_free(buffer, TRUE); ++ return result; ++} ++ + void + acpi_freebsd_cleanup(struct acpi_info * acpiinfo) + { +@@ -119,21 +202,12 @@ acpi_freebsd_cleanup(struct acpi_info * + close(acpiinfo->acpifd); + acpiinfo->acpifd = -1; + } +-} + +-/* XXX This is a hack since user-land applications can't get ACPI events yet. +- * Devd provides this (or supposedly provides this), but you need to be +- * root to access devd. +- */ +-gboolean +-acpi_process_event(struct acpi_info * acpiinfo) +-{ +- g_assert(acpiinfo); +- +- update_ac_info(acpiinfo); +- update_battery_info(acpiinfo); +- +- return TRUE; ++ if (acpiinfo->event_fd >= 0) { ++ g_io_channel_unref(acpiinfo->channel); ++ close(acpiinfo->event_fd); ++ acpiinfo->event_fd = -1; ++ } + } + + gboolean diff --git a/x11/gnome-applets/files/patch-battstat_acpi-freebsd.h b/x11/gnome-applets/files/patch-battstat_acpi-freebsd.h new file mode 100644 index 000000000..918cd59eb --- /dev/null +++ b/x11/gnome-applets/files/patch-battstat_acpi-freebsd.h @@ -0,0 +1,78 @@ +--- battstat/acpi-freebsd.h.orig Sun Jul 3 16:50:22 2005 ++++ battstat/acpi-freebsd.h Sun Jul 3 16:54:14 2005 +@@ -29,61 +29,31 @@ + #define ACPI_LIFE "hw.acpi.battery.life" + #define ACPI_STATE "hw.acpi.battery.state" + +-struct acpi_info { +- gboolean ac_online; +- int acpifd; +- int max_capacity; +- int low_capacity; +- int critical_capacity; ++/* XXX: AMD64 does not have machine/apm_bios.h. */ ++#if !defined(__i386__) ++struct apm_info { ++ guint ai_acline; ++ guint ai_batt_stat; ++ guint ai_batt_life; ++ int ai_batt_time; ++ guint ai_status; + }; +- +-gboolean acpi_freebsd_read(struct apm_info *apminfo, struct acpi_info * acpiinfo); +-gboolean acpi_process_event(struct acpi_info * acpiinfo); +-gboolean acpi_freebsd_init(struct acpi_info * acpiinfo); +-void acpi_freebsd_cleanup(struct acpi_info * acpiinfo); +- +-#endif /* __ACPI_FREEBSD_H__ */ +-/* +- * Copyright (C) 2004 by Joe Marcus Clarke +- * +- * This program is free software; you can redistribute it and/or modify +- * it under the terms of the GNU General Public License as published by +- * the Free Software Foundation; either version 2 of the License, or +- * (at your option) any later version. +- * +- * This program is distributed in the hope that it will be useful, +- * but WITHOUT ANY WARRANTY; without even the implied warranty of +- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +- * GNU General Public License for more details. +- * +- * You should have received a copy of the GNU General Public License +- * along with this program; if not, write to the Free Software +- * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. +- */ +- +-#ifndef __ACPI_FREEBSD_H__ +-#define __ACPI_FREEBSD_H__ +- +-#define ACPIDEV "/dev/acpi" +- +-#define BATT_MIN 0 +-#define BATT_MAX 64 +- +-#define ACPI_ACLINE "hw.acpi.acline" +-#define ACPI_TIME "hw.acpi.battery.time" +-#define ACPI_LIFE "hw.acpi.battery.life" +-#define ACPI_STATE "hw.acpi.battery.state" ++#endif + + struct acpi_info { + gboolean ac_online; ++ gboolean event_inited; + int acpifd; ++ int event_fd; + int max_capacity; + int low_capacity; + int critical_capacity; ++ GIOChannel * channel; + }; + + gboolean acpi_freebsd_read(struct apm_info *apminfo, struct acpi_info * acpiinfo); +-gboolean acpi_process_event(struct acpi_info * acpiinfo); ++void acpi_freebsd_update(struct acpi_info * acpiinfo); ++gboolean acpi_process_event(struct acpi_info * acpiinfo, gboolean *read_error); + gboolean acpi_freebsd_init(struct acpi_info * acpiinfo); + void acpi_freebsd_cleanup(struct acpi_info * acpiinfo); + diff --git a/x11/gnome-applets/files/patch-battstat_battstat_applet.c b/x11/gnome-applets/files/patch-battstat_battstat_applet.c new file mode 100644 index 000000000..a95b7b569 --- /dev/null +++ b/x11/gnome-applets/files/patch-battstat_battstat_applet.c @@ -0,0 +1,21 @@ +--- battstat/battstat_applet.c.orig Fri Aug 19 22:13:49 2005 ++++ battstat/battstat_applet.c Tue Aug 23 20:37:13 2005 +@@ -430,14 +430,14 @@ battery_full_notify (GtkWidget *applet) + static void + battery_full_dialog (GtkWidget *applet) + { +- /* first attempt to use libnotify */ +- if (battery_full_notify (applet)) +- return; +- + GtkWidget *dialog, *hbox, *image, *label; + GdkPixbuf *pixbuf; + + gchar *new_label; ++ /* first attempt to use libnotify */ ++ if (battery_full_notify (applet)) ++ return; ++ + dialog = gtk_dialog_new_with_buttons ( + _("Battery Notice"), + NULL, diff --git a/x11/gnome-applets/files/patch-battstat_power-management.c b/x11/gnome-applets/files/patch-battstat_power-management.c new file mode 100644 index 000000000..9cea2d65b --- /dev/null +++ b/x11/gnome-applets/files/patch-battstat_power-management.c @@ -0,0 +1,123 @@ +--- battstat/power-management.c.orig Thu Aug 25 23:45:47 2005 ++++ battstat/power-management.c Tue Aug 30 01:28:40 2005 +@@ -61,9 +61,7 @@ + + static const char *apm_readinfo (BatteryStatus *status); + static int pm_initialised; +-#ifdef HAVE_HAL +-static int using_hal; +-#endif ++static int using_hal = FALSE; + + /* + * What follows is a series of platform-specific apm_readinfo functions +@@ -173,16 +171,40 @@ apm_readinfo (BatteryStatus *status) + + #elif __FreeBSD__ + ++#if defined(__i386__) + #include ++#endif + #include "acpi-freebsd.h" + + static struct acpi_info acpiinfo; + static gboolean using_acpi; + static int acpi_count; ++static int acpiwatch; + static struct apm_info apminfo; + ++gboolean acpi_freebsd_read(struct apm_info *apminfo, struct acpi_info *acpiinfo); ++ + #define APMDEVICE "/dev/apm" + ++static gboolean acpi_callback (GIOChannel * chan, GIOCondition cond, gpointer data) ++{ ++ gboolean read_error; ++ if (cond & (G_IO_ERR | G_IO_HUP)) { ++ acpi_freebsd_cleanup(&acpiinfo); ++ return FALSE; ++ } ++ ++ if (acpi_process_event(&acpiinfo, &read_error)) { ++ acpi_freebsd_read(&apminfo, &acpiinfo); ++ } ++ else if (read_error) { ++ acpi_freebsd_cleanup(&acpiinfo); ++ return FALSE; ++ } ++ ++ return TRUE; ++} ++ + static const char * + apm_readinfo (BatteryStatus *status) + { +@@ -190,21 +212,27 @@ apm_readinfo (BatteryStatus *status) + + if (DEBUG) g_print("apm_readinfo() (FreeBSD)\n"); + +- if (using_acpi) { ++ if (using_acpi && (!acpiinfo.event_inited || acpiinfo.event_fd >= 0)) { + if (acpi_count <= 0) { + acpi_count = 30; +- acpi_process_event(&acpiinfo); ++ if (!acpiinfo.event_inited) { ++ acpi_freebsd_update(&acpiinfo); ++ } + if (acpi_freebsd_read(&apminfo, &acpiinfo) == FALSE) + return ERR_FREEBSD_ACPI; + } + acpi_count--; + } +- else +- { +- /* This is how I read the information from the APM subsystem under +- FreeBSD. Each time this functions is called (once every second) +- the APM device is opened, read from and then closed. +- */ ++ else if (using_acpi && acpiinfo.event_inited) { ++ if (acpi_freebsd_init(&acpiinfo)) { ++ acpiwatch = g_io_add_watch (acpiinfo.channel, ++ G_IO_IN | G_IO_ERR | G_IO_HUP, ++ acpi_callback, NULL); ++ acpi_freebsd_read(&apminfo, &acpiinfo); ++ } ++ } ++ else { ++#if defined(__i386__) + fd = open(APMDEVICE, O_RDONLY); + if (fd == -1) { + return ERR_OPEN_APMDEV; +@@ -217,6 +245,9 @@ apm_readinfo (BatteryStatus *status) + + if(apminfo.ai_status == 0) + return ERR_APM_E; ++#else ++ return ERR_OPEN_APMDEV; ++#endif + } + + status->present = TRUE; +@@ -480,6 +511,12 @@ power_management_initialise( int no_hal + } + else + using_acpi = FALSE; ++ ++ if (using_acpi && acpiinfo.event_fd >= 0) { ++ acpiwatch = g_io_add_watch (acpiinfo.channel, ++ G_IO_IN | G_IO_ERR | G_IO_HUP, ++ acpi_callback, NULL); ++ } + #endif + pm_initialised = 1; + +@@ -513,6 +550,9 @@ power_management_cleanup( void ) + } + #elif defined(__FreeBSD__) + if (using_acpi) { ++ if (acpiwatch != 0) ++ g_source_remove(acpiwatch); ++ acpiwatch = 0; + acpi_freebsd_cleanup(&acpiinfo); + } + #endif diff --git a/x11/gnome-applets/files/patch-cpufreq-freebsd b/x11/gnome-applets/files/patch-cpufreq-freebsd new file mode 100644 index 000000000..a597e6725 --- /dev/null +++ b/x11/gnome-applets/files/patch-cpufreq-freebsd @@ -0,0 +1,436 @@ +--- cpufreq/src/cpufreq-monitor-cpuinfo.c.orig Thu Jun 15 01:01:54 2006 ++++ cpufreq/src/cpufreq-monitor-cpuinfo.c Sat Jun 17 13:48:19 2006 +@@ -22,6 +22,10 @@ + #include + #include + ++#ifdef __FreeBSD__ ++#include ++#include ++#endif /* __FreeBSD__ */ + #include + #include + +@@ -59,15 +63,20 @@ cpufreq_monitor_cpuinfo_new (guint cpu) + static gboolean + cpufreq_monitor_cpuinfo_run (CPUFreqMonitor *monitor) + { ++#ifndef __FreeBSD__ + gchar *file; + gchar **lines; + gchar *buffer = NULL; + gchar *p; ++#else ++ size_t len; ++#endif /* __FreeBSD__ */ + gint cpu, i; + gint cur_freq, max_freq; + gchar *governor; + GError *error = NULL; + ++#ifndef __FreeBSD__ + file = g_strdup ("/proc/cpuinfo"); + if (!g_file_get_contents (file, &buffer, NULL, &error)) { + g_warning (error->message); +@@ -112,6 +121,12 @@ cpufreq_monitor_cpuinfo_run (CPUFreqMoni + + g_strfreev (lines); + g_free (buffer); ++#else ++ len = sizeof (cpu); ++ ++ if (sysctlbyname ("hw.clockrate", &cpu, &len, NULL, 0) == -1) ++ return FALSE; ++#endif /* __FreeBSD__ */ + + governor = g_strdup (_("Frequency Scaling Unsupported")); + cur_freq = cpu * 1000; +--- cpufreq/src/cpufreq-applet.c.orig Thu Jun 15 01:01:53 2006 ++++ cpufreq/src/cpufreq-applet.c Sat Jun 17 13:42:50 2006 +@@ -17,6 +17,7 @@ + * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + * Authors : Carlos García Campos ++ * Joe Marcus Clarke + */ + + #ifdef HAVE_CONFIG_H +@@ -519,6 +524,7 @@ cpufreq_applet_about_cb (BonoboUICompone + { + static const gchar *const authors[] = { + "Carlos Garcia Campos ", ++ "Joe Marcus Clarke (FreeBSD support)", + NULL + }; + static const gchar *const documenters[] = { +--- cpufreq/src/cpufreq-monitor-sysctl.h.orig Sat Jun 17 14:05:37 2006 ++++ cpufreq/src/cpufreq-monitor-sysctl.h Sat Jun 17 14:14:13 2006 +@@ -0,0 +1,49 @@ ++/* ++ * Copyright (C) 2001, 2002 Free Software Foundation ++ * ++ * This library is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public ++ * License as published by the Free Software Foundation; either ++ * version 2 of the License, or (at your option) any later version. ++ * ++ * This library is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ * General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public ++ * License along with this library; if not, write to the Free ++ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ++ * ++ * Authors : Joe Marcus Clarke ++ */ ++ ++#ifndef __CPUFREQ_MONITOR_SYSCTL_H__ ++#define __CPUFREQ_MONITOR_SYSCTL_H__ ++ ++#include ++ ++#include "cpufreq-monitor.h" ++ ++#define TYPE_CPUFREQ_MONITOR_SYSCTL (cpufreq_monitor_sysctl_get_type ()) ++#define CPUFREQ_MONITOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_CPUFREQ_MONITOR_SYSCTL, CPUFreqMonitorSysctl)) ++#define CPUFREQ_MONITOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), TYPE_CPUFREQ_MONITOR_SYSCTL, CPUFreqMonitorSysctlClass)) ++#define IS_CPUFREQ_MONITOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_CPUFREQ_MONITOR_SYSCTL)) ++#define IS_CPUFREQ_MONITOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_CPUFREQ_MONITOR_SYSCTL)) ++#define CPUFREQ_MONITOR_SYSCTL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_CPUFREQ_MONITOR_SYSCTL, CPUFreqMonitorSysctlClass)) ++ ++typedef struct _CPUFreqMonitorSysctl CPUFreqMonitorSysctl; ++typedef struct _CPUFreqMonitorSysctlClass CPUFreqMonitorSysctlClass; ++ ++struct _CPUFreqMonitorSysctl { ++ CPUFreqMonitor parent; ++}; ++ ++struct _CPUFreqMonitorSysctlClass { ++ CPUFreqMonitorClass parent_class; ++}; ++ ++GType cpufreq_monitor_sysctl_get_type (void) G_GNUC_CONST; ++CPUFreqMonitor *cpufreq_monitor_sysctl_new (guint cpu); ++ ++#endif /* __CPUFREQ_MONITOR_SYSCTL_H__ */ +--- cpufreq/src/cpufreq-monitor-factory.c.orig Sat Jun 17 06:28:02 2006 ++++ cpufreq/src/cpufreq-monitor-factory.c Sat Jun 24 01:45:54 2006 +@@ -17,6 +17,7 @@ + * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + * Authors : Carlos García Campos ++ * Joe Marcus Clarke + */ + + #ifdef HAVE_CONFIG_H +@@ -25,11 +26,18 @@ + + #include + #include ++#ifdef __FreeBSD__ ++#include ++#include ++#endif /* __FreeBSD__ */ + + #include "cpufreq-applet.h" + #include "cpufreq-utils.h" + #include "cpufreq-monitor-sysfs.h" + #include "cpufreq-monitor-procfs.h" ++#ifdef __FreeBSD__ ++#include "cpufreq-monitor-sysctl.h" ++#endif /* __FreeBSD__ */ + #include "cpufreq-monitor-cpuinfo.h" + #ifdef HAVE_LIBCPUFREQ + #include "cpufreq-monitor-libcpufreq.h" +@@ -40,6 +48,7 @@ CPUFreqMonitor * + cpufreq_monitor_factory_create_monitor (guint cpu) + { + CPUFreqMonitor *monitor = NULL; ++#ifndef __FreeBSD__ + + #ifdef HAVE_LIBCPUFREQ + monitor = cpufreq_monitor_libcpufreq_new (cpu); +@@ -63,6 +72,19 @@ cpufreq_monitor_factory_create_monitor ( + + monitor = cpufreq_monitor_cpuinfo_new (cpu); + } ++#else ++ size_t len; ++ ++ if (sysctlbyname ("dev.cpu.0.freq", NULL, &len, NULL, 0) == 0) { ++ monitor = cpufreq_monitor_sysctl_new (cpu); ++ } else { ++ cpufreq_utils_display_error (_("CPU frequency scaling unsupported"), ++ _("You will not be able to modify the frequency of your machine. " ++ "Your machine may be misconfigured or not have hardware support " ++ "for CPU frequency scaling.")); ++ monitor = cpufreq_monitor_cpuinfo_new (cpu); ++ } ++#endif /* __FreeBSD__ */ + + return monitor; + } +--- cpufreq/src/cpufreq-utils.c.orig Sat Aug 12 21:26:50 2006 ++++ cpufreq/src/cpufreq-utils.c Tue Aug 22 11:07:32 2006 +@@ -22,6 +22,9 @@ + #include + #include + #include ++#ifdef __FreeBSD__ ++#include ++#endif + #include + #include + #include +@@ -30,6 +33,24 @@ + + #include "cpufreq-utils.h" + ++#ifdef __FreeBSD__ ++guint ++cpufreq_utils_get_n_cpus (void) ++{ ++ size_t len; ++ static guint n_cpus = 0; ++ ++ if (n_cpus > 0) ++ return n_cpus; ++ ++ len = sizeof (n_cpus); ++ if (sysctlbyname ("hw.ncpu", &n_cpus, &len, NULL, 0) == -1) { ++ return 1; ++ } ++ ++ return n_cpus; ++} ++#else + guint + cpufreq_utils_get_n_cpus (void) + { +@@ -72,6 +93,7 @@ cpufreq_utils_get_n_cpus (void) + + return 1; + } ++#endif /* __FreeBSD__ */ + + void + cpufreq_utils_display_error (const gchar *message, +--- cpufreq/src/cpufreq-monitor-sysctl.c.orig Wed Feb 28 14:03:58 2007 ++++ cpufreq/src/cpufreq-monitor-sysctl.c Wed Feb 28 14:28:47 2007 +@@ -0,0 +1,176 @@ ++/* ++ * Copyright (C) 2001, 2002 Free Software Foundation ++ * ++ * This library is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public ++ * License as published by the Free Software Foundation; either ++ * version 2 of the License, or (at your option) any later version. ++ * ++ * This library is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ * General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public ++ * License along with this library; if not, write to the Free ++ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ++ * ++ * Authors : Joe Marcus Clarke ++ */ ++ ++#include ++#include ++ ++#include ++ ++#ifdef __FreeBSD__ ++#include ++#include ++ ++#include "cpufreq-monitor-sysctl.h" ++ ++#define PARENT_TYPE TYPE_CPUFREQ_MONITOR ++ ++#define CPUFREQ_MONITOR_GET_PROTECTED(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), PARENT_TYPE, CPUFreqMonitorProtected)) ++ ++static void cpufreq_monitor_sysctl_class_init (CPUFreqMonitorSysctlClass *klass); ++ ++static gboolean cpufreq_monitor_sysctl_run (CPUFreqMonitor *monitor); ++static GList *cpufreq_monitor_sysctl_get_available_frequencies (CPUFreqMonitor *monitor); ++static GList *cpufreq_monitor_sysctl_get_available_governors (CPUFreqMonitor *monitor); ++ ++static gboolean cpufreq_monitor_sysctl_get (gpointer gdata); ++ ++G_DEFINE_TYPE (CPUFreqMonitorSysctl, cpufreq_monitor_sysctl, CPUFREQ_TYPE_MONITOR) ++ ++static void ++cpufreq_monitor_sysctl_init (CPUFreqMonitorSysctl *monitor) ++{ ++} ++ ++static void ++cpufreq_monitor_sysctl_class_init (CPUFreqMonitorSysctlClass *klass) ++{ ++ CPUFreqMonitorClass *monitor_class = CPUFREQ_MONITOR_CLASS (klass); ++ ++ monitor_class->run = cpufreq_monitor_sysctl_run; ++ monitor_class->get_available_frequencies = cpufreq_monitor_sysctl_get_available_frequencies; ++ monitor_class->get_available_governors = cpufreq_monitor_sysctl_get_available_governors; ++} ++ ++CPUFreqMonitor * ++cpufreq_monitor_sysctl_new (guint cpu) ++{ ++ CPUFreqMonitorSysctl *monitor; ++ ++ monitor = g_object_new (TYPE_CPUFREQ_MONITOR_SYSCTL, "cpu", cpu, NULL); ++ ++ return CPUFREQ_MONITOR (monitor); ++} ++ ++static gboolean ++cpufreq_monitor_sysctl_run (CPUFreqMonitor *monitor) ++{ ++ gint fmax, fmin, ifreq; ++ gchar *governor; ++ size_t len; ++ gchar *freq_oid; ++ guint mon_cpu; ++ GList *list; ++ ++ list = cpufreq_monitor_sysctl_get_available_frequencies (CPUFREQ_MONITOR (monitor)); ++ ++ fmax = atoi ((gchar *) list->data); ++ fmin = atoi ((gchar *) g_list_nth_data (list, (g_list_length (list) - 1))); ++ ++ g_object_get (G_OBJECT (monitor), "cpu", &mon_cpu, NULL); ++ len = sizeof (ifreq); ++ freq_oid = g_strdup_printf ("dev.cpu.%d.freq", 0); ++ ++ if (sysctlbyname (freq_oid, &ifreq, &len, NULL, 0) == -1) { ++ g_free (freq_oid); ++ return FALSE; ++ } ++ ++ ifreq *= 1000; ++ ++ if (ifreq == fmax) ++ governor = g_strdup ("performance"); ++ else if (ifreq == fmin) ++ governor = g_strdup ("economy"); ++ else ++ governor = g_strdup ("userspace"); ++ ++ g_object_set (G_OBJECT (monitor), ++ "online", TRUE, ++ "governor", governor, ++ "frequency", ifreq, ++ "max-frequency", fmax, ++ NULL); ++ ++ return TRUE; ++} ++ ++static GList * ++cpufreq_monitor_sysctl_get_available_frequencies (CPUFreqMonitor *monitor) ++{ ++ gchar *levels_oid, *levels; ++ gchar **levelsp, **l; ++ GList *list = NULL; ++ gint mib[4]; ++ guint mon_cpu; ++ size_t len; ++ ++ g_object_get (G_OBJECT (monitor), "cpu", &mon_cpu, NULL); ++ ++ levels_oid = g_strdup_printf ("dev.cpu.%d.freq_levels", ++ 0); ++ len = 4; ++ sysctlnametomib (levels_oid, mib, &len); ++ len = sizeof (levels); ++ g_free (levels_oid); ++ ++ if (sysctl (mib, 4, NULL, &len, NULL, 0) == -1) ++ return NULL; ++ ++ levels = g_malloc (len); ++ if (sysctl (mib, 4, levels, &len, NULL, 0) == -1) ++ return NULL; ++ ++ levelsp = g_strsplit (levels, " ", 0); ++ g_free (levels); ++ ++ for (l = levelsp; l && *l; l++) { ++ gchar **frpr; ++ ++ frpr = g_strsplit (*l, "/", 0); ++ if (frpr && frpr[0] != NULL) { ++ /* sysctl format is %d/%d where the ++ * first %d is the frequency, and ++ * the second is the power used in ++ * mW. ++ */ ++ int freq = atoi (frpr[0]); ++ list = ++ g_list_append (list, g_strdup_printf ("%d", freq * 1000)); ++ } ++ g_strfreev (frpr); ++ } ++ ++ g_strfreev (levelsp); ++ ++ return (list); ++} ++ ++static GList * ++cpufreq_monitor_sysctl_get_available_governors (CPUFreqMonitor *monitor) ++{ ++ GList *list = NULL; ++ ++ list = g_list_prepend (list, g_strdup ("performance")); ++ list = g_list_prepend (list, g_strdup ("userspace")); ++ list = g_list_prepend (list, g_strdup ("economy")); ++ ++ return list; ++} ++#endif /* __FreeBSD__ */ +--- cpufreq/src/Makefile.in.orig 2007-07-30 21:06:58.000000000 -0400 ++++ cpufreq/src/Makefile.in 2007-07-30 21:06:58.000000000 -0400 +@@ -61,7 +61,8 @@ am__cpufreq_applet_SOURCES_DIST = cpufre + cpufreq-monitor-procfs.h cpufreq-monitor-sysfs.c \ + cpufreq-monitor-sysfs.h cpufreq-monitor-libcpufreq.c \ + cpufreq-monitor-libcpufreq.h cpufreq-monitor-cpuinfo.c \ +- cpufreq-monitor-cpuinfo.h ++ cpufreq-monitor-cpuinfo.h cpufreq-monitor-sysctl.c \ ++ cpufreq-monitor-sysctl.h + @HAVE_LIBCPUFREQ_TRUE@am__objects_1 = \ + @HAVE_LIBCPUFREQ_TRUE@ cpufreq-monitor-libcpufreq.$(OBJEXT) + am_cpufreq_applet_OBJECTS = cpufreq-applet.$(OBJEXT) \ +@@ -70,7 +71,8 @@ am_cpufreq_applet_OBJECTS = cpufreq-appl + cpufreq-monitor-factory.$(OBJEXT) \ + cpufreq-monitor-procfs.$(OBJEXT) \ + cpufreq-monitor-sysfs.$(OBJEXT) $(am__objects_1) \ +- cpufreq-monitor-cpuinfo.$(OBJEXT) ++ cpufreq-monitor-cpuinfo.$(OBJEXT) \ ++ cpufreq-monitor-sysctl.$(OBJEXT) + cpufreq_applet_OBJECTS = $(am_cpufreq_applet_OBJECTS) + am__DEPENDENCIES_1 = + cpufreq_applet_DEPENDENCIES = $(am__DEPENDENCIES_1) \ +@@ -402,6 +404,7 @@ cpufreq_applet_SOURCES = \ + cpufreq-monitor.c cpufreq-monitor.h \ + cpufreq-monitor-factory.c cpufreq-monitor-factory.h \ + cpufreq-monitor-procfs.c cpufreq-monitor-procfs.h \ ++ cpufreq-monitor-sysctl.c cpufreq-monitor-sysctl.h \ + cpufreq-monitor-sysfs.c cpufreq-monitor-sysfs.h \ + $(cpufreq_files) \ + cpufreq-monitor-cpuinfo.c cpufreq-monitor-cpuinfo.h +@@ -487,6 +490,7 @@ distclean-compile: + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-factory.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-libcpufreq.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-procfs.Po@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-sysctl.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor-sysfs.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-monitor.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-popup.Po@am__quote@ diff --git a/x11/gnome-applets/files/patch-cpufreq-selector-freebsd b/x11/gnome-applets/files/patch-cpufreq-selector-freebsd new file mode 100644 index 000000000..734bd6c74 --- /dev/null +++ b/x11/gnome-applets/files/patch-cpufreq-selector-freebsd @@ -0,0 +1,228 @@ +--- cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.h.orig Sat Jun 24 01:52:35 2006 ++++ cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.h Sat Jun 24 02:13:05 2006 +@@ -0,0 +1,53 @@ ++/* ++ * Copyright (C) 2001, 2002 Free Software Foundation ++ * ++ * This library is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public ++ * License as published by the Free Software Foundation; either ++ * version 2 of the License, or (at your option) any later version. ++ * ++ * This library is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ * General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public ++ * License along with this library; if not, write to the Free ++ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ++ * ++ * Authors : Joe Marcus Clarke ++ */ ++ ++#ifndef __CPUFREQ_SELECTOR_SYSCTL_H__ ++#define __CPUFREQ_SELECTOR_SYSCTL_H__ ++ ++#include ++ ++#include "cpufreq-selector.h" ++ ++G_BEGIN_DECLS ++ ++#define CPUFREQ_TYPE_SELECTOR_SYSCTL (cpufreq_selector_sysctl_get_type ()) ++#define CPUFREQ_SELECTOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfs)) ++#define CPUFREQ_SELECTOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfsClass)) ++#define CPUFREQ_IS_SELECTOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL)) ++#define CPUFREQ_IS_SELECTOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CPUFREQ_TYPE_SELECTOR_SYSCTL)) ++#define CPUFREQ_SELECTOR_SYSCTL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfsClass)) ++ ++typedef struct _CPUFreqSelectorSysctl CPUFreqSelectorSysctl; ++typedef struct _CPUFreqSelectorSysctlClass CPUFreqSelectorSysctlClass; ++ ++struct _CPUFreqSelectorSysctl { ++ CPUFreqSelector parent; ++}; ++ ++struct _CPUFreqSelectorSysctlClass { ++ CPUFreqSelectorClass parent_class; ++}; ++ ++GType cpufreq_selector_sysctl_get_type (void) G_GNUC_CONST; ++CPUFreqSelector *cpufreq_selector_sysctl_new (guint cpu); ++ ++G_END_DECLS ++ ++#endif /* __CPUFREQ_SELECTOR_SYSCTL_H__ */ +--- cpufreq/src/cpufreq-selector/main.c.orig Sat Jun 17 22:13:41 2006 ++++ cpufreq/src/cpufreq-selector/main.c Sat Jun 24 02:15:02 2006 +@@ -17,6 +17,7 @@ + * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + * Authors : Carlos García Campos ++ * Joe Marcus Clarke + */ + + #ifdef HAVE_CONFIG_H +@@ -33,6 +34,9 @@ + #ifdef HAVE_LIBCPUFREQ + #include "cpufreq-selector-libcpufreq.h" + #endif ++#ifdef __FreeBSD__ ++#include "cpufreq-selector-sysctl.h" ++#endif /* __FreeBSD__ */ + + static gint cpu = 0; + static gchar *governor = NULL; +@@ -51,6 +55,9 @@ main (gint argc, gchar **argv) + CPUFreqSelector *selector; + GOptionContext *context; + GError *error = NULL; ++#ifdef __FreeBSD__ ++ size_t len; ++#endif + + if (geteuid () != 0) { + g_printerr ("You must be root\n"); +@@ -83,10 +90,15 @@ main (gint argc, gchar **argv) + #ifdef HAVE_LIBCPUFREQ + selector = cpufreq_selector_libcpufreq_new (cpu); + #else ++#ifndef __FreeBSD__ + if (g_file_test ("/sys/devices/system/cpu/cpu0/cpufreq", G_FILE_TEST_EXISTS)) { /* 2.6 kernel */ + selector = cpufreq_selector_sysfs_new (cpu); + } else if (g_file_test ("/proc/cpufreq", G_FILE_TEST_EXISTS)) { /* 2.4 kernel */ + selector = cpufreq_selector_procfs_new (cpu); ++#else ++ if (sysctlbyname ("dev.cpu.0.freq", NULL, &len, NULL, 0) == 0) { ++ selector = cpufreq_selector_sysctl_new (cpu); ++#endif /* __FreeBSD__ */ + } else { + g_printerr ("No cpufreq support\n"); + return 1; +--- cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.c.orig Wed Jul 26 01:34:18 2006 ++++ cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.c Wed Jul 26 01:42:00 2006 +@@ -0,0 +1,87 @@ ++/* ++ * Copyright (C) 2001, 2002 Free Software Foundation ++ * ++ * This library is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public ++ * License as published by the Free Software Foundation; either ++ * version 2 of the License, or (at your option) any later version. ++ * ++ * This library is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ * General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public ++ * License along with this library; if not, write to the Free ++ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ++ * ++ * Authors : Joe Marcus Clarke ++ */ ++ ++#include ++#include ++#include ++ ++#ifdef __FreeBSD__ ++#include ++#include ++#endif /* __FreeBSD__ */ ++ ++#include "cpufreq-selector-sysctl.h" ++ ++static void cpufreq_selector_sysctl_init (CPUFreqSelectorSysctl *selector); ++static void cpufreq_selector_sysctl_class_init (CPUFreqSelectorSysctlClass *klass); ++ ++static gboolean cpufreq_selector_sysctl_set_frequency (CPUFreqSelector *selector, guint frequency, GError **error); ++static gboolean cpufreq_selector_sysctl_set_governor (CPUFreqSelector *selector, const gchar *governor, GError **error); ++ ++G_DEFINE_TYPE (CPUFreqSelectorSysctl, cpufreq_selector_sysctl, CPUFREQ_TYPE_SELECTOR) ++ ++static void ++cpufreq_selector_sysctl_init (CPUFreqSelectorSysctl *selector) ++{ ++} ++ ++static void ++cpufreq_selector_sysctl_class_init (CPUFreqSelectorSysctlClass *klass) ++{ ++ CPUFreqSelectorClass *selector_class = CPUFREQ_SELECTOR_CLASS (klass); ++ ++ selector_class->set_frequency = cpufreq_selector_sysctl_set_frequency; ++ selector_class->set_governor = cpufreq_selector_sysctl_set_governor; ++} ++ ++CPUFreqSelector * ++cpufreq_selector_sysctl_new (guint cpu) ++{ ++ CPUFreqSelector *selector; ++ ++ selector = CPUFREQ_SELECTOR (g_object_new (CPUFREQ_TYPE_SELECTOR_SYSCTL, ++ "cpu", cpu, NULL)); ++ ++ return selector; ++} ++ ++static gboolean ++cpufreq_selector_sysctl_set_governor (CPUFreqSelector *selector, const gchar *governor, GError **error) ++{ ++ return TRUE; ++} ++ ++static gboolean ++cpufreq_selector_sysctl_set_frequency (CPUFreqSelector *selector, guint frequency, GError **error) ++{ ++ guint cpu, i; ++ size_t len; ++ gchar *freq_oid; ++ ++ g_object_get (G_OBJECT (selector), "cpu", &cpu, NULL); ++ ++ frequency = (guint) ((gdouble) frequency / 1000); /* Convert back to MHz*/ ++ freq_oid = g_strdup_printf ("dev.cpu.%d.freq", (gint) 0); ++ ++ sysctlbyname (freq_oid, NULL, &len, &frequency, sizeof (frequency)); ++ g_free (freq_oid); ++ ++ return TRUE; ++} +--- cpufreq/src/cpufreq-selector/Makefile.in.orig 2007-07-30 21:08:35.000000000 -0400 ++++ cpufreq/src/cpufreq-selector/Makefile.in 2007-07-30 21:08:36.000000000 -0400 +@@ -57,13 +57,15 @@ am__cpufreq_selector_SOURCES_DIST = cpuf + cpufreq-selector.h cpufreq-selector-sysfs.c \ + cpufreq-selector-sysfs.h cpufreq-selector-procfs.c \ + cpufreq-selector-procfs.h cpufreq-selector-libcpufreq.c \ +- cpufreq-selector-libcpufreq.h main.c ++ cpufreq-selector-libcpufreq.h main.c \ ++ cpufreq-selector-sysctl.c cpufreq-selector-sysctl.h + @HAVE_LIBCPUFREQ_TRUE@am__objects_1 = \ + @HAVE_LIBCPUFREQ_TRUE@ cpufreq-selector-libcpufreq.$(OBJEXT) + am_cpufreq_selector_OBJECTS = cpufreq-selector.$(OBJEXT) \ + cpufreq-selector-sysfs.$(OBJEXT) \ + cpufreq-selector-procfs.$(OBJEXT) $(am__objects_1) \ +- main.$(OBJEXT) ++ main.$(OBJEXT) \ ++ cpufreq-selector-sysctl.$(OBJEXT) + cpufreq_selector_OBJECTS = $(am_cpufreq_selector_OBJECTS) + am__DEPENDENCIES_1 = + cpufreq_selector_DEPENDENCIES = $(am__DEPENDENCIES_1) \ +@@ -381,6 +383,7 @@ cpufreq_selector_SOURCES = \ + cpufreq-selector.c cpufreq-selector.h \ + cpufreq-selector-sysfs.c cpufreq-selector-sysfs.h \ + cpufreq-selector-procfs.c cpufreq-selector-procfs.h \ ++ cpufreq-selector-sysctl.c cpufreq-selector-sysctl.h \ + $(cpufreq_files) \ + main.c + +@@ -462,6 +465,7 @@ distclean-compile: + + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector-libcpufreq.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector-procfs.Po@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector-sysctl.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector-sysfs.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpufreq-selector.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ diff --git a/x11/gnome-applets/files/patch-invest-applet_invest_invest-applet.py b/x11/gnome-applets/files/patch-invest-applet_invest_invest-applet.py new file mode 100644 index 000000000..0dc24164e --- /dev/null +++ b/x11/gnome-applets/files/patch-invest-applet_invest_invest-applet.py @@ -0,0 +1,13 @@ +--- invest-applet/invest/invest-applet.py.orig Wed Sep 13 20:42:15 2006 ++++ invest-applet/invest/invest-applet.py Wed Sep 13 20:42:28 2006 +@@ -26,8 +26,8 @@ import invest, invest.applet, invest.def + import gettext, locale + gettext.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) + gettext.textdomain(invest.defs.GETTEXT_PACKAGE) +-locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) +-locale.textdomain(invest.defs.GETTEXT_PACKAGE) ++#locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) ++#locale.textdomain(invest.defs.GETTEXT_PACKAGE) + gtk.glade.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) + gtk.glade.textdomain(invest.defs.GETTEXT_PACKAGE) + diff --git a/x11/gnome-applets/files/patch-invest-applet_invest_invest-chart b/x11/gnome-applets/files/patch-invest-applet_invest_invest-chart new file mode 100644 index 000000000..2eddc8154 --- /dev/null +++ b/x11/gnome-applets/files/patch-invest-applet_invest_invest-chart @@ -0,0 +1,13 @@ +--- invest-applet/invest/invest-chart.orig Wed Sep 13 20:41:18 2006 ++++ invest-applet/invest/invest-chart Wed Sep 13 20:41:33 2006 +@@ -6,8 +6,8 @@ import sys, invest.chart, gtk + import gettext, locale + gettext.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) + gettext.textdomain(invest.defs.GETTEXT_PACKAGE) +-locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) +-locale.textdomain(invest.defs.GETTEXT_PACKAGE) ++#locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) ++#locale.textdomain(invest.defs.GETTEXT_PACKAGE) + gtk.glade.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.GNOMELOCALEDIR) + gtk.glade.textdomain(invest.defs.GETTEXT_PACKAGE) + diff --git a/x11/gnome-applets/files/patch-mixer_applet.c b/x11/gnome-applets/files/patch-mixer_applet.c new file mode 100644 index 000000000..d7c0eb517 --- /dev/null +++ b/x11/gnome-applets/files/patch-mixer_applet.c @@ -0,0 +1,11 @@ +--- mixer/applet.c.orig Mon Nov 7 09:53:52 2005 ++++ mixer/applet.c Mon Nov 28 01:16:50 2005 +@@ -953,7 +953,7 @@ gnome_volume_applet_adjust_volume (GstMi + + volumes = g_new (gint, track->num_channels); + for (n = 0; n < track->num_channels; n++) +- volumes[n] = lrint (volume); ++ volumes[n] = (int) rint (volume); + gst_mixer_set_volume (mixer, track, volumes); + g_free (volumes); + } diff --git a/x11/gnome-applets/files/patch-modemlights_Makefile.in b/x11/gnome-applets/files/patch-modemlights_Makefile.in new file mode 100644 index 000000000..874884722 --- /dev/null +++ b/x11/gnome-applets/files/patch-modemlights_Makefile.in @@ -0,0 +1,10 @@ +--- modemlights/Makefile.in.orig Fri Jan 14 00:08:52 2005 ++++ modemlights/Makefile.in Fri Jan 14 00:09:20 2005 +@@ -319,6 +319,7 @@ + modem_applet_LDADD = \ + $(GNOME_APPLETS_LIBS) \ + $(LIBGLADE_LIBS) \ ++ -lutil \ + $(MODEMLIGHTS_LIBS) + + uidir = $(datadir)/gnome-2.0/ui diff --git a/x11/gnome-applets/pkg-descr b/x11/gnome-applets/pkg-descr new file mode 100644 index 000000000..5f715cf9a --- /dev/null +++ b/x11/gnome-applets/pkg-descr @@ -0,0 +1,3 @@ +Panel applets for the Gnome 2.0 Desktop Environment. + +WWW: http://www.gnome.org/ diff --git a/x11/gnome-applets/pkg-plist b/x11/gnome-applets/pkg-plist new file mode 100644 index 000000000..7531f8394 --- /dev/null +++ b/x11/gnome-applets/pkg-plist @@ -0,0 +1,1641 @@ +%%CPUFREQ%%bin/cpufreq-selector +%%PYTHON%%bin/invest-chart +%%BATTERY%%etc/sound/events/battstat_applet.soundlist +include/libgweather/gweather-gconf.h +include/libgweather/gweather-prefs.h +include/libgweather/weather.h +lib/libgweather.a +lib/libgweather.la +lib/libgweather.so +lib/libgweather.so.0 +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/__init__.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/about.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/about.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/about.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/applet.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/applet.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/applet.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/chart.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/chart.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/chart.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/defs.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/defs.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/defs.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/preferences.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/preferences.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/preferences.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/quotes.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/quotes.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/quotes.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/widgets.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/widgets.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/invest/widgets.pyo +libdata/bonobo/servers/GNOME_AccessxStatusApplet.server +%%BATTERY%%libdata/bonobo/servers/GNOME_BattstatApplet.server +libdata/bonobo/servers/GNOME_CDPlayerApplet.server +%%CPUFREQ%%libdata/bonobo/servers/GNOME_CPUFreqApplet.server +libdata/bonobo/servers/GNOME_CharpickerApplet.server +libdata/bonobo/servers/GNOME_DriveMountApplet.server +libdata/bonobo/servers/GNOME_GWeatherApplet_Factory.server +libdata/bonobo/servers/GNOME_GeyesApplet.server +%%PYTHON%%libdata/bonobo/servers/GNOME_GtikApplet.server +libdata/bonobo/servers/GNOME_KeyboardApplet.server +libdata/bonobo/servers/GNOME_MailcheckApplet_Factory.server +libdata/bonobo/servers/GNOME_MiniCommanderApplet.server +libdata/bonobo/servers/GNOME_MixerApplet.server +libdata/bonobo/servers/GNOME_ModemLights.server +libdata/bonobo/servers/GNOME_MultiLoadApplet_Factory.server +libdata/bonobo/servers/GNOME_NullApplet_Factory.server +libdata/bonobo/servers/GNOME_Panel_TrashApplet.server +libdata/bonobo/servers/GNOME_Panel_WirelessApplet.server +libdata/bonobo/servers/GNOME_StickyNotesApplet.server +%%PYTHON%%libdata/bonobo/servers/Invest_Applet.server +libdata/pkgconfig/gweather.pc +libexec/accessx-status-applet +%%BATTERY%%libexec/battstat-applet-2 +libexec/charpick_applet2 +%%CPUFREQ%%libexec/cpufreq-applet +libexec/drivemount_applet2 +libexec/geyes_applet2 +%%COMMANDER%%libexec/gnome-applets/mc-install-default-macros +libexec/gnome-keyboard-applet +libexec/gweather-applet-2 +%%PYTHON%%libexec/invest-applet +%%COMMANDER%%libexec/mini_commander_applet +libexec/mixer_applet2 +libexec/modem_applet +libexec/multiload-applet-2 +libexec/null_applet +libexec/stickynotes_applet +libexec/trashapplet +share/gnome-2.0/ui/GNOME_AccessxApplet.xml +%%BATTERY%%share/gnome-2.0/ui/GNOME_BattstatApplet.xml +%%CPUFREQ%%share/gnome-2.0/ui/GNOME_CPUFreqApplet.xml +share/gnome-2.0/ui/GNOME_CharpickerApplet.xml +share/gnome-2.0/ui/GNOME_DriveMountApplet.xml +share/gnome-2.0/ui/GNOME_GSwitchItApplet.xml +share/gnome-2.0/ui/GNOME_GWeatherApplet.xml +share/gnome-2.0/ui/GNOME_GeyesApplet.xml +%%COMMANDER%%share/gnome-2.0/ui/GNOME_MiniCommanderApplet.xml +share/gnome-2.0/ui/GNOME_MixerApplet.xml +share/gnome-2.0/ui/GNOME_ModemLights.xml +share/gnome-2.0/ui/GNOME_MultiloadApplet.xml +share/gnome-2.0/ui/GNOME_Panel_TrashApplet.xml +share/gnome-2.0/ui/GNOME_StickyNotesApplet.xml +%%PYTHON%%share/gnome-2.0/ui/Invest_Applet.xml +%%DATADIR%%/geyes/Bizarre/Bizarre-eye.png +%%DATADIR%%/geyes/Bizarre/Bizarre-pupil.png +%%DATADIR%%/geyes/Bizarre/config +%%DATADIR%%/geyes/Bloodshot/Bloodshot-eye.png +%%DATADIR%%/geyes/Bloodshot/Bloodshot-pupil.png +%%DATADIR%%/geyes/Bloodshot/config +%%DATADIR%%/geyes/Default-tiny/Default-tiny-eye.png +%%DATADIR%%/geyes/Default-tiny/Default-tiny-pupil.png +%%DATADIR%%/geyes/Default-tiny/config +%%DATADIR%%/geyes/Default/Default-eye.png +%%DATADIR%%/geyes/Default/Default-pupil.png +%%DATADIR%%/geyes/Default/config +%%DATADIR%%/geyes/Horrid/config +%%DATADIR%%/geyes/Horrid/horrid_eye.png +%%DATADIR%%/geyes/Horrid/horrid_pupil.png +%%DATADIR%%/geyes/Tango/config +%%DATADIR%%/geyes/Tango/tango-eye.png +%%DATADIR%%/geyes/Tango/tango-pupil.png +%%BATTERY%%%%DATADIR%%/glade/battstat_applet.glade +%%CPUFREQ%%%%DATADIR%%/glade/cpufreq-preferences.glade +%%PYTHON%%%%DATADIR%%/glade/financialchart.glade +%%DATADIR%%/glade/gswitchit.glade +%%COMMANDER%%%%DATADIR%%/glade/mini-commander.glade +%%DATADIR%%/glade/modemlights.glade +%%PYTHON%%%%DATADIR%%/glade/prefs-dialog.glade +%%DATADIR%%/glade/stickynotes.glade +%%DATADIR%%/glade/trashapplet.glade +%%DATADIR%%/gweather/Locations.xml +%%DATADIR%%/gweather/locations.dtd +%%PYTHON%%%%DATADIR%%/invest-applet/invest-16.png +%%PYTHON%%%%DATADIR%%/invest-applet/invest-button.png +%%PYTHON%%%%DATADIR%%/invest-applet/invest.svg +share/gnome/help/accessx-status/C/accessx-status.xml +share/gnome/help/accessx-status/C/figures/accessx-status-applet.png +share/gnome/help/accessx-status/C/figures/accessx-status-disabled.png +share/gnome/help/accessx-status/C/figures/accessx_bounce-keys.png +share/gnome/help/accessx-status/C/figures/accessx_mouse-keys.png +share/gnome/help/accessx-status/C/figures/accessx_slow-keys.png +share/gnome/help/accessx-status/C/figures/accessx_sticky-altGr-key.png +share/gnome/help/accessx-status/C/figures/accessx_sticky-ctrl-key.png +share/gnome/help/accessx-status/C/figures/accessx_sticky-keys.png +share/gnome/help/accessx-status/C/figures/accessx_sticky-meta-key.png +share/gnome/help/accessx-status/C/figures/accessx_sticky-shift-key.png +share/gnome/help/accessx-status/C/figures/accessx_sticky-windows-key.png +share/gnome/help/accessx-status/C/legal.xml +share/gnome/help/accessx-status/bg/accessx-status.xml +share/gnome/help/accessx-status/bg/figures/accessx-status-applet.png +share/gnome/help/accessx-status/bg/figures/accessx-status-disabled.png +share/gnome/help/accessx-status/bg/figures/accessx_bounce-keys.png +share/gnome/help/accessx-status/bg/figures/accessx_mouse-keys.png +share/gnome/help/accessx-status/bg/figures/accessx_slow-keys.png +share/gnome/help/accessx-status/bg/figures/accessx_sticky-altGr-key.png +share/gnome/help/accessx-status/bg/figures/accessx_sticky-ctrl-key.png +share/gnome/help/accessx-status/bg/figures/accessx_sticky-keys.png +share/gnome/help/accessx-status/bg/figures/accessx_sticky-meta-key.png +share/gnome/help/accessx-status/bg/figures/accessx_sticky-shift-key.png +share/gnome/help/accessx-status/bg/figures/accessx_sticky-windows-key.png +share/gnome/help/accessx-status/ca/accessx-status.xml +share/gnome/help/accessx-status/ca/figures/accessx-status-applet.png +share/gnome/help/accessx-status/ca/figures/accessx-status-disabled.png +share/gnome/help/accessx-status/ca/figures/accessx_bounce-keys.png +share/gnome/help/accessx-status/ca/figures/accessx_mouse-keys.png +share/gnome/help/accessx-status/ca/figures/accessx_slow-keys.png +share/gnome/help/accessx-status/ca/figures/accessx_sticky-altGr-key.png +share/gnome/help/accessx-status/ca/figures/accessx_sticky-ctrl-key.png +share/gnome/help/accessx-status/ca/figures/accessx_sticky-keys.png +share/gnome/help/accessx-status/ca/figures/accessx_sticky-meta-key.png +share/gnome/help/accessx-status/ca/figures/accessx_sticky-shift-key.png +share/gnome/help/accessx-status/ca/figures/accessx_sticky-windows-key.png +share/gnome/help/accessx-status/en_GB/accessx-status.xml +share/gnome/help/accessx-status/en_GB/figures/accessx-status-applet.png +share/gnome/help/accessx-status/en_GB/figures/accessx-status-disabled.png +share/gnome/help/accessx-status/en_GB/figures/accessx_bounce-keys.png +share/gnome/help/accessx-status/en_GB/figures/accessx_mouse-keys.png +share/gnome/help/accessx-status/en_GB/figures/accessx_slow-keys.png +share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-altGr-key.png +share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-ctrl-key.png +share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-keys.png +share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-meta-key.png +share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-shift-key.png +share/gnome/help/accessx-status/en_GB/figures/accessx_sticky-windows-key.png +share/gnome/help/accessx-status/es/accessx-status.xml +share/gnome/help/accessx-status/es/figures/accessx-status-applet.png +share/gnome/help/accessx-status/es/figures/accessx-status-disabled.png +share/gnome/help/accessx-status/es/figures/accessx_bounce-keys.png +share/gnome/help/accessx-status/es/figures/accessx_mouse-keys.png +share/gnome/help/accessx-status/es/figures/accessx_slow-keys.png +share/gnome/help/accessx-status/es/figures/accessx_sticky-altGr-key.png +share/gnome/help/accessx-status/es/figures/accessx_sticky-ctrl-key.png +share/gnome/help/accessx-status/es/figures/accessx_sticky-keys.png +share/gnome/help/accessx-status/es/figures/accessx_sticky-meta-key.png +share/gnome/help/accessx-status/es/figures/accessx_sticky-shift-key.png +share/gnome/help/accessx-status/es/figures/accessx_sticky-windows-key.png +share/gnome/help/accessx-status/fr/accessx-status.xml +share/gnome/help/accessx-status/fr/figures/accessx-status-applet.png +share/gnome/help/accessx-status/fr/figures/accessx-status-disabled.png +share/gnome/help/accessx-status/fr/figures/accessx_bounce-keys.png +share/gnome/help/accessx-status/fr/figures/accessx_mouse-keys.png +share/gnome/help/accessx-status/fr/figures/accessx_slow-keys.png +share/gnome/help/accessx-status/fr/figures/accessx_sticky-altGr-key.png +share/gnome/help/accessx-status/fr/figures/accessx_sticky-ctrl-key.png +share/gnome/help/accessx-status/fr/figures/accessx_sticky-keys.png +share/gnome/help/accessx-status/fr/figures/accessx_sticky-meta-key.png +share/gnome/help/accessx-status/fr/figures/accessx_sticky-shift-key.png +share/gnome/help/accessx-status/fr/figures/accessx_sticky-windows-key.png +share/gnome/help/accessx-status/it/accessx-status.xml +share/gnome/help/accessx-status/it/figures/accessx-status-applet.png +share/gnome/help/accessx-status/it/figures/accessx-status-disabled.png +share/gnome/help/accessx-status/it/figures/accessx_bounce-keys.png +share/gnome/help/accessx-status/it/figures/accessx_mouse-keys.png +share/gnome/help/accessx-status/it/figures/accessx_slow-keys.png +share/gnome/help/accessx-status/it/figures/accessx_sticky-altGr-key.png +share/gnome/help/accessx-status/it/figures/accessx_sticky-ctrl-key.png +share/gnome/help/accessx-status/it/figures/accessx_sticky-keys.png +share/gnome/help/accessx-status/it/figures/accessx_sticky-meta-key.png +share/gnome/help/accessx-status/it/figures/accessx_sticky-shift-key.png +share/gnome/help/accessx-status/it/figures/accessx_sticky-windows-key.png +share/gnome/help/accessx-status/nl/accessx-status.xml +share/gnome/help/accessx-status/nl/figures/accessx-status-applet.png +share/gnome/help/accessx-status/nl/figures/accessx-status-disabled.png +share/gnome/help/accessx-status/nl/figures/accessx_bounce-keys.png +share/gnome/help/accessx-status/nl/figures/accessx_mouse-keys.png +share/gnome/help/accessx-status/nl/figures/accessx_slow-keys.png +share/gnome/help/accessx-status/nl/figures/accessx_sticky-altGr-key.png +share/gnome/help/accessx-status/nl/figures/accessx_sticky-ctrl-key.png +share/gnome/help/accessx-status/nl/figures/accessx_sticky-keys.png +share/gnome/help/accessx-status/nl/figures/accessx_sticky-meta-key.png +share/gnome/help/accessx-status/nl/figures/accessx_sticky-shift-key.png +share/gnome/help/accessx-status/nl/figures/accessx_sticky-windows-key.png +share/gnome/help/accessx-status/oc/accessx-status.xml +share/gnome/help/accessx-status/oc/figures/accessx-status-applet.png +share/gnome/help/accessx-status/oc/figures/accessx-status-disabled.png +share/gnome/help/accessx-status/oc/figures/accessx_bounce-keys.png +share/gnome/help/accessx-status/oc/figures/accessx_mouse-keys.png +share/gnome/help/accessx-status/oc/figures/accessx_slow-keys.png +share/gnome/help/accessx-status/oc/figures/accessx_sticky-altGr-key.png +share/gnome/help/accessx-status/oc/figures/accessx_sticky-ctrl-key.png +share/gnome/help/accessx-status/oc/figures/accessx_sticky-keys.png +share/gnome/help/accessx-status/oc/figures/accessx_sticky-meta-key.png +share/gnome/help/accessx-status/oc/figures/accessx_sticky-shift-key.png +share/gnome/help/accessx-status/oc/figures/accessx_sticky-windows-key.png +share/gnome/help/accessx-status/sv/accessx-status.xml +share/gnome/help/accessx-status/sv/figures/accessx-status-applet.png +share/gnome/help/accessx-status/sv/figures/accessx-status-disabled.png +share/gnome/help/accessx-status/sv/figures/accessx_bounce-keys.png +share/gnome/help/accessx-status/sv/figures/accessx_mouse-keys.png +share/gnome/help/accessx-status/sv/figures/accessx_slow-keys.png +share/gnome/help/accessx-status/sv/figures/accessx_sticky-altGr-key.png +share/gnome/help/accessx-status/sv/figures/accessx_sticky-ctrl-key.png +share/gnome/help/accessx-status/sv/figures/accessx_sticky-keys.png +share/gnome/help/accessx-status/sv/figures/accessx_sticky-meta-key.png +share/gnome/help/accessx-status/sv/figures/accessx_sticky-shift-key.png +share/gnome/help/accessx-status/sv/figures/accessx_sticky-windows-key.png +share/gnome/help/accessx-status/uk/accessx-status.xml +share/gnome/help/accessx-status/uk/figures/accessx-status-applet.png +share/gnome/help/accessx-status/uk/figures/accessx-status-disabled.png +share/gnome/help/accessx-status/uk/figures/accessx_bounce-keys.png +share/gnome/help/accessx-status/uk/figures/accessx_mouse-keys.png +share/gnome/help/accessx-status/uk/figures/accessx_slow-keys.png +share/gnome/help/accessx-status/uk/figures/accessx_sticky-altGr-key.png +share/gnome/help/accessx-status/uk/figures/accessx_sticky-ctrl-key.png +share/gnome/help/accessx-status/uk/figures/accessx_sticky-keys.png +share/gnome/help/accessx-status/uk/figures/accessx_sticky-meta-key.png +share/gnome/help/accessx-status/uk/figures/accessx_sticky-shift-key.png +share/gnome/help/accessx-status/uk/figures/accessx_sticky-windows-key.png +%%BATTERY%%share/gnome/help/battstat/C/battstat.xml +%%BATTERY%%share/gnome/help/battstat/C/figures/battstat-applet-expanded.png +%%BATTERY%%share/gnome/help/battstat/C/figures/battstat-applet.png +%%BATTERY%%share/gnome/help/battstat/C/figures/battstat-credits-hal.png +%%BATTERY%%share/gnome/help/battstat/C/figures/battstat-preferences.png +%%BATTERY%%share/gnome/help/battstat/C/figures/context-menu.png +%%BATTERY%%share/gnome/help/battstat/C/legal.xml +%%BATTERY%%share/gnome/help/battstat/bg/battstat.xml +%%BATTERY%%share/gnome/help/battstat/bg/figures/battstat-applet-expanded.png +%%BATTERY%%share/gnome/help/battstat/bg/figures/battstat-applet.png +%%BATTERY%%share/gnome/help/battstat/bg/figures/battstat-credits-hal.png +%%BATTERY%%share/gnome/help/battstat/bg/figures/battstat-preferences.png +%%BATTERY%%share/gnome/help/battstat/bg/figures/context-menu.png +%%BATTERY%%share/gnome/help/battstat/en_GB/battstat.xml +%%BATTERY%%share/gnome/help/battstat/en_GB/figures/battstat-applet-expanded.png +%%BATTERY%%share/gnome/help/battstat/en_GB/figures/battstat-applet.png +%%BATTERY%%share/gnome/help/battstat/en_GB/figures/battstat-credits-hal.png +%%BATTERY%%share/gnome/help/battstat/en_GB/figures/battstat-preferences.png +%%BATTERY%%share/gnome/help/battstat/en_GB/figures/context-menu.png +%%BATTERY%%share/gnome/help/battstat/es/battstat.xml +%%BATTERY%%share/gnome/help/battstat/es/figures/battstat-applet-expanded.png +%%BATTERY%%share/gnome/help/battstat/es/figures/battstat-applet.png +%%BATTERY%%share/gnome/help/battstat/es/figures/battstat-credits-hal.png +%%BATTERY%%share/gnome/help/battstat/es/figures/battstat-preferences.png +%%BATTERY%%share/gnome/help/battstat/es/figures/context-menu.png +%%BATTERY%%share/gnome/help/battstat/fr/battstat.xml +%%BATTERY%%share/gnome/help/battstat/fr/figures/battstat-applet-expanded.png +%%BATTERY%%share/gnome/help/battstat/fr/figures/battstat-applet.png +%%BATTERY%%share/gnome/help/battstat/fr/figures/battstat-credits-hal.png +%%BATTERY%%share/gnome/help/battstat/fr/figures/battstat-preferences.png +%%BATTERY%%share/gnome/help/battstat/fr/figures/context-menu.png +%%BATTERY%%share/gnome/help/battstat/oc/battstat.xml +%%BATTERY%%share/gnome/help/battstat/oc/figures/battstat-applet-expanded.png +%%BATTERY%%share/gnome/help/battstat/oc/figures/battstat-applet.png +%%BATTERY%%share/gnome/help/battstat/oc/figures/battstat-credits-hal.png +%%BATTERY%%share/gnome/help/battstat/oc/figures/battstat-preferences.png +%%BATTERY%%share/gnome/help/battstat/oc/figures/context-menu.png +%%BATTERY%%share/gnome/help/battstat/pa/battstat.xml +%%BATTERY%%share/gnome/help/battstat/pa/figures/battstat-applet-expanded.png +%%BATTERY%%share/gnome/help/battstat/pa/figures/battstat-applet.png +%%BATTERY%%share/gnome/help/battstat/pa/figures/battstat-credits-hal.png +%%BATTERY%%share/gnome/help/battstat/pa/figures/battstat-preferences.png +%%BATTERY%%share/gnome/help/battstat/pa/figures/context-menu.png +%%BATTERY%%share/gnome/help/battstat/sv/battstat.xml +%%BATTERY%%share/gnome/help/battstat/sv/figures/battstat-applet-expanded.png +%%BATTERY%%share/gnome/help/battstat/sv/figures/battstat-applet.png +%%BATTERY%%share/gnome/help/battstat/sv/figures/battstat-credits-hal.png +%%BATTERY%%share/gnome/help/battstat/sv/figures/battstat-preferences.png +%%BATTERY%%share/gnome/help/battstat/sv/figures/context-menu.png +%%BATTERY%%share/gnome/help/battstat/uk/battstat.xml +%%BATTERY%%share/gnome/help/battstat/uk/figures/battstat-applet-expanded.png +%%BATTERY%%share/gnome/help/battstat/uk/figures/battstat-applet.png +%%BATTERY%%share/gnome/help/battstat/uk/figures/battstat-credits-hal.png +%%BATTERY%%share/gnome/help/battstat/uk/figures/battstat-preferences.png +%%BATTERY%%share/gnome/help/battstat/uk/figures/context-menu.png +share/gnome/help/char-palette/C/char-palette.xml +share/gnome/help/char-palette/C/figures/charpalette_applet.png +share/gnome/help/char-palette/C/figures/charpalette_chargroup.png +share/gnome/help/char-palette/C/figures/charpick-preferences.png +share/gnome/help/char-palette/C/figures/charpick_characters.png +share/gnome/help/char-palette/C/legal.xml +share/gnome/help/char-palette/bg/char-palette.xml +share/gnome/help/char-palette/bg/figures/charpalette_applet.png +share/gnome/help/char-palette/bg/figures/charpalette_chargroup.png +share/gnome/help/char-palette/bg/figures/charpick-preferences.png +share/gnome/help/char-palette/bg/figures/charpick_characters.png +share/gnome/help/char-palette/en_GB/char-palette.xml +share/gnome/help/char-palette/en_GB/figures/charpalette_applet.png +share/gnome/help/char-palette/en_GB/figures/charpalette_chargroup.png +share/gnome/help/char-palette/en_GB/figures/charpick-preferences.png +share/gnome/help/char-palette/en_GB/figures/charpick_characters.png +share/gnome/help/char-palette/es/char-palette.xml +share/gnome/help/char-palette/es/figures/charpalette_applet.png +share/gnome/help/char-palette/es/figures/charpalette_chargroup.png +share/gnome/help/char-palette/es/figures/charpick-preferences.png +share/gnome/help/char-palette/es/figures/charpick_characters.png +share/gnome/help/char-palette/fr/char-palette.xml +share/gnome/help/char-palette/fr/figures/charpalette_applet.png +share/gnome/help/char-palette/fr/figures/charpalette_chargroup.png +share/gnome/help/char-palette/fr/figures/charpick-preferences.png +share/gnome/help/char-palette/fr/figures/charpick_characters.png +share/gnome/help/char-palette/it/char-palette.xml +share/gnome/help/char-palette/it/figures/charpalette_applet.png +share/gnome/help/char-palette/it/figures/charpalette_chargroup.png +share/gnome/help/char-palette/it/figures/charpick-preferences.png +share/gnome/help/char-palette/it/figures/charpick_characters.png +share/gnome/help/char-palette/nl/char-palette.xml +share/gnome/help/char-palette/nl/figures/charpalette_applet.png +share/gnome/help/char-palette/nl/figures/charpalette_chargroup.png +share/gnome/help/char-palette/nl/figures/charpick-preferences.png +share/gnome/help/char-palette/nl/figures/charpick_characters.png +share/gnome/help/char-palette/oc/char-palette.xml +share/gnome/help/char-palette/oc/figures/charpalette_applet.png +share/gnome/help/char-palette/oc/figures/charpalette_chargroup.png +share/gnome/help/char-palette/oc/figures/charpick-preferences.png +share/gnome/help/char-palette/oc/figures/charpick_characters.png +share/gnome/help/char-palette/pt_BR/char-palette.xml +share/gnome/help/char-palette/pt_BR/figures/charpalette_applet.png +share/gnome/help/char-palette/pt_BR/figures/charpalette_chargroup.png +share/gnome/help/char-palette/pt_BR/figures/charpick-preferences.png +share/gnome/help/char-palette/pt_BR/figures/charpick_characters.png +share/gnome/help/char-palette/ru/char-palette.xml +share/gnome/help/char-palette/ru/figures/charpalette_applet.png +share/gnome/help/char-palette/ru/figures/charpalette_chargroup.png +share/gnome/help/char-palette/ru/figures/charpick-preferences.png +share/gnome/help/char-palette/ru/figures/charpick_characters.png +share/gnome/help/char-palette/sv/char-palette.xml +share/gnome/help/char-palette/sv/figures/charpalette_applet.png +share/gnome/help/char-palette/sv/figures/charpalette_chargroup.png +share/gnome/help/char-palette/sv/figures/charpick-preferences.png +share/gnome/help/char-palette/sv/figures/charpick_characters.png +share/gnome/help/char-palette/uk/char-palette.xml +share/gnome/help/char-palette/uk/figures/charpalette_applet.png +share/gnome/help/char-palette/uk/figures/charpalette_chargroup.png +share/gnome/help/char-palette/uk/figures/charpick-preferences.png +share/gnome/help/char-palette/uk/figures/charpick_characters.png +%%COMMANDER%%share/gnome/help/command-line/C/command-line.xml +%%COMMANDER%%share/gnome/help/command-line/C/figures/command-line.png +%%COMMANDER%%share/gnome/help/command-line/C/figures/prefs-macros.png +%%COMMANDER%%share/gnome/help/command-line/C/figures/prefs.png +%%COMMANDER%%share/gnome/help/command-line/C/legal.xml +%%COMMANDER%%share/gnome/help/command-line/en_GB/command-line.xml +%%COMMANDER%%share/gnome/help/command-line/en_GB/figures/command-line.png +%%COMMANDER%%share/gnome/help/command-line/en_GB/figures/prefs-macros.png +%%COMMANDER%%share/gnome/help/command-line/en_GB/figures/prefs.png +%%COMMANDER%%share/gnome/help/command-line/es/command-line.xml +%%COMMANDER%%share/gnome/help/command-line/es/figures/command-line.png +%%COMMANDER%%share/gnome/help/command-line/es/figures/prefs-macros.png +%%COMMANDER%%share/gnome/help/command-line/es/figures/prefs.png +%%COMMANDER%%share/gnome/help/command-line/fr/command-line.xml +%%COMMANDER%%share/gnome/help/command-line/fr/figures/command-line.png +%%COMMANDER%%share/gnome/help/command-line/fr/figures/prefs-macros.png +%%COMMANDER%%share/gnome/help/command-line/fr/figures/prefs.png +%%COMMANDER%%share/gnome/help/command-line/oc/command-line.xml +%%COMMANDER%%share/gnome/help/command-line/oc/figures/command-line.png +%%COMMANDER%%share/gnome/help/command-line/oc/figures/prefs-macros.png +%%COMMANDER%%share/gnome/help/command-line/oc/figures/prefs.png +%%COMMANDER%%share/gnome/help/command-line/pt_BR/command-line.xml +%%COMMANDER%%share/gnome/help/command-line/pt_BR/figures/command-line.png +%%COMMANDER%%share/gnome/help/command-line/pt_BR/figures/prefs-macros.png +%%COMMANDER%%share/gnome/help/command-line/pt_BR/figures/prefs.png +%%COMMANDER%%share/gnome/help/command-line/sv/command-line.xml +%%COMMANDER%%share/gnome/help/command-line/sv/figures/command-line.png +%%COMMANDER%%share/gnome/help/command-line/sv/figures/prefs-macros.png +%%COMMANDER%%share/gnome/help/command-line/sv/figures/prefs.png +%%COMMANDER%%share/gnome/help/command-line/uk/command-line.xml +%%COMMANDER%%share/gnome/help/command-line/uk/figures/command-line.png +%%COMMANDER%%share/gnome/help/command-line/uk/figures/prefs-macros.png +%%COMMANDER%%share/gnome/help/command-line/uk/figures/prefs.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/cpufreq-applet.xml +%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-100.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-25.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-50.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-75.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet-preferences-smp.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet-preferences.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet-selector-both.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet-selector.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/figures/cpufreq-applet.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/C/legal.xml +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/cpufreq-applet.xml +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-100.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-25.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-50.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-75.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet-preferences-smp.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet-preferences.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet-selector-both.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet-selector.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ca/figures/cpufreq-applet.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/cpufreq-applet.xml +%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-100.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-25.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-50.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-75.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet-preferences-smp.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet-preferences.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet-selector-both.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet-selector.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/en_GB/figures/cpufreq-applet.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/cpufreq-applet.xml +%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-100.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-25.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-50.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-75.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet-preferences-smp.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet-preferences.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet-selector-both.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet-selector.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/es/figures/cpufreq-applet.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/cpufreq-applet.xml +%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-100.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-25.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-50.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-75.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet-preferences-smp.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet-preferences.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet-selector-both.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet-selector.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/fr/figures/cpufreq-applet.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/cpufreq-applet.xml +%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-100.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-25.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-50.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-75.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet-preferences-smp.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet-preferences.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet-selector-both.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet-selector.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/nl/figures/cpufreq-applet.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/cpufreq-applet.xml +%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-100.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-25.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-50.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-75.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet-preferences-smp.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet-preferences.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet-selector-both.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet-selector.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/oc/figures/cpufreq-applet.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/cpufreq-applet.xml +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-100.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-25.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-50.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-75.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet-preferences-smp.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet-preferences.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet-selector-both.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet-selector.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/ru/figures/cpufreq-applet.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/cpufreq-applet.xml +%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-100.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-25.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-50.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-75.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet-preferences-smp.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet-preferences.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet-selector-both.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet-selector.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/sv/figures/cpufreq-applet.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/cpufreq-applet.xml +%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-100.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-25.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-50.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-75.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet-preferences-smp.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet-preferences.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet-selector-both.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet-selector.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/uk/figures/cpufreq-applet.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/cpufreq-applet.xml +%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-100.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-25.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-50.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-75.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet-preferences-smp.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet-preferences.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet-selector-both.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet-selector.png +%%CPUFREQ%%share/gnome/help/cpufreq-applet/zh_CN/figures/cpufreq-applet.png +share/gnome/help/drivemount/C/drivemount.xml +share/gnome/help/drivemount/C/figures/drivemount-applet_eject.png +share/gnome/help/drivemount/C/figures/drivemount-applet_example.png +share/gnome/help/drivemount/C/figures/drivemount-applet_mount.png +share/gnome/help/drivemount/C/figures/drivemount-applet_open.png +share/gnome/help/drivemount/C/figures/drivemount-applet_status.png +share/gnome/help/drivemount/C/legal.xml +share/gnome/help/drivemount/en_GB/drivemount.xml +share/gnome/help/drivemount/en_GB/figures/drivemount-applet_eject.png +share/gnome/help/drivemount/en_GB/figures/drivemount-applet_example.png +share/gnome/help/drivemount/en_GB/figures/drivemount-applet_mount.png +share/gnome/help/drivemount/en_GB/figures/drivemount-applet_open.png +share/gnome/help/drivemount/en_GB/figures/drivemount-applet_status.png +share/gnome/help/drivemount/es/drivemount.xml +share/gnome/help/drivemount/es/figures/drivemount-applet_eject.png +share/gnome/help/drivemount/es/figures/drivemount-applet_example.png +share/gnome/help/drivemount/es/figures/drivemount-applet_mount.png +share/gnome/help/drivemount/es/figures/drivemount-applet_open.png +share/gnome/help/drivemount/es/figures/drivemount-applet_status.png +share/gnome/help/drivemount/fr/drivemount.xml +share/gnome/help/drivemount/fr/figures/drivemount-applet_eject.png +share/gnome/help/drivemount/fr/figures/drivemount-applet_example.png +share/gnome/help/drivemount/fr/figures/drivemount-applet_mount.png +share/gnome/help/drivemount/fr/figures/drivemount-applet_open.png +share/gnome/help/drivemount/fr/figures/drivemount-applet_status.png +share/gnome/help/drivemount/it/drivemount.xml +share/gnome/help/drivemount/it/figures/drivemount-applet_eject.png +share/gnome/help/drivemount/it/figures/drivemount-applet_example.png +share/gnome/help/drivemount/it/figures/drivemount-applet_mount.png +share/gnome/help/drivemount/it/figures/drivemount-applet_open.png +share/gnome/help/drivemount/it/figures/drivemount-applet_status.png +share/gnome/help/drivemount/oc/drivemount.xml +share/gnome/help/drivemount/oc/figures/drivemount-applet_eject.png +share/gnome/help/drivemount/oc/figures/drivemount-applet_example.png +share/gnome/help/drivemount/oc/figures/drivemount-applet_mount.png +share/gnome/help/drivemount/oc/figures/drivemount-applet_open.png +share/gnome/help/drivemount/oc/figures/drivemount-applet_status.png +share/gnome/help/drivemount/pa/drivemount.xml +share/gnome/help/drivemount/pa/figures/drivemount-applet_eject.png +share/gnome/help/drivemount/pa/figures/drivemount-applet_example.png +share/gnome/help/drivemount/pa/figures/drivemount-applet_mount.png +share/gnome/help/drivemount/pa/figures/drivemount-applet_open.png +share/gnome/help/drivemount/pa/figures/drivemount-applet_status.png +share/gnome/help/drivemount/ru/drivemount.xml +share/gnome/help/drivemount/ru/figures/drivemount-applet_eject.png +share/gnome/help/drivemount/ru/figures/drivemount-applet_example.png +share/gnome/help/drivemount/ru/figures/drivemount-applet_mount.png +share/gnome/help/drivemount/ru/figures/drivemount-applet_open.png +share/gnome/help/drivemount/ru/figures/drivemount-applet_status.png +share/gnome/help/drivemount/sv/drivemount.xml +share/gnome/help/drivemount/sv/figures/drivemount-applet_eject.png +share/gnome/help/drivemount/sv/figures/drivemount-applet_example.png +share/gnome/help/drivemount/sv/figures/drivemount-applet_mount.png +share/gnome/help/drivemount/sv/figures/drivemount-applet_open.png +share/gnome/help/drivemount/sv/figures/drivemount-applet_status.png +share/gnome/help/drivemount/uk/drivemount.xml +share/gnome/help/drivemount/uk/figures/drivemount-applet_eject.png +share/gnome/help/drivemount/uk/figures/drivemount-applet_example.png +share/gnome/help/drivemount/uk/figures/drivemount-applet_mount.png +share/gnome/help/drivemount/uk/figures/drivemount-applet_open.png +share/gnome/help/drivemount/uk/figures/drivemount-applet_status.png +share/gnome/help/drivemount/zh_CN/drivemount.xml +share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_eject.png +share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_example.png +share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_mount.png +share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_open.png +share/gnome/help/drivemount/zh_CN/figures/drivemount-applet_status.png +share/gnome/help/geyes/C/figures/geyes_applet.png +share/gnome/help/geyes/C/geyes.xml +share/gnome/help/geyes/C/legal.xml +share/gnome/help/geyes/bg/figures/geyes_applet.png +share/gnome/help/geyes/bg/geyes.xml +share/gnome/help/geyes/ca/figures/geyes_applet.png +share/gnome/help/geyes/ca/geyes.xml +share/gnome/help/geyes/de/figures/geyes_applet.png +share/gnome/help/geyes/de/geyes.xml +share/gnome/help/geyes/en_GB/figures/geyes_applet.png +share/gnome/help/geyes/en_GB/geyes.xml +share/gnome/help/geyes/es/figures/geyes_applet.png +share/gnome/help/geyes/es/geyes.xml +share/gnome/help/geyes/fr/figures/geyes_applet.png +share/gnome/help/geyes/fr/geyes.xml +share/gnome/help/geyes/it/figures/geyes_applet.png +share/gnome/help/geyes/it/geyes.xml +share/gnome/help/geyes/oc/figures/geyes_applet.png +share/gnome/help/geyes/oc/geyes.xml +share/gnome/help/geyes/ru/figures/geyes_applet.png +share/gnome/help/geyes/ru/geyes.xml +share/gnome/help/geyes/sv/figures/geyes_applet.png +share/gnome/help/geyes/sv/geyes.xml +share/gnome/help/geyes/uk/figures/geyes_applet.png +share/gnome/help/geyes/uk/geyes.xml +share/gnome/help/gswitchit/C/gswitchit.xml +share/gnome/help/gswitchit/C/legal.xml +share/gnome/help/gswitchit/el/gswitchit.xml +share/gnome/help/gswitchit/en_GB/gswitchit.xml +share/gnome/help/gswitchit/es/gswitchit.xml +share/gnome/help/gswitchit/fr/gswitchit.xml +share/gnome/help/gswitchit/oc/gswitchit.xml +share/gnome/help/gswitchit/ru/gswitchit.xml +share/gnome/help/gswitchit/sv/gswitchit.xml +share/gnome/help/gswitchit/uk/gswitchit.xml +share/gnome/help/gweather/C/figures/gweather-details.png +share/gnome/help/gweather/C/figures/gweather-menu-prefs.png +share/gnome/help/gweather/C/figures/gweather-prefs-general.png +share/gnome/help/gweather/C/figures/gweather-prefs-locations.png +share/gnome/help/gweather/C/figures/gweather_applet.png +share/gnome/help/gweather/C/figures/stock_weather-cloudy.png +share/gnome/help/gweather/C/figures/stock_weather-few-clouds.png +share/gnome/help/gweather/C/figures/stock_weather-fog.png +share/gnome/help/gweather/C/figures/stock_weather-night-clear.png +share/gnome/help/gweather/C/figures/stock_weather-night-few-clouds.png +share/gnome/help/gweather/C/figures/stock_weather-showers.png +share/gnome/help/gweather/C/figures/stock_weather-snow.png +share/gnome/help/gweather/C/figures/stock_weather-storm.png +share/gnome/help/gweather/C/figures/stock_weather-sunny.png +share/gnome/help/gweather/C/gweather.xml +share/gnome/help/gweather/C/legal.xml +share/gnome/help/gweather/en_GB/figures/gweather-details.png +share/gnome/help/gweather/en_GB/figures/gweather-menu-prefs.png +share/gnome/help/gweather/en_GB/figures/gweather-prefs-general.png +share/gnome/help/gweather/en_GB/figures/gweather-prefs-locations.png +share/gnome/help/gweather/en_GB/figures/gweather_applet.png +share/gnome/help/gweather/en_GB/figures/stock_weather-cloudy.png +share/gnome/help/gweather/en_GB/figures/stock_weather-few-clouds.png +share/gnome/help/gweather/en_GB/figures/stock_weather-fog.png +share/gnome/help/gweather/en_GB/figures/stock_weather-night-clear.png +share/gnome/help/gweather/en_GB/figures/stock_weather-night-few-clouds.png +share/gnome/help/gweather/en_GB/figures/stock_weather-showers.png +share/gnome/help/gweather/en_GB/figures/stock_weather-snow.png +share/gnome/help/gweather/en_GB/figures/stock_weather-storm.png +share/gnome/help/gweather/en_GB/figures/stock_weather-sunny.png +share/gnome/help/gweather/en_GB/gweather.xml +share/gnome/help/gweather/es/figures/gweather-details.png +share/gnome/help/gweather/es/figures/gweather-menu-prefs.png +share/gnome/help/gweather/es/figures/gweather-prefs-general.png +share/gnome/help/gweather/es/figures/gweather-prefs-locations.png +share/gnome/help/gweather/es/figures/gweather_applet.png +share/gnome/help/gweather/es/figures/stock_weather-cloudy.png +share/gnome/help/gweather/es/figures/stock_weather-few-clouds.png +share/gnome/help/gweather/es/figures/stock_weather-fog.png +share/gnome/help/gweather/es/figures/stock_weather-night-clear.png +share/gnome/help/gweather/es/figures/stock_weather-night-few-clouds.png +share/gnome/help/gweather/es/figures/stock_weather-showers.png +share/gnome/help/gweather/es/figures/stock_weather-snow.png +share/gnome/help/gweather/es/figures/stock_weather-storm.png +share/gnome/help/gweather/es/figures/stock_weather-sunny.png +share/gnome/help/gweather/es/gweather.xml +share/gnome/help/gweather/fr/figures/gweather-details.png +share/gnome/help/gweather/fr/figures/gweather-menu-prefs.png +share/gnome/help/gweather/fr/figures/gweather-prefs-general.png +share/gnome/help/gweather/fr/figures/gweather-prefs-locations.png +share/gnome/help/gweather/fr/figures/gweather_applet.png +share/gnome/help/gweather/fr/figures/stock_weather-cloudy.png +share/gnome/help/gweather/fr/figures/stock_weather-few-clouds.png +share/gnome/help/gweather/fr/figures/stock_weather-fog.png +share/gnome/help/gweather/fr/figures/stock_weather-night-clear.png +share/gnome/help/gweather/fr/figures/stock_weather-night-few-clouds.png +share/gnome/help/gweather/fr/figures/stock_weather-showers.png +share/gnome/help/gweather/fr/figures/stock_weather-snow.png +share/gnome/help/gweather/fr/figures/stock_weather-storm.png +share/gnome/help/gweather/fr/figures/stock_weather-sunny.png +share/gnome/help/gweather/fr/gweather.xml +share/gnome/help/gweather/nl/figures/gweather-details.png +share/gnome/help/gweather/nl/figures/gweather-menu-prefs.png +share/gnome/help/gweather/nl/figures/gweather-prefs-general.png +share/gnome/help/gweather/nl/figures/gweather-prefs-locations.png +share/gnome/help/gweather/nl/figures/gweather_applet.png +share/gnome/help/gweather/nl/figures/stock_weather-cloudy.png +share/gnome/help/gweather/nl/figures/stock_weather-few-clouds.png +share/gnome/help/gweather/nl/figures/stock_weather-fog.png +share/gnome/help/gweather/nl/figures/stock_weather-night-clear.png +share/gnome/help/gweather/nl/figures/stock_weather-night-few-clouds.png +share/gnome/help/gweather/nl/figures/stock_weather-showers.png +share/gnome/help/gweather/nl/figures/stock_weather-snow.png +share/gnome/help/gweather/nl/figures/stock_weather-storm.png +share/gnome/help/gweather/nl/figures/stock_weather-sunny.png +share/gnome/help/gweather/nl/gweather.xml +share/gnome/help/gweather/oc/figures/gweather-details.png +share/gnome/help/gweather/oc/figures/gweather-menu-prefs.png +share/gnome/help/gweather/oc/figures/gweather-prefs-general.png +share/gnome/help/gweather/oc/figures/gweather-prefs-locations.png +share/gnome/help/gweather/oc/figures/gweather_applet.png +share/gnome/help/gweather/oc/figures/stock_weather-cloudy.png +share/gnome/help/gweather/oc/figures/stock_weather-few-clouds.png +share/gnome/help/gweather/oc/figures/stock_weather-fog.png +share/gnome/help/gweather/oc/figures/stock_weather-night-clear.png +share/gnome/help/gweather/oc/figures/stock_weather-night-few-clouds.png +share/gnome/help/gweather/oc/figures/stock_weather-showers.png +share/gnome/help/gweather/oc/figures/stock_weather-snow.png +share/gnome/help/gweather/oc/figures/stock_weather-storm.png +share/gnome/help/gweather/oc/figures/stock_weather-sunny.png +share/gnome/help/gweather/oc/gweather.xml +share/gnome/help/gweather/pa/figures/gweather-details.png +share/gnome/help/gweather/pa/figures/gweather-menu-prefs.png +share/gnome/help/gweather/pa/figures/gweather-prefs-general.png +share/gnome/help/gweather/pa/figures/gweather-prefs-locations.png +share/gnome/help/gweather/pa/figures/gweather_applet.png +share/gnome/help/gweather/pa/figures/stock_weather-cloudy.png +share/gnome/help/gweather/pa/figures/stock_weather-few-clouds.png +share/gnome/help/gweather/pa/figures/stock_weather-fog.png +share/gnome/help/gweather/pa/figures/stock_weather-night-clear.png +share/gnome/help/gweather/pa/figures/stock_weather-night-few-clouds.png +share/gnome/help/gweather/pa/figures/stock_weather-showers.png +share/gnome/help/gweather/pa/figures/stock_weather-snow.png +share/gnome/help/gweather/pa/figures/stock_weather-storm.png +share/gnome/help/gweather/pa/figures/stock_weather-sunny.png +share/gnome/help/gweather/pa/gweather.xml +share/gnome/help/gweather/sv/figures/gweather-details.png +share/gnome/help/gweather/sv/figures/gweather-menu-prefs.png +share/gnome/help/gweather/sv/figures/gweather-prefs-general.png +share/gnome/help/gweather/sv/figures/gweather-prefs-locations.png +share/gnome/help/gweather/sv/figures/gweather_applet.png +share/gnome/help/gweather/sv/figures/stock_weather-cloudy.png +share/gnome/help/gweather/sv/figures/stock_weather-few-clouds.png +share/gnome/help/gweather/sv/figures/stock_weather-fog.png +share/gnome/help/gweather/sv/figures/stock_weather-night-clear.png +share/gnome/help/gweather/sv/figures/stock_weather-night-few-clouds.png +share/gnome/help/gweather/sv/figures/stock_weather-showers.png +share/gnome/help/gweather/sv/figures/stock_weather-snow.png +share/gnome/help/gweather/sv/figures/stock_weather-storm.png +share/gnome/help/gweather/sv/figures/stock_weather-sunny.png +share/gnome/help/gweather/sv/gweather.xml +share/gnome/help/gweather/uk/figures/gweather-details.png +share/gnome/help/gweather/uk/figures/gweather-menu-prefs.png +share/gnome/help/gweather/uk/figures/gweather-prefs-general.png +share/gnome/help/gweather/uk/figures/gweather-prefs-locations.png +share/gnome/help/gweather/uk/figures/gweather_applet.png +share/gnome/help/gweather/uk/figures/stock_weather-cloudy.png +share/gnome/help/gweather/uk/figures/stock_weather-few-clouds.png +share/gnome/help/gweather/uk/figures/stock_weather-fog.png +share/gnome/help/gweather/uk/figures/stock_weather-night-clear.png +share/gnome/help/gweather/uk/figures/stock_weather-night-few-clouds.png +share/gnome/help/gweather/uk/figures/stock_weather-showers.png +share/gnome/help/gweather/uk/figures/stock_weather-snow.png +share/gnome/help/gweather/uk/figures/stock_weather-storm.png +share/gnome/help/gweather/uk/figures/stock_weather-sunny.png +share/gnome/help/gweather/uk/gweather.xml +share/gnome/help/mixer_applet2/C/figures/volumecontrol_applet.png +share/gnome/help/mixer_applet2/C/legal.xml +share/gnome/help/mixer_applet2/C/mixer_applet2.xml +share/gnome/help/mixer_applet2/ca/figures/volumecontrol_applet.png +share/gnome/help/mixer_applet2/ca/mixer_applet2.xml +share/gnome/help/mixer_applet2/en_GB/figures/volumecontrol_applet.png +share/gnome/help/mixer_applet2/en_GB/mixer_applet2.xml +share/gnome/help/mixer_applet2/es/figures/volumecontrol_applet.png +share/gnome/help/mixer_applet2/es/mixer_applet2.xml +share/gnome/help/mixer_applet2/fr/figures/volumecontrol_applet.png +share/gnome/help/mixer_applet2/fr/mixer_applet2.xml +share/gnome/help/mixer_applet2/it/figures/volumecontrol_applet.png +share/gnome/help/mixer_applet2/it/mixer_applet2.xml +share/gnome/help/mixer_applet2/oc/figures/volumecontrol_applet.png +share/gnome/help/mixer_applet2/oc/mixer_applet2.xml +share/gnome/help/mixer_applet2/pa/figures/volumecontrol_applet.png +share/gnome/help/mixer_applet2/pa/mixer_applet2.xml +share/gnome/help/mixer_applet2/ru/figures/volumecontrol_applet.png +share/gnome/help/mixer_applet2/ru/mixer_applet2.xml +share/gnome/help/mixer_applet2/sv/figures/volumecontrol_applet.png +share/gnome/help/mixer_applet2/sv/mixer_applet2.xml +share/gnome/help/mixer_applet2/uk/figures/volumecontrol_applet.png +share/gnome/help/mixer_applet2/uk/mixer_applet2.xml +share/gnome/help/multiload/C/figures/multiload-preferences.png +share/gnome/help/multiload/C/figures/system-monitor-applet_window.png +share/gnome/help/multiload/C/figures/system_monitor.png +share/gnome/help/multiload/C/legal.xml +share/gnome/help/multiload/C/multiload.xml +share/gnome/help/multiload/ca/figures/multiload-preferences.png +share/gnome/help/multiload/ca/figures/system-monitor-applet_window.png +share/gnome/help/multiload/ca/figures/system_monitor.png +share/gnome/help/multiload/ca/multiload.xml +share/gnome/help/multiload/en_GB/figures/multiload-preferences.png +share/gnome/help/multiload/en_GB/figures/system-monitor-applet_window.png +share/gnome/help/multiload/en_GB/figures/system_monitor.png +share/gnome/help/multiload/en_GB/multiload.xml +share/gnome/help/multiload/es/figures/multiload-preferences.png +share/gnome/help/multiload/es/figures/system-monitor-applet_window.png +share/gnome/help/multiload/es/figures/system_monitor.png +share/gnome/help/multiload/es/multiload.xml +share/gnome/help/multiload/fr/figures/multiload-preferences.png +share/gnome/help/multiload/fr/figures/system-monitor-applet_window.png +share/gnome/help/multiload/fr/figures/system_monitor.png +share/gnome/help/multiload/fr/multiload.xml +share/gnome/help/multiload/oc/figures/multiload-preferences.png +share/gnome/help/multiload/oc/figures/system-monitor-applet_window.png +share/gnome/help/multiload/oc/figures/system_monitor.png +share/gnome/help/multiload/oc/multiload.xml +share/gnome/help/multiload/pa/figures/multiload-preferences.png +share/gnome/help/multiload/pa/figures/system-monitor-applet_window.png +share/gnome/help/multiload/pa/figures/system_monitor.png +share/gnome/help/multiload/pa/multiload.xml +share/gnome/help/multiload/ru/figures/multiload-preferences.png +share/gnome/help/multiload/ru/figures/system-monitor-applet_window.png +share/gnome/help/multiload/ru/figures/system_monitor.png +share/gnome/help/multiload/ru/multiload.xml +share/gnome/help/multiload/sv/figures/multiload-preferences.png +share/gnome/help/multiload/sv/figures/system-monitor-applet_window.png +share/gnome/help/multiload/sv/figures/system_monitor.png +share/gnome/help/multiload/sv/multiload.xml +share/gnome/help/multiload/uk/figures/multiload-preferences.png +share/gnome/help/multiload/uk/figures/system-monitor-applet_window.png +share/gnome/help/multiload/uk/figures/system_monitor.png +share/gnome/help/multiload/uk/multiload.xml +share/gnome/help/stickynotes_applet/C/figures/stickynote-right-menu-lock.png +share/gnome/help/stickynotes_applet/C/figures/stickynote-right-menu-new.png +share/gnome/help/stickynotes_applet/C/figures/stickynotes-note-prefs.png +share/gnome/help/stickynotes_applet/C/figures/stickynotes-prefs.png +share/gnome/help/stickynotes_applet/C/figures/stickynotes_applet.png +share/gnome/help/stickynotes_applet/C/legal.xml +share/gnome/help/stickynotes_applet/C/stickynotes_applet.xml +share/gnome/help/stickynotes_applet/en_GB/figures/stickynote-right-menu-lock.png +share/gnome/help/stickynotes_applet/en_GB/figures/stickynote-right-menu-new.png +share/gnome/help/stickynotes_applet/en_GB/figures/stickynotes-note-prefs.png +share/gnome/help/stickynotes_applet/en_GB/figures/stickynotes-prefs.png +share/gnome/help/stickynotes_applet/en_GB/figures/stickynotes_applet.png +share/gnome/help/stickynotes_applet/en_GB/stickynotes_applet.xml +share/gnome/help/stickynotes_applet/es/figures/stickynote-right-menu-lock.png +share/gnome/help/stickynotes_applet/es/figures/stickynote-right-menu-new.png +share/gnome/help/stickynotes_applet/es/figures/stickynotes-note-prefs.png +share/gnome/help/stickynotes_applet/es/figures/stickynotes-prefs.png +share/gnome/help/stickynotes_applet/es/figures/stickynotes_applet.png +share/gnome/help/stickynotes_applet/es/stickynotes_applet.xml +share/gnome/help/stickynotes_applet/fr/figures/stickynote-right-menu-lock.png +share/gnome/help/stickynotes_applet/fr/figures/stickynote-right-menu-new.png +share/gnome/help/stickynotes_applet/fr/figures/stickynotes-note-prefs.png +share/gnome/help/stickynotes_applet/fr/figures/stickynotes-prefs.png +share/gnome/help/stickynotes_applet/fr/figures/stickynotes_applet.png +share/gnome/help/stickynotes_applet/fr/stickynotes_applet.xml +share/gnome/help/stickynotes_applet/oc/figures/stickynote-right-menu-lock.png +share/gnome/help/stickynotes_applet/oc/figures/stickynote-right-menu-new.png +share/gnome/help/stickynotes_applet/oc/figures/stickynotes-note-prefs.png +share/gnome/help/stickynotes_applet/oc/figures/stickynotes-prefs.png +share/gnome/help/stickynotes_applet/oc/figures/stickynotes_applet.png +share/gnome/help/stickynotes_applet/oc/stickynotes_applet.xml +share/gnome/help/stickynotes_applet/pa/figures/stickynote-right-menu-lock.png +share/gnome/help/stickynotes_applet/pa/figures/stickynote-right-menu-new.png +share/gnome/help/stickynotes_applet/pa/figures/stickynotes-note-prefs.png +share/gnome/help/stickynotes_applet/pa/figures/stickynotes-prefs.png +share/gnome/help/stickynotes_applet/pa/figures/stickynotes_applet.png +share/gnome/help/stickynotes_applet/pa/stickynotes_applet.xml +share/gnome/help/stickynotes_applet/sv/figures/stickynote-right-menu-lock.png +share/gnome/help/stickynotes_applet/sv/figures/stickynote-right-menu-new.png +share/gnome/help/stickynotes_applet/sv/figures/stickynotes-note-prefs.png +share/gnome/help/stickynotes_applet/sv/figures/stickynotes-prefs.png +share/gnome/help/stickynotes_applet/sv/figures/stickynotes_applet.png +share/gnome/help/stickynotes_applet/sv/stickynotes_applet.xml +share/gnome/help/stickynotes_applet/uk/figures/stickynote-right-menu-lock.png +share/gnome/help/stickynotes_applet/uk/figures/stickynote-right-menu-new.png +share/gnome/help/stickynotes_applet/uk/figures/stickynotes-note-prefs.png +share/gnome/help/stickynotes_applet/uk/figures/stickynotes-prefs.png +share/gnome/help/stickynotes_applet/uk/figures/stickynotes_applet.png +share/gnome/help/stickynotes_applet/uk/stickynotes_applet.xml +share/gnome/help/trashapplet/C/figures/trash-applet.png +share/gnome/help/trashapplet/C/legal.xml +share/gnome/help/trashapplet/C/trashapplet.xml +share/gnome/help/trashapplet/ca/figures/trash-applet.png +share/gnome/help/trashapplet/ca/trashapplet.xml +share/gnome/help/trashapplet/de/figures/trash-applet.png +share/gnome/help/trashapplet/de/trashapplet.xml +share/gnome/help/trashapplet/en_GB/figures/trash-applet.png +share/gnome/help/trashapplet/en_GB/trashapplet.xml +share/gnome/help/trashapplet/es/figures/trash-applet.png +share/gnome/help/trashapplet/es/trashapplet.xml +share/gnome/help/trashapplet/fr/figures/trash-applet.png +share/gnome/help/trashapplet/fr/trashapplet.xml +share/gnome/help/trashapplet/it/figures/trash-applet.png +share/gnome/help/trashapplet/it/trashapplet.xml +share/gnome/help/trashapplet/nl/figures/trash-applet.png +share/gnome/help/trashapplet/nl/trashapplet.xml +share/gnome/help/trashapplet/oc/figures/trash-applet.png +share/gnome/help/trashapplet/oc/trashapplet.xml +share/gnome/help/trashapplet/pa/figures/trash-applet.png +share/gnome/help/trashapplet/pa/trashapplet.xml +share/gnome/help/trashapplet/ru/figures/trash-applet.png +share/gnome/help/trashapplet/ru/trashapplet.xml +share/gnome/help/trashapplet/sv/figures/trash-applet.png +share/gnome/help/trashapplet/sv/trashapplet.xml +share/gnome/help/trashapplet/uk/figures/trash-applet.png +share/gnome/help/trashapplet/uk/trashapplet.xml +%%CPUFREQ%%share/icons/hicolor/16x16/apps/gnome-cpu-frequency-applet.png +share/icons/hicolor/16x16/apps/gnome-eyes-applet.png +share/icons/hicolor/16x16/apps/gnome-modem-monitor-applet.png +share/icons/hicolor/16x16/apps/gnome-sticky-notes-applet.png +%%CPUFREQ%%share/icons/hicolor/22x22/apps/gnome-cpu-frequency-applet.png +share/icons/hicolor/22x22/apps/gnome-eyes-applet.png +share/icons/hicolor/22x22/apps/gnome-modem-monitor-applet.png +share/icons/hicolor/22x22/apps/gnome-sticky-notes-applet.png +%%CPUFREQ%%share/icons/hicolor/24x24/apps/gnome-cpu-frequency-applet.png +share/icons/hicolor/24x24/apps/gnome-eyes-applet.png +share/icons/hicolor/24x24/apps/gnome-modem-monitor-applet.png +share/icons/hicolor/24x24/apps/gnome-sticky-notes-applet.png +%%CPUFREQ%%share/icons/hicolor/32x32/apps/gnome-cpu-frequency-applet.png +share/icons/hicolor/32x32/apps/gnome-eyes-applet.png +share/icons/hicolor/32x32/apps/gnome-modem-monitor-applet.png +share/icons/hicolor/32x32/apps/gnome-sticky-notes-applet.png +share/icons/hicolor/48x48/apps/ax-applet.png +share/icons/hicolor/48x48/apps/charpick.png +%%COMMANDER%%share/icons/hicolor/48x48/apps/gnome-mini-commander.png +share/icons/hicolor/48x48/apps/gswitchit-applet.png +share/icons/hicolor/48x48/apps/gswitchit-properties-capplet.png +%%CPUFREQ%%share/icons/hicolor/scalable/apps/gnome-cpu-frequency-applet.svg +share/icons/hicolor/scalable/apps/gnome-eyes-applet.svg +share/icons/hicolor/scalable/apps/gnome-modem-monitor-applet.svg +share/icons/hicolor/scalable/apps/gnome-sticky-notes-applet.svg +share/locale/am/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ar/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/as/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/az/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/be/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/be@latin/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/bg/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/bn/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/bn_IN/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/bs/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ca/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/cs/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/cy/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/da/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/de/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/dz/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/el/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/en_CA/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/en_GB/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_AR/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_CL/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_CO/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_CR/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_DO/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_EC/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_ES/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_GT/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_HN/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_MX/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_NI/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_PA/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_PE/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_PR/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_SV/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_UY/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_VE/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/et/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/eu/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/fa/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/fi/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/fr/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ga/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/gl/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/gu/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/he/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/hi/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/hr/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/hu/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/hy/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/id/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/is/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/it/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ja/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ka/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ko/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ku/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ky/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/lt/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/lv/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/mg/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/mk/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ml/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/mn/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/mr/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ms/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/nb/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ne/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/nl/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/nn/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/oc/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/or/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/pa/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/pl/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/pt/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/pt_BR/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ro/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ru/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/rw/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/si/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/sk/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/sl/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/sq/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/sr/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/sr@Latn/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/sv/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ta/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/te/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/th/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/tr/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/uk/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/vi/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/wa/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/xh/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/zh_CN/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/zh_HK/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/zh_TW/LC_MESSAGES/gnome-applets-2.0.mo +share/omf/accessx-status/accessx-status-C.omf +share/omf/accessx-status/accessx-status-bg.omf +share/omf/accessx-status/accessx-status-ca.omf +share/omf/accessx-status/accessx-status-en_GB.omf +share/omf/accessx-status/accessx-status-es.omf +share/omf/accessx-status/accessx-status-fr.omf +share/omf/accessx-status/accessx-status-it.omf +share/omf/accessx-status/accessx-status-nl.omf +share/omf/accessx-status/accessx-status-oc.omf +share/omf/accessx-status/accessx-status-sv.omf +share/omf/accessx-status/accessx-status-uk.omf +%%BATTERY%%share/omf/battstat/battstat-C.omf +%%BATTERY%%share/omf/battstat/battstat-bg.omf +%%BATTERY%%share/omf/battstat/battstat-en_GB.omf +%%BATTERY%%share/omf/battstat/battstat-es.omf +%%BATTERY%%share/omf/battstat/battstat-fr.omf +%%BATTERY%%share/omf/battstat/battstat-oc.omf +%%BATTERY%%share/omf/battstat/battstat-pa.omf +%%BATTERY%%share/omf/battstat/battstat-sv.omf +%%BATTERY%%share/omf/battstat/battstat-uk.omf +share/omf/char-palette/char-palette-C.omf +share/omf/char-palette/char-palette-bg.omf +share/omf/char-palette/char-palette-en_GB.omf +share/omf/char-palette/char-palette-es.omf +share/omf/char-palette/char-palette-fr.omf +share/omf/char-palette/char-palette-it.omf +share/omf/char-palette/char-palette-nl.omf +share/omf/char-palette/char-palette-oc.omf +share/omf/char-palette/char-palette-pt_BR.omf +share/omf/char-palette/char-palette-ru.omf +share/omf/char-palette/char-palette-sv.omf +share/omf/char-palette/char-palette-uk.omf +%%COMMANDER%%share/omf/command-line/command-line-C.omf +%%COMMANDER%%share/omf/command-line/command-line-en_GB.omf +%%COMMANDER%%share/omf/command-line/command-line-es.omf +%%COMMANDER%%share/omf/command-line/command-line-fr.omf +%%COMMANDER%%share/omf/command-line/command-line-oc.omf +%%COMMANDER%%share/omf/command-line/command-line-pt_BR.omf +%%COMMANDER%%share/omf/command-line/command-line-sv.omf +%%COMMANDER%%share/omf/command-line/command-line-uk.omf +%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-C.omf +%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-ca.omf +%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-en_GB.omf +%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-es.omf +%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-fr.omf +%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-nl.omf +%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-oc.omf +%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-ru.omf +%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-sv.omf +%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-uk.omf +%%CPUFREQ%%share/omf/cpufreq-applet/cpufreq-applet-zh_CN.omf +share/omf/drivemount/drivemount-C.omf +share/omf/drivemount/drivemount-en_GB.omf +share/omf/drivemount/drivemount-es.omf +share/omf/drivemount/drivemount-fr.omf +share/omf/drivemount/drivemount-it.omf +share/omf/drivemount/drivemount-oc.omf +share/omf/drivemount/drivemount-pa.omf +share/omf/drivemount/drivemount-ru.omf +share/omf/drivemount/drivemount-sv.omf +share/omf/drivemount/drivemount-uk.omf +share/omf/drivemount/drivemount-zh_CN.omf +share/omf/geyes/geyes-C.omf +share/omf/geyes/geyes-bg.omf +share/omf/geyes/geyes-ca.omf +share/omf/geyes/geyes-de.omf +share/omf/geyes/geyes-en_GB.omf +share/omf/geyes/geyes-es.omf +share/omf/geyes/geyes-fr.omf +share/omf/geyes/geyes-it.omf +share/omf/geyes/geyes-oc.omf +share/omf/geyes/geyes-ru.omf +share/omf/geyes/geyes-sv.omf +share/omf/geyes/geyes-uk.omf +share/omf/gswitchit/gswitchit-C.omf +share/omf/gswitchit/gswitchit-el.omf +share/omf/gswitchit/gswitchit-en_GB.omf +share/omf/gswitchit/gswitchit-es.omf +share/omf/gswitchit/gswitchit-fr.omf +share/omf/gswitchit/gswitchit-oc.omf +share/omf/gswitchit/gswitchit-ru.omf +share/omf/gswitchit/gswitchit-sv.omf +share/omf/gswitchit/gswitchit-uk.omf +share/omf/gweather/gweather-C.omf +share/omf/gweather/gweather-en_GB.omf +share/omf/gweather/gweather-es.omf +share/omf/gweather/gweather-fr.omf +share/omf/gweather/gweather-nl.omf +share/omf/gweather/gweather-oc.omf +share/omf/gweather/gweather-pa.omf +share/omf/gweather/gweather-sv.omf +share/omf/gweather/gweather-uk.omf +share/omf/mixer_applet2/mixer_applet2-C.omf +share/omf/mixer_applet2/mixer_applet2-ca.omf +share/omf/mixer_applet2/mixer_applet2-en_GB.omf +share/omf/mixer_applet2/mixer_applet2-es.omf +share/omf/mixer_applet2/mixer_applet2-fr.omf +share/omf/mixer_applet2/mixer_applet2-it.omf +share/omf/mixer_applet2/mixer_applet2-oc.omf +share/omf/mixer_applet2/mixer_applet2-pa.omf +share/omf/mixer_applet2/mixer_applet2-ru.omf +share/omf/mixer_applet2/mixer_applet2-sv.omf +share/omf/mixer_applet2/mixer_applet2-uk.omf +share/omf/multiload/multiload-C.omf +share/omf/multiload/multiload-ca.omf +share/omf/multiload/multiload-en_GB.omf +share/omf/multiload/multiload-es.omf +share/omf/multiload/multiload-fr.omf +share/omf/multiload/multiload-oc.omf +share/omf/multiload/multiload-pa.omf +share/omf/multiload/multiload-ru.omf +share/omf/multiload/multiload-sv.omf +share/omf/multiload/multiload-uk.omf +share/omf/stickynotes_applet/stickynotes_applet-C.omf +share/omf/stickynotes_applet/stickynotes_applet-en_GB.omf +share/omf/stickynotes_applet/stickynotes_applet-es.omf +share/omf/stickynotes_applet/stickynotes_applet-fr.omf +share/omf/stickynotes_applet/stickynotes_applet-oc.omf +share/omf/stickynotes_applet/stickynotes_applet-pa.omf +share/omf/stickynotes_applet/stickynotes_applet-sv.omf +share/omf/stickynotes_applet/stickynotes_applet-uk.omf +share/omf/trashapplet/trashapplet-C.omf +share/omf/trashapplet/trashapplet-ca.omf +share/omf/trashapplet/trashapplet-de.omf +share/omf/trashapplet/trashapplet-en_GB.omf +share/omf/trashapplet/trashapplet-es.omf +share/omf/trashapplet/trashapplet-fr.omf +share/omf/trashapplet/trashapplet-it.omf +share/omf/trashapplet/trashapplet-nl.omf +share/omf/trashapplet/trashapplet-oc.omf +share/omf/trashapplet/trashapplet-pa.omf +share/omf/trashapplet/trashapplet-ru.omf +share/omf/trashapplet/trashapplet-sv.omf +share/omf/trashapplet/trashapplet-uk.omf +share/pixmaps/accessx-status-applet/ax-applet.png +share/pixmaps/accessx-status-applet/ax-bouncekeys.png +share/pixmaps/accessx-status-applet/ax-key-base.png +share/pixmaps/accessx-status-applet/ax-key-inverse.png +share/pixmaps/accessx-status-applet/ax-key-no.png +share/pixmaps/accessx-status-applet/ax-key-none.png +share/pixmaps/accessx-status-applet/ax-key-yes.png +share/pixmaps/accessx-status-applet/ax-slowkeys-no.png +share/pixmaps/accessx-status-applet/ax-slowkeys-pending.png +share/pixmaps/accessx-status-applet/ax-slowkeys-yes.png +share/pixmaps/accessx-status-applet/ax-slowkeys.png +share/pixmaps/accessx-status-applet/mousekeys-base.png +share/pixmaps/accessx-status-applet/mousekeys-default-left.png +share/pixmaps/accessx-status-applet/mousekeys-default-middle.png +share/pixmaps/accessx-status-applet/mousekeys-default-right.png +share/pixmaps/accessx-status-applet/mousekeys-pressed-left.png +share/pixmaps/accessx-status-applet/mousekeys-pressed-middle.png +share/pixmaps/accessx-status-applet/mousekeys-pressed-right.png +share/pixmaps/accessx-status-applet/sticky-alt-latched.png +share/pixmaps/accessx-status-applet/sticky-alt-locked.png +share/pixmaps/accessx-status-applet/sticky-alt-none.png +share/pixmaps/accessx-status-applet/sticky-ctrl-latched.png +share/pixmaps/accessx-status-applet/sticky-ctrl-locked.png +share/pixmaps/accessx-status-applet/sticky-ctrl-none.png +share/pixmaps/accessx-status-applet/sticky-hyper-latched.png +share/pixmaps/accessx-status-applet/sticky-hyper-locked.png +share/pixmaps/accessx-status-applet/sticky-hyper-none.png +share/pixmaps/accessx-status-applet/sticky-meta-latched.png +share/pixmaps/accessx-status-applet/sticky-meta-locked.png +share/pixmaps/accessx-status-applet/sticky-meta-none.png +share/pixmaps/accessx-status-applet/sticky-shift-latched.png +share/pixmaps/accessx-status-applet/sticky-shift-locked.png +share/pixmaps/accessx-status-applet/sticky-shift-none.png +share/pixmaps/accessx-status-applet/sticky-super-latched.png +share/pixmaps/accessx-status-applet/sticky-super-locked.png +share/pixmaps/accessx-status-applet/sticky-super-none.png +%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-100.png +%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-25.png +%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-50.png +%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-75.png +%%CPUFREQ%%share/pixmaps/cpufreq-applet/cpufreq-na.png +%%PYTHON%%share/pixmaps/invest-big.png +share/pixmaps/stickynotes/close.png +share/pixmaps/stickynotes/locked.png +share/pixmaps/stickynotes/resize_se.png +share/pixmaps/stickynotes/resize_sw.png +share/pixmaps/stickynotes/unlocked.png +share/xmodmap/base.xml +share/xmodmap/xmodmap.am +share/xmodmap/xmodmap.ar +share/xmodmap/xmodmap.be +share/xmodmap/xmodmap.bg +share/xmodmap/xmodmap.br +share/xmodmap/xmodmap.ch +share/xmodmap/xmodmap.ch_de +share/xmodmap/xmodmap.ch_fr +share/xmodmap/xmodmap.cz +share/xmodmap/xmodmap.de +share/xmodmap/xmodmap.de-apple +share/xmodmap/xmodmap.dk +share/xmodmap/xmodmap.dvorak +share/xmodmap/xmodmap.ee +share/xmodmap/xmodmap.es +share/xmodmap/xmodmap.es_x86 +share/xmodmap/xmodmap.fi +share/xmodmap/xmodmap.fr +share/xmodmap/xmodmap.fr-2 +share/xmodmap/xmodmap.fr_x86 +share/xmodmap/xmodmap.gb +share/xmodmap/xmodmap.gb-102 +share/xmodmap/xmodmap.gb-105 +share/xmodmap/xmodmap.ge_la +share/xmodmap/xmodmap.ge_ru +share/xmodmap/xmodmap.gr +share/xmodmap/xmodmap.hu +share/xmodmap/xmodmap.hu-101-lat1 +share/xmodmap/xmodmap.hu-101-lat2 +share/xmodmap/xmodmap.hu-ibm +share/xmodmap/xmodmap.hu-lat1 +share/xmodmap/xmodmap.hu-sun-lat2 +share/xmodmap/xmodmap.hu.old +share/xmodmap/xmodmap.hu_latin1 +share/xmodmap/xmodmap.hu_x86 +share/xmodmap/xmodmap.il +share/xmodmap/xmodmap.il_phonetic +share/xmodmap/xmodmap.is +share/xmodmap/xmodmap.it +share/xmodmap/xmodmap.jp +share/xmodmap/xmodmap.kr +share/xmodmap/xmodmap.la +share/xmodmap/xmodmap.lt +share/xmodmap/xmodmap.lt_b +share/xmodmap/xmodmap.lt_p +share/xmodmap/xmodmap.mk +share/xmodmap/xmodmap.mn +share/xmodmap/xmodmap.mn-phonet +share/xmodmap/xmodmap.mn-rev +share/xmodmap/xmodmap.mn-uni +share/xmodmap/xmodmap.nl +share/xmodmap/xmodmap.no +share/xmodmap/xmodmap.pl +share/xmodmap/xmodmap.pl2 +share/xmodmap/xmodmap.pt +share/xmodmap/xmodmap.pt-dead +share/xmodmap/xmodmap.qc +share/xmodmap/xmodmap.qc-2 +share/xmodmap/xmodmap.ro +share/xmodmap/xmodmap.ru +share/xmodmap/xmodmap.ru-rev +share/xmodmap/xmodmap.ru_yawerty +share/xmodmap/xmodmap.se +share/xmodmap/xmodmap.sf +share/xmodmap/xmodmap.sg +share/xmodmap/xmodmap.si +share/xmodmap/xmodmap.sk +share/xmodmap/xmodmap.th +share/xmodmap/xmodmap.tr_f +share/xmodmap/xmodmap.tr_q +share/xmodmap/xmodmap.uk +share/xmodmap/xmodmap.uk_x86 +share/xmodmap/xmodmap.us +share/xmodmap/xmodmap.us-101 +share/xmodmap/xmodmap.us-84 +share/xmodmap/xmodmap.us-dec +share/xmodmap/xmodmap.us-ibm +share/xmodmap/xmodmap.us-int +share/xmodmap/xmodmap.us-mac +share/xmodmap/xmodmap.us-sgi-101 +share/xmodmap/xmodmap.us-sun +share/xmodmap/xmodmap.us.old +share/xmodmap/xmodmap.us101A_x86 +share/xmodmap/xmodmap.us_intl +share/xmodmap/xmodmap.yu +@dirrm share/pixmaps/stickynotes +%%CPUFREQ%%@dirrm share/pixmaps/cpufreq-applet +@dirrm share/pixmaps/accessx-status-applet +@dirrm share/omf/trashapplet +@dirrm share/omf/stickynotes_applet +@dirrm share/omf/multiload +@dirrm share/omf/mixer_applet2 +@dirrm share/omf/gweather +@dirrm share/omf/gswitchit +@dirrm share/omf/geyes +@dirrm share/omf/drivemount +%%CPUFREQ%%@dirrm share/omf/cpufreq-applet +%%COMMANDER%%@dirrm share/omf/command-line +@dirrm share/omf/char-palette +%%BATTERY%%@dirrm share/omf/battstat +@dirrm share/omf/accessx-status +@dirrm share/gnome/help/trashapplet/uk/figures +@dirrm share/gnome/help/trashapplet/uk +@dirrm share/gnome/help/trashapplet/sv/figures +@dirrm share/gnome/help/trashapplet/sv +@dirrm share/gnome/help/trashapplet/ru/figures +@dirrm share/gnome/help/trashapplet/ru +@dirrm share/gnome/help/trashapplet/pa/figures +@dirrm share/gnome/help/trashapplet/pa +@dirrm share/gnome/help/trashapplet/oc/figures +@dirrm share/gnome/help/trashapplet/oc +@dirrm share/gnome/help/trashapplet/nl/figures +@dirrm share/gnome/help/trashapplet/nl +@dirrm share/gnome/help/trashapplet/it/figures +@dirrm share/gnome/help/trashapplet/it +@dirrm share/gnome/help/trashapplet/fr/figures +@dirrm share/gnome/help/trashapplet/fr +@dirrm share/gnome/help/trashapplet/es/figures +@dirrm share/gnome/help/trashapplet/es +@dirrm share/gnome/help/trashapplet/en_GB/figures +@dirrm share/gnome/help/trashapplet/en_GB +@dirrm share/gnome/help/trashapplet/de/figures +@dirrm share/gnome/help/trashapplet/de +@dirrm share/gnome/help/trashapplet/ca/figures +@dirrm share/gnome/help/trashapplet/ca +@dirrm share/gnome/help/trashapplet/C/figures +@dirrm share/gnome/help/trashapplet/C +@dirrm share/gnome/help/trashapplet +@dirrm share/gnome/help/stickynotes_applet/uk/figures +@dirrm share/gnome/help/stickynotes_applet/uk +@dirrm share/gnome/help/stickynotes_applet/sv/figures +@dirrm share/gnome/help/stickynotes_applet/sv +@dirrm share/gnome/help/stickynotes_applet/pa/figures +@dirrm share/gnome/help/stickynotes_applet/pa +@dirrm share/gnome/help/stickynotes_applet/oc/figures +@dirrm share/gnome/help/stickynotes_applet/oc +@dirrm share/gnome/help/stickynotes_applet/fr/figures +@dirrm share/gnome/help/stickynotes_applet/fr +@dirrm share/gnome/help/stickynotes_applet/es/figures +@dirrm share/gnome/help/stickynotes_applet/es +@dirrm share/gnome/help/stickynotes_applet/en_GB/figures +@dirrm share/gnome/help/stickynotes_applet/en_GB +@dirrm share/gnome/help/stickynotes_applet/C/figures +@dirrm share/gnome/help/stickynotes_applet/C +@dirrm share/gnome/help/stickynotes_applet +@dirrm share/gnome/help/multiload/uk/figures +@dirrm share/gnome/help/multiload/uk +@dirrm share/gnome/help/multiload/sv/figures +@dirrm share/gnome/help/multiload/sv +@dirrm share/gnome/help/multiload/ru/figures +@dirrm share/gnome/help/multiload/ru +@dirrm share/gnome/help/multiload/pa/figures +@dirrm share/gnome/help/multiload/pa +@dirrm share/gnome/help/multiload/oc/figures +@dirrm share/gnome/help/multiload/oc +@dirrm share/gnome/help/multiload/fr/figures +@dirrm share/gnome/help/multiload/fr +@dirrm share/gnome/help/multiload/es/figures +@dirrm share/gnome/help/multiload/es +@dirrm share/gnome/help/multiload/en_GB/figures +@dirrm share/gnome/help/multiload/en_GB +@dirrm share/gnome/help/multiload/ca/figures +@dirrm share/gnome/help/multiload/ca +@dirrm share/gnome/help/multiload/C/figures +@dirrm share/gnome/help/multiload/C +@dirrm share/gnome/help/multiload +@dirrm share/gnome/help/mixer_applet2/uk/figures +@dirrm share/gnome/help/mixer_applet2/uk +@dirrm share/gnome/help/mixer_applet2/sv/figures +@dirrm share/gnome/help/mixer_applet2/sv +@dirrm share/gnome/help/mixer_applet2/ru/figures +@dirrm share/gnome/help/mixer_applet2/ru +@dirrm share/gnome/help/mixer_applet2/pa/figures +@dirrm share/gnome/help/mixer_applet2/pa +@dirrm share/gnome/help/mixer_applet2/oc/figures +@dirrm share/gnome/help/mixer_applet2/oc +@dirrm share/gnome/help/mixer_applet2/it/figures +@dirrm share/gnome/help/mixer_applet2/it +@dirrm share/gnome/help/mixer_applet2/fr/figures +@dirrm share/gnome/help/mixer_applet2/fr +@dirrm share/gnome/help/mixer_applet2/es/figures +@dirrm share/gnome/help/mixer_applet2/es +@dirrm share/gnome/help/mixer_applet2/en_GB/figures +@dirrm share/gnome/help/mixer_applet2/en_GB +@dirrm share/gnome/help/mixer_applet2/ca/figures +@dirrm share/gnome/help/mixer_applet2/ca +@dirrm share/gnome/help/mixer_applet2/C/figures +@dirrm share/gnome/help/mixer_applet2/C +@dirrm share/gnome/help/mixer_applet2 +@dirrm share/gnome/help/gweather/uk/figures +@dirrm share/gnome/help/gweather/uk +@dirrm share/gnome/help/gweather/sv/figures +@dirrm share/gnome/help/gweather/sv +@dirrm share/gnome/help/gweather/pa/figures +@dirrm share/gnome/help/gweather/pa +@dirrm share/gnome/help/gweather/oc/figures +@dirrm share/gnome/help/gweather/oc +@dirrm share/gnome/help/gweather/nl/figures +@dirrm share/gnome/help/gweather/nl +@dirrm share/gnome/help/gweather/fr/figures +@dirrm share/gnome/help/gweather/fr +@dirrm share/gnome/help/gweather/es/figures +@dirrm share/gnome/help/gweather/es +@dirrm share/gnome/help/gweather/en_GB/figures +@dirrm share/gnome/help/gweather/en_GB +@dirrm share/gnome/help/gweather/C/figures +@dirrm share/gnome/help/gweather/C +@dirrm share/gnome/help/gweather +@dirrm share/gnome/help/gswitchit/uk +@dirrm share/gnome/help/gswitchit/sv +@dirrm share/gnome/help/gswitchit/ru +@dirrm share/gnome/help/gswitchit/oc +@dirrm share/gnome/help/gswitchit/fr +@dirrm share/gnome/help/gswitchit/es +@dirrm share/gnome/help/gswitchit/en_GB +@dirrm share/gnome/help/gswitchit/el +@dirrm share/gnome/help/gswitchit/C +@dirrm share/gnome/help/gswitchit +@dirrm share/gnome/help/geyes/uk/figures +@dirrm share/gnome/help/geyes/uk +@dirrm share/gnome/help/geyes/sv/figures +@dirrm share/gnome/help/geyes/sv +@dirrm share/gnome/help/geyes/ru/figures +@dirrm share/gnome/help/geyes/ru +@dirrm share/gnome/help/geyes/oc/figures +@dirrm share/gnome/help/geyes/oc +@dirrm share/gnome/help/geyes/it/figures +@dirrm share/gnome/help/geyes/it +@dirrm share/gnome/help/geyes/fr/figures +@dirrm share/gnome/help/geyes/fr +@dirrm share/gnome/help/geyes/es/figures +@dirrm share/gnome/help/geyes/es +@dirrm share/gnome/help/geyes/en_GB/figures +@dirrm share/gnome/help/geyes/en_GB +@dirrm share/gnome/help/geyes/de/figures +@dirrm share/gnome/help/geyes/de +@dirrm share/gnome/help/geyes/ca/figures +@dirrm share/gnome/help/geyes/ca +@dirrm share/gnome/help/geyes/bg/figures +@dirrm share/gnome/help/geyes/bg +@dirrm share/gnome/help/geyes/C/figures +@dirrm share/gnome/help/geyes/C +@dirrm share/gnome/help/geyes +@dirrm share/gnome/help/drivemount/zh_CN/figures +@dirrm share/gnome/help/drivemount/zh_CN +@dirrm share/gnome/help/drivemount/uk/figures +@dirrm share/gnome/help/drivemount/uk +@dirrm share/gnome/help/drivemount/sv/figures +@dirrm share/gnome/help/drivemount/sv +@dirrm share/gnome/help/drivemount/ru/figures +@dirrm share/gnome/help/drivemount/ru +@dirrm share/gnome/help/drivemount/pa/figures +@dirrm share/gnome/help/drivemount/pa +@dirrm share/gnome/help/drivemount/oc/figures +@dirrm share/gnome/help/drivemount/oc +@dirrm share/gnome/help/drivemount/it/figures +@dirrm share/gnome/help/drivemount/it +@dirrm share/gnome/help/drivemount/fr/figures +@dirrm share/gnome/help/drivemount/fr +@dirrm share/gnome/help/drivemount/es/figures +@dirrm share/gnome/help/drivemount/es +@dirrm share/gnome/help/drivemount/en_GB/figures +@dirrm share/gnome/help/drivemount/en_GB +@dirrm share/gnome/help/drivemount/C/figures +@dirrm share/gnome/help/drivemount/C +@dirrm share/gnome/help/drivemount +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/zh_CN/figures +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/zh_CN +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/uk/figures +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/uk +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/sv/figures +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/sv +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/ru/figures +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/ru +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/oc/figures +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/oc +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/nl/figures +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/nl +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/fr/figures +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/fr +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/es/figures +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/es +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/en_GB/figures +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/en_GB +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/ca/figures +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/ca +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/C/figures +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet/C +%%CPUFREQ%%@dirrm share/gnome/help/cpufreq-applet +%%COMMANDER%%@dirrm share/gnome/help/command-line/uk/figures +%%COMMANDER%%@dirrm share/gnome/help/command-line/uk +%%COMMANDER%%@dirrm share/gnome/help/command-line/sv/figures +%%COMMANDER%%@dirrm share/gnome/help/command-line/sv +%%COMMANDER%%@dirrm share/gnome/help/command-line/pt_BR/figures +%%COMMANDER%%@dirrm share/gnome/help/command-line/pt_BR +%%COMMANDER%%@dirrm share/gnome/help/command-line/oc/figures +%%COMMANDER%%@dirrm share/gnome/help/command-line/oc +%%COMMANDER%%@dirrm share/gnome/help/command-line/fr/figures +%%COMMANDER%%@dirrm share/gnome/help/command-line/fr +%%COMMANDER%%@dirrm share/gnome/help/command-line/es/figures +%%COMMANDER%%@dirrm share/gnome/help/command-line/es +%%COMMANDER%%@dirrm share/gnome/help/command-line/en_GB/figures +%%COMMANDER%%@dirrm share/gnome/help/command-line/en_GB +%%COMMANDER%%@dirrm share/gnome/help/command-line/C/figures +%%COMMANDER%%@dirrm share/gnome/help/command-line/C +%%COMMANDER%%@dirrm share/gnome/help/command-line +@dirrm share/gnome/help/char-palette/uk/figures +@dirrm share/gnome/help/char-palette/uk +@dirrm share/gnome/help/char-palette/sv/figures +@dirrm share/gnome/help/char-palette/sv +@dirrm share/gnome/help/char-palette/ru/figures +@dirrm share/gnome/help/char-palette/ru +@dirrm share/gnome/help/char-palette/pt_BR/figures +@dirrm share/gnome/help/char-palette/pt_BR +@dirrm share/gnome/help/char-palette/oc/figures +@dirrm share/gnome/help/char-palette/oc +@dirrm share/gnome/help/char-palette/nl/figures +@dirrm share/gnome/help/char-palette/nl +@dirrm share/gnome/help/char-palette/it/figures +@dirrm share/gnome/help/char-palette/it +@dirrm share/gnome/help/char-palette/fr/figures +@dirrm share/gnome/help/char-palette/fr +@dirrm share/gnome/help/char-palette/es/figures +@dirrm share/gnome/help/char-palette/es +@dirrm share/gnome/help/char-palette/en_GB/figures +@dirrm share/gnome/help/char-palette/en_GB +@dirrm share/gnome/help/char-palette/bg/figures +@dirrm share/gnome/help/char-palette/bg +@dirrm share/gnome/help/char-palette/C/figures +@dirrm share/gnome/help/char-palette/C +@dirrm share/gnome/help/char-palette +%%BATTERY%%@dirrm share/gnome/help/battstat/uk/figures +%%BATTERY%%@dirrm share/gnome/help/battstat/uk +%%BATTERY%%@dirrm share/gnome/help/battstat/sv/figures +%%BATTERY%%@dirrm share/gnome/help/battstat/sv +%%BATTERY%%@dirrm share/gnome/help/battstat/pa/figures +%%BATTERY%%@dirrm share/gnome/help/battstat/pa +%%BATTERY%%@dirrm share/gnome/help/battstat/oc/figures +%%BATTERY%%@dirrm share/gnome/help/battstat/oc +%%BATTERY%%@dirrm share/gnome/help/battstat/fr/figures +%%BATTERY%%@dirrm share/gnome/help/battstat/fr +%%BATTERY%%@dirrm share/gnome/help/battstat/es/figures +%%BATTERY%%@dirrm share/gnome/help/battstat/es +%%BATTERY%%@dirrm share/gnome/help/battstat/en_GB/figures +%%BATTERY%%@dirrm share/gnome/help/battstat/en_GB +%%BATTERY%%@dirrm share/gnome/help/battstat/bg/figures +%%BATTERY%%@dirrm share/gnome/help/battstat/bg +%%BATTERY%%@dirrm share/gnome/help/battstat/C/figures +%%BATTERY%%@dirrm share/gnome/help/battstat/C +%%BATTERY%%@dirrm share/gnome/help/battstat +@dirrm share/gnome/help/accessx-status/uk/figures +@dirrm share/gnome/help/accessx-status/uk +@dirrm share/gnome/help/accessx-status/sv/figures +@dirrm share/gnome/help/accessx-status/sv +@dirrm share/gnome/help/accessx-status/oc/figures +@dirrm share/gnome/help/accessx-status/oc +@dirrm share/gnome/help/accessx-status/nl/figures +@dirrm share/gnome/help/accessx-status/nl +@dirrm share/gnome/help/accessx-status/it/figures +@dirrm share/gnome/help/accessx-status/it +@dirrm share/gnome/help/accessx-status/fr/figures +@dirrm share/gnome/help/accessx-status/fr +@dirrm share/gnome/help/accessx-status/es/figures +@dirrm share/gnome/help/accessx-status/es +@dirrm share/gnome/help/accessx-status/en_GB/figures +@dirrm share/gnome/help/accessx-status/en_GB +@dirrm share/gnome/help/accessx-status/ca/figures +@dirrm share/gnome/help/accessx-status/ca +@dirrm share/gnome/help/accessx-status/bg/figures +@dirrm share/gnome/help/accessx-status/bg +@dirrm share/gnome/help/accessx-status/C/figures +@dirrm share/gnome/help/accessx-status/C +@dirrm share/gnome/help/accessx-status +%%PYTHON%%@dirrm %%DATADIR%%/invest-applet +@dirrm %%DATADIR%%/gweather +@dirrm %%DATADIR%%/glade +@dirrm %%DATADIR%%/geyes/Tango +@dirrm %%DATADIR%%/geyes/Horrid +@dirrm %%DATADIR%%/geyes/Default-tiny +@dirrm %%DATADIR%%/geyes/Default +@dirrm %%DATADIR%%/geyes/Bloodshot +@dirrm %%DATADIR%%/geyes/Bizarre +@dirrm %%DATADIR%%/geyes +@dirrm %%DATADIR%% +%%COMMANDER%%@dirrmtry libexec/gnome-applets +%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/invest +@dirrm include/libgweather +@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/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/mr/LC_MESSAGES +@dirrmtry share/locale/mr +@dirrmtry share/locale/mg/LC_MESSAGES +@dirrmtry share/locale/mg +@dirrmtry share/locale/ky/LC_MESSAGES +@dirrmtry share/locale/ky +@dirrmtry share/locale/ku/LC_MESSAGES +@dirrmtry share/locale/ku +@dirrmtry share/locale/hy/LC_MESSAGES +@dirrmtry share/locale/hy +@dirrmtry share/locale/es_VE/LC_MESSAGES +@dirrmtry share/locale/es_VE +@dirrmtry share/locale/es_UY/LC_MESSAGES +@dirrmtry share/locale/es_UY +@dirrmtry share/locale/es_SV/LC_MESSAGES +@dirrmtry share/locale/es_SV +@dirrmtry share/locale/es_PR/LC_MESSAGES +@dirrmtry share/locale/es_PR +@dirrmtry share/locale/es_PE/LC_MESSAGES +@dirrmtry share/locale/es_PE +@dirrmtry share/locale/es_PA/LC_MESSAGES +@dirrmtry share/locale/es_PA +@dirrmtry share/locale/es_NI/LC_MESSAGES +@dirrmtry share/locale/es_NI +@dirrmtry share/locale/es_HN/LC_MESSAGES +@dirrmtry share/locale/es_HN +@dirrmtry share/locale/es_GT/LC_MESSAGES +@dirrmtry share/locale/es_GT +@dirrmtry share/locale/es_EC/LC_MESSAGES +@dirrmtry share/locale/es_EC +@dirrmtry share/locale/es_DO/LC_MESSAGES +@dirrmtry share/locale/es_DO +@dirrmtry share/locale/es_CR/LC_MESSAGES +@dirrmtry share/locale/es_CR +@dirrmtry share/locale/es_CO/LC_MESSAGES +@dirrmtry share/locale/es_CO +@dirrmtry share/locale/es_CL/LC_MESSAGES +@dirrmtry share/locale/es_CL +@dirrmtry share/locale/es_AR/LC_MESSAGES +@dirrmtry share/locale/es_AR +@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 +@dirrmtry share/locale/as/LC_MESSAGES +@dirrmtry share/locale/as -- cgit v1.2.3