import gnome-panel 3.0.0.1 (needs lots of fixes, so not hooking it up yet)

gnome-panel contains the GNOME panel, the libpanel-applet library and
several applets:
  * the GNOME panel is the area on your desktop from which you can run
    applications and applets, and perform other tasks.
  * the libpanel-applet library allows to develop small applications
    which may be embedded in the panel. These are called applets.
    Documentation for the API is available with gtk-doc.
  * the applets supplied here include the Workspace Switcher, the Window
    List, the Window Selector, the Notification Area, the Clock and the
    infamous 'Wanda the Fish'.

feedback/ok aja@
This commit is contained in:
jasper 2011-05-18 15:32:44 +00:00
parent 2b668becca
commit 802d71e022
11 changed files with 836 additions and 0 deletions

View File

@ -0,0 +1,72 @@
# $OpenBSD: Makefile,v 1.1.1.1 2011/05/18 15:32:44 jasper Exp $
# XXX: py-gnome may be needed to load the old applets?
SHARED_ONLY= Yes
COMMENT= GNOME panel
GNOME_PROJECT= gnome-panel
GNOME_VERSION= 3.0.0.1
SHARED_LIBS= panel-applet-4 0.0 # 0.0
CATEGORIES= x11
# GPLv2/LGPLv2/GFDLv1.1
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB += GL ICE ORBit-2 SM X11 XRes Xau Xcomposite Xcursor Xdamage
WANTLIB += Xdmcp Xext Xfixes Xi Xinerama Xrandr Xrender Xxf86vm
WANTLIB += asn1 atk-1.0 c cairo cairo-gobject camel-1.2 com_err
WANTLIB += croco-0.6 crypto dbus-1 dbus-glib-1 dconf drm ebook-1.2
WANTLIB += ecal-1.2 edataserver-1.2 edataserverui-3.0 execinfo
WANTLIB += expat fontconfig freetype gcrypt gdk-3 gdk_pixbuf-2.0
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gnome-desktop-3 gnome-keyring
WANTLIB += gnome-menu gobject-2.0 gpg-error gssapi gthread-2.0
WANTLIB += gtk-3 gweather-3 ical icalss icalvcal krb5 m nspr4
WANTLIB += nss3 nssutil3 pango-1.0 pangocairo-1.0 pangoft2-1.0
WANTLIB += pcre pixman-1 plc4 plds4 png pthread pthread-stubs
WANTLIB += rsvg-2 smime3 soup-2.4 soup-gnome-2.4 sqlite3 ssl3
WANTLIB += startup-notification-1 telepathy-glib wnck-3 xcb xcb-atom
WANTLIB += xcb-aux xcb-event xcb-render xcb-shm xml2 z
MODULES= devel/dconf \
devel/gconf2 \
devel/gettext \
lang/python \
x11/gnome
BUILD_DEPENDS= devel/gobject-introspection
LIB_DEPENDS= databases/evolution-data-server \
devel/libwnck3 \
net/telepathy/telepathy-glib \
x11/gnome/desktop \
x11/gnome/libgweather \
x11/gnome/menus \
x11/gnome/librsvg
RUN_DEPENDS= notification-daemon-*|notification-daemon-xfce-*|xfce4-notifyd-*:sysutils/notification-daemon \
x11/gnome/icon-theme-symbolic
MODGNOME_HELP_FILES= Yes
DESKTOP_FILES= Yes
MODGCONF2_SCHEMAS_DIR= gnome-panel
FAKE_FLAGS= dbus_confdir=${PREFIX}/share/examples/gnome-panel/dbus-1/system.d
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
--disable-gtk-doc \
--disable-network-manager \
--enable-introspection \
--enable-eds \
--enable-telepathy-glib \
--with-in-process-applets=all
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng" \
LDFLAGS="-L${LOCALBASE}/lib"
USE_GROFF = Yes
.include <bsd.port.mk>

View File

@ -0,0 +1,5 @@
MD5 (gnome/gnome-panel-3.0.0.1.tar.bz2) = 7YKIvh/Wn/zR4f3ofc22FQ==
RMD160 (gnome/gnome-panel-3.0.0.1.tar.bz2) = CuWbvaohAvYwI5xf6UJUxYCNdpk=
SHA1 (gnome/gnome-panel-3.0.0.1.tar.bz2) = 0JLMPBSynDyYuwZzRbUKaJHaHRE=
SHA256 (gnome/gnome-panel-3.0.0.1.tar.bz2) = IBQiUhWvyKikNjSBwm+alEPT38lEqnvLDFIk9yPAuYs=
SIZE (gnome/gnome-panel-3.0.0.1.tar.bz2) = 3094422

View File

@ -0,0 +1,15 @@
$OpenBSD: patch-applets_clock_calendar-client_c,v 1.1.1.1 2011/05/18 15:32:45 jasper Exp $
Pass UTC to evolution to prevent incorrect times from entering the database.
--- applets/clock/calendar-client.c.orig Tue Aug 11 20:51:51 2009
+++ applets/clock/calendar-client.c Sun Oct 11 19:57:31 2009
@@ -2123,7 +2123,7 @@ calendar_client_set_task_completed (CalendarClient *cl
{
struct icaltimetype completed_time;
- completed_time = icaltime_current_time_with_zone (client->priv->zone);
+ completed_time = icaltime_current_time_with_zone (icaltimezone_get_utc_timezone());
if (!prop)
{
icalcomponent_add_property (ical,

View File

@ -0,0 +1,21 @@
$OpenBSD: patch-applets_clock_calendar-window_c,v 1.1.1.1 2011/05/18 15:32:45 jasper Exp $
From 241e288c0a9d30f9f2e8d608b0bbd950c1ac959c Mon Sep 17 00:00:00 2001
From: Rodrigo Moya <rodrigo@gnome-db.org>
Date: Mon, 02 May 2011 13:55:19 +0000
Subject: clock applet: Pass the correct month to Evolution command line
gtk_calendar_get_date returns the month between 0 and 11, so we need to add
1 to the month being passed to Evolution
--- applets/clock/calendar-window.c.orig Wed May 18 13:36:13 2011
+++ applets/clock/calendar-window.c Wed May 18 13:36:41 2011
@@ -1245,7 +1245,7 @@ calendar_day_activated (GtkCalendar *calendar,
argument = g_strdup_printf ("calendar:///?startdate="
"%.4d%.2d%.2d",
- year, month, day);
+ year, month + 1, day);
clock_launch_calendar_app (calwin, argument);

View File

@ -0,0 +1,29 @@
$OpenBSD: patch-gnome-panel_menu_c,v 1.1.1.1 2011/05/18 15:32:45 jasper Exp $
--- gnome-panel/menu.c.orig Tue Mar 29 16:20:47 2011
+++ gnome-panel/menu.c Wed May 18 12:11:56 2011
@@ -25,6 +25,7 @@
#include "menu.h"
#include <string.h>
+#include <stdlib.h>
#include <glib/gi18n.h>
#include <gio/gio.h>
@@ -1382,8 +1383,16 @@ GtkWidget *
create_main_menu (PanelWidget *panel)
{
GtkWidget *main_menu;
+ gchar *xdgMenuPrefix, *applicationsMenu;
- main_menu = create_applications_menu ("applications.menu", NULL, TRUE);
+ /* Respect XDG_MENU_PREFIX */
+ setenv ("XDG_MENU_PREFIX", "gnome-", 0);
+
+ xdgMenuPrefix = getenv ("XDG_MENU_PREFIX");
+ applicationsMenu = g_strconcat (xdgMenuPrefix, "applications.menu", NULL);
+
+ main_menu = create_applications_menu (applicationsMenu, NULL, TRUE);
+ g_free (applicationsMenu);
g_object_set_data (G_OBJECT (main_menu), "menu_panel", panel);
/* FIXME need to update the panel on parent_set */

View File

@ -0,0 +1,33 @@
$OpenBSD: patch-gnome-panel_panel-menu-bar_c,v 1.1.1.1 2011/05/18 15:32:45 jasper Exp $
--- gnome-panel/panel-menu-bar.c.orig Wed May 18 11:12:53 2011
+++ gnome-panel/panel-menu-bar.c Wed May 18 11:14:30 2011
@@ -29,6 +29,7 @@
#include "panel-menu-bar.h"
#include <string.h>
+#include <stdlib.h>
#include <glib/gi18n.h>
#include <libpanel-util/panel-error.h>
@@ -125,11 +126,20 @@ panel_menu_bar_setup_tooltip (PanelMenuBar *menubar)
static void
panel_menu_bar_init (PanelMenuBar *menubar)
{
+ gchar *xdgMenuPrefix, *applicationsMenu;
+
menubar->priv = PANEL_MENU_BAR_GET_PRIVATE (menubar);
menubar->priv->info = NULL;
- menubar->priv->applications_menu = create_applications_menu ("applications.menu", NULL, TRUE);
+ /* Respect XDG_MENU_PREFIX */
+ setenv ("XDG_MENU_PREFIX", "gnome-", 0);
+
+ xdgMenuPrefix = getenv ("XDG_MENU_PREFIX");
+ applicationsMenu = g_strconcat (xdgMenuPrefix, "applications.menu", NULL);
+
+ menubar->priv->applications_menu = create_applications_menu (applicationsMenu, NULL, TRUE);
+ g_free (applicationsMenu);
menubar->priv->applications_item = panel_image_menu_item_new ();
gtk_menu_item_set_label (GTK_MENU_ITEM (menubar->priv->applications_item),

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-gnome-panel_panel-menu-button_c,v 1.1.1.1 2011/05/18 15:32:45 jasper Exp $
--- gnome-panel/panel-menu-button.c.orig Wed May 18 11:08:41 2011
+++ gnome-panel/panel-menu-button.c Wed May 18 11:09:10 2011
@@ -74,7 +74,7 @@ typedef struct {
} MenuPathRootItem;
static MenuPathRootItem root_items [] = {
- { APPLICATIONS_MENU, "applications", "applications.menu" },
+ { APPLICATIONS_MENU, "applications", "gnome-applications.menu" },
{ GNOMECC_MENU, "gnomecc", "gnomecc.menu" }
};

View File

@ -0,0 +1,11 @@
$OpenBSD: patch-gnome-panel_panel-util_c,v 1.1.1.1 2011/05/18 15:32:45 jasper Exp $
--- gnome-panel/panel-util.c.orig Sun Apr 19 19:45:09 2009
+++ gnome-panel/panel-util.c Sun Oct 11 19:57:31 2009
@@ -20,6 +20,7 @@
#include <errno.h>
#include <stdlib.h>
#include <string.h>
+#include <limits.h>
#include <unistd.h>
#include <sys/types.h>

View File

@ -0,0 +1,40 @@
$OpenBSD: patch-gnome-panel_xstuff_c,v 1.1.1.1 2011/05/18 15:32:45 jasper Exp $
From 8c275a2adf4ad99297a17cabf251344837620831 Mon Sep 17 00:00:00 2001
From: Josselin Mouette <joss@malsain.org>
Date: Mon, 11 Apr 2011 13:05:32 +0000
Subject: panel: Fix crash when starting launcher
Do not destroy a widget in its draw signal. This is bad. Really.
This was happening in the animation that is being drawn after clicking a
launcher.
https://bugzilla.gnome.org/show_bug.cgi?id=641325
--- gnome-panel/xstuff.c.orig Tue Feb 1 00:50:19 2011
+++ gnome-panel/xstuff.c Wed May 18 13:38:40 2011
@@ -305,6 +305,14 @@ zoom_timeout (GtkWidget *window)
}
static gboolean
+idle_destroy (gpointer data)
+{
+ gtk_widget_destroy (GTK_WIDGET (data));
+
+ return FALSE;
+}
+
+static gboolean
zoom_draw (GtkWidget *widget,
cairo_t *cr,
gpointer user_data)
@@ -323,7 +331,7 @@ zoom_draw (GtkWidget *widget,
g_slice_free (CompositedZoomData, zoom);
- gtk_widget_destroy (widget);
+ g_idle_add (idle_destroy, widget);
} else {
GdkPixbuf *scaled;
int width, height;

View File

@ -0,0 +1,13 @@
gnome-panel contains the GNOME panel, the libpanel-applet library and
several applets:
* the GNOME panel is the area on your desktop from which you can run
applications and applets, and perform other tasks.
* the libpanel-applet library allows to develop small applications
which may be embedded in the panel. These are called applets.
Documentation for the API is available with gtk-doc.
* the applets supplied here include the Workspace Switcher, the Window
List, the Window Selector, the Notification Area, the Clock and the
infamous 'Wanda the Fish'.

View File

@ -0,0 +1,585 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2011/05/18 15:32:45 jasper Exp $
@bin bin/gnome-desktop-item-edit
@bin bin/gnome-panel
@bin bin/panel-test-applets
include/gnome-panel-4.0/
include/gnome-panel-4.0/libpanel-applet/
include/gnome-panel-4.0/libpanel-applet/panel-applet-enums.h
include/gnome-panel-4.0/libpanel-applet/panel-applet-gconf.h
include/gnome-panel-4.0/libpanel-applet/panel-applet.h
lib/girepository-1.0/PanelApplet-4.0.typelib
lib/libpanel-applet-4.a
lib/libpanel-applet-4.la
@lib lib/libpanel-applet-4.so.${LIBpanel-applet-4_VERSION}
lib/pkgconfig/libpanelapplet-4.0.pc
@bin libexec/clock-applet
@bin libexec/fish-applet
libexec/gnome-panel-add
@bin libexec/notification-area-applet
@bin libexec/wnck-applet
@man man/man1/gnome-panel.1
share/applications/gnome-panel.desktop
share/dbus-1/services/org.gnome.panel.applet.ClockAppletFactory.service
share/dbus-1/services/org.gnome.panel.applet.FishAppletFactory.service
share/dbus-1/services/org.gnome.panel.applet.NotificationAreaAppletFactory.service
share/dbus-1/services/org.gnome.panel.applet.WnckletFactory.service
share/gir-1.0/PanelApplet-4.0.gir
share/glib-2.0/schemas/org.gnome.gnome-panel.applet.fish.gschema.xml
share/glib-2.0/schemas/org.gnome.gnome-panel.applet.window-list.gschema.xml
share/glib-2.0/schemas/org.gnome.gnome-panel.applet.workspace-switcher.gschema.xml
share/glib-2.0/schemas/org.gnome.gnome-panel.enums.xml
share/glib-2.0/schemas/org.gnome.gnome-panel.gschema.xml
share/glib-2.0/schemas/org.gnome.gnome-panel.launcher.gschema.xml
share/glib-2.0/schemas/org.gnome.gnome-panel.menu-button.gschema.xml
share/glib-2.0/schemas/org.gnome.gnome-panel.object.gschema.xml
share/glib-2.0/schemas/org.gnome.gnome-panel.toplevel.gschema.xml
share/gnome-panel/
share/gnome-panel/4.0/
share/gnome-panel/4.0/applets/
share/gnome-panel/4.0/applets/org.gnome.panel.ClockApplet.panel-applet
share/gnome-panel/4.0/applets/org.gnome.panel.FishApplet.panel-applet
share/gnome-panel/4.0/applets/org.gnome.panel.NotificationAreaApplet.panel-applet
share/gnome-panel/4.0/applets/org.gnome.panel.Wncklet.panel-applet
share/gnome-panel/panel-default-layout.layout
share/gnome-panel/pixmaps/
share/gnome-panel/pixmaps/clock-calendar-icon.png
share/gnome-panel/pixmaps/clock-face-large.svg
share/gnome-panel/pixmaps/clock-face-small-day.svg
share/gnome-panel/pixmaps/clock-face-small-evening.svg
share/gnome-panel/pixmaps/clock-face-small-morning.svg
share/gnome-panel/pixmaps/clock-face-small-night.svg
share/gnome-panel/pixmaps/clock-face-small.svg
share/gnome-panel/pixmaps/clock-map-location-current.png
share/gnome-panel/pixmaps/clock-map-location-hilight.png
share/gnome-panel/pixmaps/clock-map-location-marker.png
share/gnome-panel/pixmaps/clock-map.png
share/gnome-panel/pixmaps/fishanim.fish
share/gnome-panel/pixmaps/fishanim.png
share/gnome-panel/pixmaps/footguy.fish
share/gnome-panel/pixmaps/footguy.png
share/gnome-panel/pixmaps/monkey.fish
share/gnome-panel/pixmaps/monkey.png
share/gnome-panel/pixmaps/oldwanda.fish
share/gnome-panel/pixmaps/oldwanda.png
share/gnome-panel/pixmaps/wanda.fish
share/gnome-panel/pixmaps/wanda.png
share/gnome-panel/ui/
share/gnome-panel/ui/clock-menu.xml
share/gnome-panel/ui/clock.ui
share/gnome-panel/ui/fish-menu.xml
share/gnome-panel/ui/fish.ui
share/gnome-panel/ui/panel-properties-dialog.ui
share/gnome-panel/ui/panel-run-dialog.ui
share/gnome-panel/ui/panel-test-applets.ui
share/gnome-panel/ui/window-list-menu.xml
share/gnome-panel/ui/window-list.ui
share/gnome-panel/ui/workspace-switcher-menu.xml
share/gnome-panel/ui/workspace-switcher.ui
share/gnome/help/clock/
share/gnome/help/clock/C/
share/gnome/help/clock/C/clock.xml
share/gnome/help/clock/C/figures/
share/gnome/help/clock/C/figures/clock_applet.png
share/gnome/help/clock/C/legal.xml
share/gnome/help/clock/ar/
share/gnome/help/clock/ar/clock.xml
share/gnome/help/clock/ar/figures/
share/gnome/help/clock/ar/figures/clock_applet.png
share/gnome/help/clock/ar/legal.xml
share/gnome/help/clock/ca/
share/gnome/help/clock/ca/clock.xml
share/gnome/help/clock/ca/figures/
share/gnome/help/clock/ca/figures/clock_applet.png
share/gnome/help/clock/ca/legal.xml
share/gnome/help/clock/cs/
share/gnome/help/clock/cs/clock.xml
share/gnome/help/clock/cs/figures/
share/gnome/help/clock/cs/figures/clock_applet.png
share/gnome/help/clock/cs/legal.xml
share/gnome/help/clock/da/
share/gnome/help/clock/da/clock.xml
share/gnome/help/clock/da/figures/
share/gnome/help/clock/da/figures/clock_applet.png
share/gnome/help/clock/da/legal.xml
share/gnome/help/clock/de/
share/gnome/help/clock/de/clock.xml
share/gnome/help/clock/de/figures/
share/gnome/help/clock/de/figures/clock_applet.png
share/gnome/help/clock/de/legal.xml
share/gnome/help/clock/el/
share/gnome/help/clock/el/clock.xml
share/gnome/help/clock/el/figures/
share/gnome/help/clock/el/figures/clock_applet.png
share/gnome/help/clock/el/legal.xml
share/gnome/help/clock/en_GB/
share/gnome/help/clock/en_GB/clock.xml
share/gnome/help/clock/en_GB/figures/
share/gnome/help/clock/en_GB/figures/clock_applet.png
share/gnome/help/clock/en_GB/legal.xml
share/gnome/help/clock/es/
share/gnome/help/clock/es/clock.xml
share/gnome/help/clock/es/figures/
share/gnome/help/clock/es/figures/clock_applet.png
share/gnome/help/clock/es/legal.xml
share/gnome/help/clock/eu/
share/gnome/help/clock/eu/clock.xml
share/gnome/help/clock/eu/figures/
share/gnome/help/clock/eu/figures/clock_applet.png
share/gnome/help/clock/eu/legal.xml
share/gnome/help/clock/fi/
share/gnome/help/clock/fi/clock.xml
share/gnome/help/clock/fi/figures/
share/gnome/help/clock/fi/figures/clock_applet.png
share/gnome/help/clock/fi/legal.xml
share/gnome/help/clock/fr/
share/gnome/help/clock/fr/clock.xml
share/gnome/help/clock/fr/figures/
share/gnome/help/clock/fr/figures/clock_applet.png
share/gnome/help/clock/fr/legal.xml
share/gnome/help/clock/it/
share/gnome/help/clock/it/clock.xml
share/gnome/help/clock/it/figures/
share/gnome/help/clock/it/figures/clock_applet.png
share/gnome/help/clock/it/legal.xml
share/gnome/help/clock/ja/
share/gnome/help/clock/ja/clock.xml
share/gnome/help/clock/ja/figures/
share/gnome/help/clock/ja/figures/clock_applet.png
share/gnome/help/clock/ja/legal.xml
share/gnome/help/clock/ko/
share/gnome/help/clock/ko/clock.xml
share/gnome/help/clock/ko/figures/
share/gnome/help/clock/ko/figures/clock_applet.png
share/gnome/help/clock/ko/legal.xml
share/gnome/help/clock/nl/
share/gnome/help/clock/nl/clock.xml
share/gnome/help/clock/nl/figures/
share/gnome/help/clock/nl/figures/clock_applet.png
share/gnome/help/clock/nl/legal.xml
share/gnome/help/clock/oc/
share/gnome/help/clock/oc/clock.xml
share/gnome/help/clock/oc/figures/
share/gnome/help/clock/oc/figures/clock_applet.png
share/gnome/help/clock/oc/legal.xml
share/gnome/help/clock/pa/
share/gnome/help/clock/pa/clock.xml
share/gnome/help/clock/pa/figures/
share/gnome/help/clock/pa/figures/clock_applet.png
share/gnome/help/clock/pa/legal.xml
share/gnome/help/clock/pt/
share/gnome/help/clock/pt/clock.xml
share/gnome/help/clock/pt/figures/
share/gnome/help/clock/pt/figures/clock_applet.png
share/gnome/help/clock/pt/legal.xml
share/gnome/help/clock/pt_BR/
share/gnome/help/clock/pt_BR/clock.xml
share/gnome/help/clock/pt_BR/figures/
share/gnome/help/clock/pt_BR/figures/clock_applet.png
share/gnome/help/clock/pt_BR/legal.xml
share/gnome/help/clock/ru/
share/gnome/help/clock/ru/clock.xml
share/gnome/help/clock/ru/figures/
share/gnome/help/clock/ru/figures/clock_applet.png
share/gnome/help/clock/ru/legal.xml
share/gnome/help/clock/sl/
share/gnome/help/clock/sl/clock.xml
share/gnome/help/clock/sl/figures/
share/gnome/help/clock/sl/figures/clock_applet.png
share/gnome/help/clock/sl/legal.xml
share/gnome/help/clock/sr/
share/gnome/help/clock/sr/clock.xml
share/gnome/help/clock/sr/figures/
share/gnome/help/clock/sr/figures/clock_applet.png
share/gnome/help/clock/sr/legal.xml
share/gnome/help/clock/sv/
share/gnome/help/clock/sv/clock.xml
share/gnome/help/clock/sv/figures/
share/gnome/help/clock/sv/figures/clock_applet.png
share/gnome/help/clock/sv/legal.xml
share/gnome/help/clock/th/
share/gnome/help/clock/th/clock.xml
share/gnome/help/clock/th/figures/
share/gnome/help/clock/th/figures/clock_applet.png
share/gnome/help/clock/th/legal.xml
share/gnome/help/clock/uk/
share/gnome/help/clock/uk/clock.xml
share/gnome/help/clock/uk/figures/
share/gnome/help/clock/uk/figures/clock_applet.png
share/gnome/help/clock/uk/legal.xml
share/gnome/help/clock/zh_CN/
share/gnome/help/clock/zh_CN/clock.xml
share/gnome/help/clock/zh_CN/figures/
share/gnome/help/clock/zh_CN/figures/clock_applet.png
share/gnome/help/clock/zh_CN/legal.xml
share/gnome/help/clock/zh_HK/
share/gnome/help/clock/zh_HK/clock.xml
share/gnome/help/clock/zh_HK/figures/
share/gnome/help/clock/zh_HK/figures/clock_applet.png
share/gnome/help/clock/zh_HK/legal.xml
share/gnome/help/clock/zh_TW/
share/gnome/help/clock/zh_TW/clock.xml
share/gnome/help/clock/zh_TW/figures/
share/gnome/help/clock/zh_TW/figures/clock_applet.png
share/gnome/help/clock/zh_TW/legal.xml
share/gnome/help/fish/
share/gnome/help/fish/C/
share/gnome/help/fish/C/figures/
share/gnome/help/fish/C/figures/fish_applet.png
share/gnome/help/fish/C/fish.xml
share/gnome/help/fish/C/legal.xml
share/gnome/help/fish/ca/
share/gnome/help/fish/ca/figures/
share/gnome/help/fish/ca/figures/fish_applet.png
share/gnome/help/fish/ca/fish.xml
share/gnome/help/fish/ca/legal.xml
share/gnome/help/fish/cs/
share/gnome/help/fish/cs/figures/
share/gnome/help/fish/cs/figures/fish_applet.png
share/gnome/help/fish/cs/fish.xml
share/gnome/help/fish/cs/legal.xml
share/gnome/help/fish/da/
share/gnome/help/fish/da/figures/
share/gnome/help/fish/da/figures/fish_applet.png
share/gnome/help/fish/da/fish.xml
share/gnome/help/fish/da/legal.xml
share/gnome/help/fish/de/
share/gnome/help/fish/de/figures/
share/gnome/help/fish/de/figures/fish_applet.png
share/gnome/help/fish/de/fish.xml
share/gnome/help/fish/de/legal.xml
share/gnome/help/fish/el/
share/gnome/help/fish/el/figures/
share/gnome/help/fish/el/figures/fish_applet.png
share/gnome/help/fish/el/fish.xml
share/gnome/help/fish/el/legal.xml
share/gnome/help/fish/en_GB/
share/gnome/help/fish/en_GB/figures/
share/gnome/help/fish/en_GB/figures/fish_applet.png
share/gnome/help/fish/en_GB/fish.xml
share/gnome/help/fish/en_GB/legal.xml
share/gnome/help/fish/es/
share/gnome/help/fish/es/figures/
share/gnome/help/fish/es/figures/fish_applet.png
share/gnome/help/fish/es/fish.xml
share/gnome/help/fish/es/legal.xml
share/gnome/help/fish/eu/
share/gnome/help/fish/eu/figures/
share/gnome/help/fish/eu/figures/fish_applet.png
share/gnome/help/fish/eu/fish.xml
share/gnome/help/fish/eu/legal.xml
share/gnome/help/fish/fi/
share/gnome/help/fish/fi/figures/
share/gnome/help/fish/fi/figures/fish_applet.png
share/gnome/help/fish/fi/fish.xml
share/gnome/help/fish/fi/legal.xml
share/gnome/help/fish/fr/
share/gnome/help/fish/fr/figures/
share/gnome/help/fish/fr/figures/fish_applet.png
share/gnome/help/fish/fr/fish.xml
share/gnome/help/fish/fr/legal.xml
share/gnome/help/fish/it/
share/gnome/help/fish/it/figures/
share/gnome/help/fish/it/figures/fish_applet.png
share/gnome/help/fish/it/fish.xml
share/gnome/help/fish/it/legal.xml
share/gnome/help/fish/ja/
share/gnome/help/fish/ja/figures/
share/gnome/help/fish/ja/figures/fish_applet.png
share/gnome/help/fish/ja/fish.xml
share/gnome/help/fish/ja/legal.xml
share/gnome/help/fish/ko/
share/gnome/help/fish/ko/figures/
share/gnome/help/fish/ko/figures/fish_applet.png
share/gnome/help/fish/ko/fish.xml
share/gnome/help/fish/ko/legal.xml
share/gnome/help/fish/oc/
share/gnome/help/fish/oc/figures/
share/gnome/help/fish/oc/figures/fish_applet.png
share/gnome/help/fish/oc/fish.xml
share/gnome/help/fish/oc/legal.xml
share/gnome/help/fish/ru/
share/gnome/help/fish/ru/figures/
share/gnome/help/fish/ru/figures/fish_applet.png
share/gnome/help/fish/ru/fish.xml
share/gnome/help/fish/ru/legal.xml
share/gnome/help/fish/sl/
share/gnome/help/fish/sl/figures/
share/gnome/help/fish/sl/figures/fish_applet.png
share/gnome/help/fish/sl/fish.xml
share/gnome/help/fish/sl/legal.xml
share/gnome/help/fish/sv/
share/gnome/help/fish/sv/figures/
share/gnome/help/fish/sv/figures/fish_applet.png
share/gnome/help/fish/sv/fish.xml
share/gnome/help/fish/sv/legal.xml
share/gnome/help/fish/th/
share/gnome/help/fish/th/figures/
share/gnome/help/fish/th/figures/fish_applet.png
share/gnome/help/fish/th/fish.xml
share/gnome/help/fish/th/legal.xml
share/gnome/help/fish/uk/
share/gnome/help/fish/uk/figures/
share/gnome/help/fish/uk/figures/fish_applet.png
share/gnome/help/fish/uk/fish.xml
share/gnome/help/fish/uk/legal.xml
share/gnome/help/fish/zh_CN/
share/gnome/help/fish/zh_CN/figures/
share/gnome/help/fish/zh_CN/figures/fish_applet.png
share/gnome/help/fish/zh_CN/fish.xml
share/gnome/help/fish/zh_CN/legal.xml
share/gtk-doc/html/panel-applet-4.0/
share/gtk-doc/html/panel-applet-4.0/getting-started.concepts.html
share/gtk-doc/html/panel-applet-4.0/getting-started.context-menu.html
share/gtk-doc/html/panel-applet-4.0/getting-started.example.html
share/gtk-doc/html/panel-applet-4.0/getting-started.html
share/gtk-doc/html/panel-applet-4.0/getting-started.in-out-process.html
share/gtk-doc/html/panel-applet-4.0/getting-started.install.html
share/gtk-doc/html/panel-applet-4.0/getting-started.integration.html
share/gtk-doc/html/panel-applet-4.0/getting-started.intro.html
share/gtk-doc/html/panel-applet-4.0/getting-started.introspection.html
share/gtk-doc/html/panel-applet-4.0/getting-started.settings.html
share/gtk-doc/html/panel-applet-4.0/home.png
share/gtk-doc/html/panel-applet-4.0/index.html
share/gtk-doc/html/panel-applet-4.0/index.sgml
share/gtk-doc/html/panel-applet-4.0/left.png
share/gtk-doc/html/panel-applet-4.0/overview.html
share/gtk-doc/html/panel-applet-4.0/panel-applet-4.0.devhelp
share/gtk-doc/html/panel-applet-4.0/panel-applet-4.0.devhelp2
share/gtk-doc/html/panel-applet-4.0/panel-applet-GConf-Utilities.html
share/gtk-doc/html/panel-applet-4.0/panel-applet-Panel-Applet-Factory.html
share/gtk-doc/html/panel-applet-4.0/panel-applet-Panel-Applet.html
share/gtk-doc/html/panel-applet-4.0/port-gnome2.html
share/gtk-doc/html/panel-applet-4.0/reference.html
share/gtk-doc/html/panel-applet-4.0/right.png
share/gtk-doc/html/panel-applet-4.0/style.css
share/gtk-doc/html/panel-applet-4.0/up.png
share/icons/hicolor/16x16/apps/gnome-panel-clock.png
share/icons/hicolor/16x16/apps/gnome-panel-fish.png
share/icons/hicolor/16x16/apps/gnome-panel-force-quit.png
share/icons/hicolor/16x16/apps/gnome-panel-launcher.png
share/icons/hicolor/16x16/apps/gnome-panel-notification-area.png
share/icons/hicolor/16x16/apps/gnome-panel-separator.png
share/icons/hicolor/16x16/apps/gnome-panel-window-list.png
share/icons/hicolor/16x16/apps/gnome-panel-window-menu.png
share/icons/hicolor/16x16/apps/gnome-panel-workspace-switcher.png
share/icons/hicolor/16x16/apps/gnome-panel.png
share/icons/hicolor/22x22/apps/gnome-panel-clock.png
share/icons/hicolor/22x22/apps/gnome-panel-fish.png
share/icons/hicolor/22x22/apps/gnome-panel-force-quit.png
share/icons/hicolor/22x22/apps/gnome-panel-launcher.png
share/icons/hicolor/22x22/apps/gnome-panel-notification-area.png
share/icons/hicolor/22x22/apps/gnome-panel-separator.png
share/icons/hicolor/22x22/apps/gnome-panel-window-list.png
share/icons/hicolor/22x22/apps/gnome-panel-window-menu.png
share/icons/hicolor/22x22/apps/gnome-panel-workspace-switcher.png
share/icons/hicolor/22x22/apps/gnome-panel.png
share/icons/hicolor/24x24/apps/gnome-panel-clock.png
share/icons/hicolor/24x24/apps/gnome-panel-fish.png
share/icons/hicolor/24x24/apps/gnome-panel-force-quit.png
share/icons/hicolor/24x24/apps/gnome-panel-launcher.png
share/icons/hicolor/24x24/apps/gnome-panel-notification-area.png
share/icons/hicolor/24x24/apps/gnome-panel-separator.png
share/icons/hicolor/24x24/apps/gnome-panel-window-list.png
share/icons/hicolor/24x24/apps/gnome-panel-window-menu.png
share/icons/hicolor/24x24/apps/gnome-panel-workspace-switcher.png
share/icons/hicolor/24x24/apps/gnome-panel.png
share/icons/hicolor/32x32/apps/gnome-panel-clock.png
share/icons/hicolor/32x32/apps/gnome-panel-fish.png
share/icons/hicolor/32x32/apps/gnome-panel-force-quit.png
share/icons/hicolor/32x32/apps/gnome-panel-launcher.png
share/icons/hicolor/32x32/apps/gnome-panel-notification-area.png
share/icons/hicolor/32x32/apps/gnome-panel-separator.png
share/icons/hicolor/32x32/apps/gnome-panel-window-list.png
share/icons/hicolor/32x32/apps/gnome-panel-window-menu.png
share/icons/hicolor/32x32/apps/gnome-panel-workspace-switcher.png
share/icons/hicolor/32x32/apps/gnome-panel.png
share/icons/hicolor/48x48/apps/gnome-panel.png
share/icons/hicolor/scalable/apps/gnome-panel-clock.svg
share/icons/hicolor/scalable/apps/gnome-panel-fish.svg
share/icons/hicolor/scalable/apps/gnome-panel-force-quit.svg
share/icons/hicolor/scalable/apps/gnome-panel-launcher.svg
share/icons/hicolor/scalable/apps/gnome-panel-notification-area.svg
share/icons/hicolor/scalable/apps/gnome-panel-separator.svg
share/icons/hicolor/scalable/apps/gnome-panel-window-list.svg
share/icons/hicolor/scalable/apps/gnome-panel-window-menu.svg
share/icons/hicolor/scalable/apps/gnome-panel-workspace-switcher.svg
share/icons/hicolor/scalable/apps/gnome-panel.svg
share/locale/af/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/am/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ar/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/as/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ast/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/az/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/be/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/be@latin/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/bg/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/bn/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/bn_IN/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/br/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/bs/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ca/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ca@valencia/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/crh/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/cs/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/cy/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/da/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/de/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/dz/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/el/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/en@shaw/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/en_CA/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/en_GB/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/eo/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/es/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/et/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/eu/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/fa/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/fi/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/fr/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/fur/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/fy/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ga/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/gl/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/gu/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/gv/
share/locale/gv/LC_MESSAGES/
share/locale/gv/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ha/
share/locale/ha/LC_MESSAGES/
share/locale/ha/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/he/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/hi/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/hr/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/hu/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/hy/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/id/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ig/
share/locale/ig/LC_MESSAGES/
share/locale/ig/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/is/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/it/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ja/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ka/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/kk/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/kn/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ko/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ku/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ky/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/la/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/li/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/lt/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/lv/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/mai/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/mg/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/mi/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/mk/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ml/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/mn/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/mr/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ms/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/nb/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/nds/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ne/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/nl/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/nn/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/nso/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/oc/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/or/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/pa/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/pl/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ps/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/pt/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/pt_BR/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ro/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ru/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/rw/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/si/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/sk/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/sl/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/sq/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/sr/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/sr@ije/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/sr@latin/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/sv/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ta/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/te/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/th/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/tr/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/ug/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/uk/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/uz/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/uz@cyrillic/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/vi/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/wa/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/xh/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/yi/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/yo/
share/locale/yo/LC_MESSAGES/
share/locale/yo/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/zh_CN/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/zh_HK/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/zh_TW/LC_MESSAGES/gnome-panel-3.0.mo
share/locale/zu/LC_MESSAGES/gnome-panel-3.0.mo
share/omf/
share/omf/clock/
share/omf/clock/clock-C.omf
share/omf/clock/clock-ar.omf
share/omf/clock/clock-ca.omf
share/omf/clock/clock-cs.omf
share/omf/clock/clock-da.omf
share/omf/clock/clock-de.omf
share/omf/clock/clock-el.omf
share/omf/clock/clock-en_GB.omf
share/omf/clock/clock-es.omf
share/omf/clock/clock-eu.omf
share/omf/clock/clock-fi.omf
share/omf/clock/clock-fr.omf
share/omf/clock/clock-it.omf
share/omf/clock/clock-ja.omf
share/omf/clock/clock-ko.omf
share/omf/clock/clock-nl.omf
share/omf/clock/clock-oc.omf
share/omf/clock/clock-pa.omf
share/omf/clock/clock-pt.omf
share/omf/clock/clock-pt_BR.omf
share/omf/clock/clock-ru.omf
share/omf/clock/clock-sl.omf
share/omf/clock/clock-sr.omf
share/omf/clock/clock-sv.omf
share/omf/clock/clock-th.omf
share/omf/clock/clock-uk.omf
share/omf/clock/clock-zh_CN.omf
share/omf/clock/clock-zh_HK.omf
share/omf/clock/clock-zh_TW.omf
share/omf/fish/
share/omf/fish/fish-C.omf
share/omf/fish/fish-ca.omf
share/omf/fish/fish-cs.omf
share/omf/fish/fish-da.omf
share/omf/fish/fish-de.omf
share/omf/fish/fish-el.omf
share/omf/fish/fish-en_GB.omf
share/omf/fish/fish-es.omf
share/omf/fish/fish-eu.omf
share/omf/fish/fish-fi.omf
share/omf/fish/fish-fr.omf
share/omf/fish/fish-it.omf
share/omf/fish/fish-ja.omf
share/omf/fish/fish-ko.omf
share/omf/fish/fish-oc.omf
share/omf/fish/fish-ru.omf
share/omf/fish/fish-sl.omf
share/omf/fish/fish-sv.omf
share/omf/fish/fish-th.omf
share/omf/fish/fish-uk.omf
share/omf/fish/fish-zh_CN.omf
@unexec GCONF_CONFIG_SOURCE=`%D/bin/gconftool-2 --get-default-source` %D/bin/gconftool-2 --makefile-uninstall-rule %D/${SCHEMAS_INSTDIR}/*.schemas > /dev/null
${SCHEMAS_INSTDIR}/
${SCHEMAS_INSTDIR}/clock.schemas
@exec GCONF_CONFIG_SOURCE=`%D/bin/gconftool-2 --get-default-source` %D/bin/gconftool-2 --makefile-install-rule %D/${SCHEMAS_INSTDIR}/*.schemas > /dev/null
@exec %D/bin/gtk-update-icon-cache -q -f -t %D/share/icons/hicolor 2> /dev/null || true
@unexec-delete %D/bin/gtk-update-icon-cache -q -f -t %D/share/icons/hicolor 2> /dev/null || true
@exec %D/bin/update-desktop-database
@unexec-delete %D/bin/update-desktop-database
@exec %D/bin/glib-compile-schemas %D/share/glib-2.0/schemas
@unexec-delete %D/bin/glib-compile-schemas %D/share/glib-2.0/schemas