]> git.pld-linux.org Git - packages/gnome-panel.git/commitdiff
This commit was manufactured by cvs2git to create branch 'AC-branch'.
authorcvs2git <feedback@pld-linux.org>
Tue, 28 Jun 2005 20:40:25 +0000 (20:40 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Sprout from master 2005-06-28 20:40:25 UTC freetz <freetz@pld-linux.org> '- fix breakage introduced in 2.10.2'
Delete:
    gnome-panel-action-stock.patch
    gnome-panel-am.patch
    gnome-panel-clock.patch
    gnome-panel-focus.patch
    gnome-panel-menu-stripe.patch
    gnome-panel-menu_icon.patch
    gnome-panel-no_launchers_on_panel.patch
    gnome-panel-pt_BR.patch
    gnome-panel-top_panel_size.patch
    gnome-panel.spec

gnome-panel-action-stock.patch [deleted file]
gnome-panel-am.patch [deleted file]
gnome-panel-clock.patch [deleted file]
gnome-panel-focus.patch [deleted file]
gnome-panel-menu-stripe.patch [deleted file]
gnome-panel-menu_icon.patch [deleted file]
gnome-panel-no_launchers_on_panel.patch [deleted file]
gnome-panel-pt_BR.patch [deleted file]
gnome-panel-top_panel_size.patch [deleted file]
gnome-panel.spec [deleted file]

diff --git a/gnome-panel-action-stock.patch b/gnome-panel-action-stock.patch
deleted file mode 100644 (file)
index 584a65e..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Nuard gnome-panel-2.4.1.orig/gnome-panel/panel-stock-icons.c gnome-panel-2.4.1/gnome-panel/panel-stock-icons.c
---- gnome-panel-2.4.1.orig/gnome-panel/panel-stock-icons.c     2003-10-14 12:46:34.000000000 +0200
-+++ gnome-panel-2.4.1/gnome-panel/panel-stock-icons.c  2003-11-23 12:57:21.679342744 +0100
-@@ -83,7 +83,7 @@
-       { PANEL_STOCK_SLIDING_PANEL,       "gnome-panel-type-sliding" },
-       { PANEL_STOCK_MENU_PANEL,          "gnome-panel-type-menu" },
-       { PANEL_STOCK_LAUNCHER,            "launcher-program" },
--      { PANEL_STOCK_ACTION,              NULL },
-+      { PANEL_STOCK_ACTION,              "gnome-util" },
-       { PANEL_STOCK_DRAWER,              "panel-drawer" },
-       { PANEL_STOCK_APPLETS,             "gnome-applets" },
-       { PANEL_STOCK_DESKTOP,             "gnome-ccdesktop" },
diff --git a/gnome-panel-am.patch b/gnome-panel-am.patch
deleted file mode 100644 (file)
index b27ccee..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-diff -Nur gnome-panel-1.5.18/applets/fish/Makefile.am gnome-panel-1.5.18.new/applets/fish/Makefile.am
---- gnome-panel-1.5.18/applets/fish/Makefile.am        Sat Feb 16 21:56:35 2002
-+++ gnome-panel-1.5.18.new/applets/fish/Makefile.am    Sun Apr 28 22:32:44 2002
-@@ -49,5 +49,3 @@
- @INTLTOOL_SERVER_RULE@
--install-data-local:
--      GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(srcdir)/$(schema_DATA)
diff --git a/gnome-panel-clock.patch b/gnome-panel-clock.patch
deleted file mode 100644 (file)
index be99035..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-diff -urN aaa/gnome-panel-2.3.6.1/applets/clock/clock.c gnome-panel-2.3.6.1/applets/clock/clock.c
---- aaa/gnome-panel-2.3.6.1/applets/clock/clock.c      2003-08-07 14:30:15.000000000 +0200
-+++ gnome-panel-2.3.6.1/applets/clock/clock.c  2003-08-09 21:53:07.000000000 +0200
-@@ -37,6 +37,7 @@
- #include <dirent.h>
- #include <string.h>
- #include <time.h>
-+#include <locale.h>
- #include <langinfo.h>
- #include <panel-applet.h>
-@@ -57,6 +58,8 @@
- #define NEVER_SENSITIVE "never_sensitive"
-+#define FIRST_WEEKDAY_IS_MONDAY 1
-+
- static const char* KEY_HOUR_FORMAT   = "hour_format";
- static const char* KEY_SHOW_SECONDS  = "show_seconds";
- static const char* KEY_SHOW_DATE     = "show_date";
-@@ -447,6 +450,10 @@
- {
-       GtkWindow *window;
-       GtkWidget *calendar;
-+        gint first_day;
-+
-+        setlocale (LC_ALL, "");
-+        first_day = (int) *(nl_langinfo (_NL_TIME_FIRST_WEEKDAY));
-       window = GTK_WINDOW (gtk_window_new (GTK_WINDOW_TOPLEVEL));
-@@ -464,6 +471,11 @@
-                       
-       calendar = gtk_calendar_new ();
-+        if (first_day == FIRST_WEEKDAY_IS_MONDAY) {
-+                gtk_calendar_display_options (GTK_CALENDAR (calendar),
-+                                              GTK_CALENDAR_WEEK_START_MONDAY | GTK_CALENDAR_SHOW_HEADING | GTK_CALENDAR_SHOW_DAY_NAMES);
-+        }
-+
-       gtk_container_add (GTK_CONTAINER (window), calendar);
-       gtk_widget_show (calendar);
diff --git a/gnome-panel-focus.patch b/gnome-panel-focus.patch
deleted file mode 100644 (file)
index 261e018..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -Nuard gnome-panel-2.4.0.orig/libpanel-applet/panel-applet.c gnome-panel-2.4.0/libpanel-applet/panel-applet.c
---- gnome-panel-2.4.0.orig/libpanel-applet/panel-applet.c      2003-07-08 17:59:10.000000000 +0200
-+++ gnome-panel-2.4.0/libpanel-applet/panel-applet.c   2003-10-05 13:46:59.000000000 +0200
-@@ -688,6 +688,7 @@
-                        */ 
-                       GTK_WIDGET_SET_FLAGS (widget, GTK_CAN_FOCUS);
-                       gtk_widget_grab_focus (widget);
-+                      GTK_WIDGET_UNSET_FLAGS (widget, GTK_CAN_FOCUS);
-                       ret = TRUE;
-               }
-       }
diff --git a/gnome-panel-menu-stripe.patch b/gnome-panel-menu-stripe.patch
deleted file mode 100644 (file)
index 92598cb..0000000
+++ /dev/null
@@ -1,1297 +0,0 @@
-diff -urN aa/gnome-panel-2.6.0/gnome-panel/Makefile.am gnome-panel-2.6.0/gnome-panel/Makefile.am
---- aa/gnome-panel-2.6.0/gnome-panel/Makefile.am       2004-02-06 17:04:50.000000000 +0100
-+++ gnome-panel-2.6.0/gnome-panel/Makefile.am  2004-03-27 00:29:00.520061944 +0100
-@@ -80,6 +80,8 @@
-       panel-typebuiltins.h    \
-       panel-marshal.c         \
-       panel-marshal.h         \
-+      panel-menu.c            \
-+      panel-menu.h            \
-       main.c                  \
-       panel-widget.c          \
-       button-widget.c         \
-diff -urN aa/gnome-panel-2.6.0/gnome-panel/menu.c gnome-panel-2.6.0/gnome-panel/menu.c
---- aa/gnome-panel-2.6.0/gnome-panel/menu.c    2004-03-09 11:08:47.000000000 +0100
-+++ gnome-panel-2.6.0/gnome-panel/menu.c       2004-03-27 00:29:00.522061640 +0100
-@@ -44,6 +44,7 @@
- #include "menu-fentry.h"
- #include "menu-util.h"
- #include "menu-ditem.h"
-+#include "panel-menu.h"
- #include "panel-util.h"
- #include "panel-gconf.h"
- #include "panel.h"
-@@ -67,6 +68,7 @@
- #include "panel-lockdown.h"
- #undef MENU_DEBUG
-+#define MENU_SNAP_LENGTH 10
- static char *gnome_folder = NULL;
-@@ -614,6 +616,9 @@
-       if (repo->orig_func != NULL) {
-               repo->orig_func (menu, x, y, push_in, repo->orig_data);
-+              if (*x < MENU_SNAP_LENGTH)
-+                *x = 0;
-+
-               if (menu->parent_menu_item != NULL) {
-                       /* This is a submenu so behave submenuish */
-                       if (*x < monitor_basex ||
-@@ -709,8 +714,8 @@
-       reload_image_menu_items ();
- }
--GtkWidget *
--panel_create_menu (void)
-+static GtkWidget *
-+panel_create_menu_of_type (GType menu_type)
- {
-       GtkWidget       *retval;
-       static gboolean  registered_icon_theme_changer = FALSE;
-@@ -722,8 +727,7 @@
-                                 G_CALLBACK (icon_theme_changed), NULL);
-       }
-       
--      retval = gtk_menu_new ();
--      
-+      retval = g_object_new (menu_type, NULL);
-       panel_gconf_notify_add_while_alive ("/desktop/gnome/interface/menus_have_icons",
-                                           (GConfClientNotifyFunc) menus_have_icons_changed,
-                                           G_OBJECT (retval));
-@@ -739,12 +743,18 @@
-       return retval;
- }
-+GtkWidget *
-+panel_create_menu (void)
-+{
-+        return panel_create_menu_of_type (gtk_menu_get_type());
-+}
-+
- static GtkWidget *
--menu_new (void)
-+menu_new_of_type (GType menu_type)
- {
-       GtkWidget *retval;
--      retval = panel_create_menu ();
-+      retval = panel_create_menu_of_type (menu_type);
-       g_signal_connect (
-               retval, "show", G_CALLBACK (setup_menu_panel), NULL);
-@@ -752,6 +762,13 @@
-       return retval;
- }
-+static GtkWidget *
-+menu_new (void)
-+{
-+       return menu_new_of_type (gtk_menu_get_type ());
-+}
-+
-+
- static void
- icon_to_load_free (IconToLoad *icon)
- {
-@@ -3314,7 +3331,7 @@
-       }
-       if (!root_menu)
--              root_menu = menu_new ();
-+              root_menu = menu_new_of_type (panel_menu_get_type ());
-       g_object_set_data (G_OBJECT (root_menu), "menu_panel", panel);
-diff -urN aa/gnome-panel-2.6.0/gnome-panel/panel-config-global.c gnome-panel-2.6.0/gnome-panel/panel-config-global.c
---- aa/gnome-panel-2.6.0/gnome-panel/panel-config-global.c     2004-01-18 15:35:47.000000000 +0100
-+++ gnome-panel-2.6.0/gnome-panel/panel-config-global.c        2004-03-27 00:29:00.523061488 +0100
-@@ -45,6 +45,7 @@
-       guint               drawer_auto_close : 1;
-       guint               confirm_panel_remove : 1;
-       guint               highlight_when_over : 1;
-+      guint               menu_stripe : 1;
- } GlobalConfig;
- static GlobalConfig global_config = { 0, };
-@@ -94,6 +95,13 @@
-       return global_config.confirm_panel_remove;
- }
-+gboolean
-+panel_global_config_get_menu_stripe (void)
-+{
-+      g_assert (global_config_initialised == TRUE);
-+
-+      return global_config.menu_stripe;
-+}
- static void
- panel_global_config_set_entry (GConfEntry *entry)
-@@ -151,6 +159,11 @@
-       else if (strcmp (key, "highlight_launchers_on_mouseover") == 0)
-               global_config.highlight_when_over =
-                       gconf_value_get_bool (value);
-+
-+  else if (strcmp (key, "show_menu_stripe") == 0)
-+    global_config.menu_stripe =
-+        gconf_value_get_bool (value);
-+
- }
- static void
-diff -urN aa/gnome-panel-2.6.0/gnome-panel/panel-config-global.h gnome-panel-2.6.0/gnome-panel/panel-config-global.h
---- aa/gnome-panel-2.6.0/gnome-panel/panel-config-global.h     2004-01-18 15:32:28.000000000 +0100
-+++ gnome-panel-2.6.0/gnome-panel/panel-config-global.h        2004-03-27 00:29:00.523061488 +0100
-@@ -37,6 +37,7 @@
- gboolean panel_global_config_get_drawer_auto_close    (void);
- gboolean panel_global_config_get_tooltips_enabled     (void);
- gboolean panel_global_config_get_confirm_panel_remove (void);
-+gboolean panel_global_config_get_menu_stripe        (void);
- G_END_DECLS
-diff -urN aa/gnome-panel-2.6.0/gnome-panel/panel-global.schemas.in gnome-panel-2.6.0/gnome-panel/panel-global.schemas.in
---- aa/gnome-panel-2.6.0/gnome-panel/panel-global.schemas.in   2004-01-18 16:10:23.000000000 +0100
-+++ gnome-panel-2.6.0/gnome-panel/panel-global.schemas.in      2004-03-27 00:29:00.588051608 +0100
-@@ -93,6 +93,18 @@
-       </schema>
-       <schema>
-+        <key>/schemas/apps/panel/global/show_menu_stripe</key>
-+        <applyto>/apps/panel/global/show_menu_stripe</applyto>
-+        <owner>panel</owner>
-+        <type>bool</type>
-+        <default>true</default>
-+        <locale name="C">
-+          <short></short>
-+          <long></long>
-+        </locale>
-+      </schema>
-+
-+      <schema>
-         <key>/schemas/apps/panel/global/enable_key_bindings</key>
-         <applyto>/apps/panel/global/enable_key_bindings</applyto>
-         <owner>panel</owner>
-diff -urN aa/gnome-panel-2.6.0/gnome-panel/panel-menu.c gnome-panel-2.6.0/gnome-panel/panel-menu.c
---- aa/gnome-panel-2.6.0/gnome-panel/panel-menu.c      1970-01-01 01:00:00.000000000 +0100
-+++ gnome-panel-2.6.0/gnome-panel/panel-menu.c 2004-03-27 00:49:47.929426896 +0100
-@@ -0,0 +1,1082 @@
-+/*
-+ * To set this up insert something like this in your ~/.gtkrc-2.0
-+ *
-+ * Copyright (C) 2002 Ximian, Inc. 
-+ * Copyright (C) 2001 Havoc Pennington
-+ * Copyright (C) 1997-2000 Dan Pascu and Alfredo Kojima
-+ * Copyright (C) 2003 Marcin Krzy¿anowski
-+ * 
-+ * style "default"
-+ * {
-+ *   PanelMenu::default_side_image = "/tmp/stripelogo.png"
-+ *   PanelMenu::gradient_bg = true
-+ * }
-+ * class "PanelMenu" style "default"
-+ *
-+ * Authors:
-+ *       Thomas, Michael Meeks
-+ *       GtkMenu code by the GTK+ team
-+ *       Gradient code from WindowMaker by Dan Pascu and Alfredo Kojima, 
-+ *         by way of metacity by Havoc Pennington.
-+ *       Marcin Krzy¿anowski
-+ */
-+#include <config.h>
-+#include <string.h>
-+#include <libgnome/gnome-macros.h>
-+#include <libgnome/gnome-program.h>
-+#include <libgnome/gnome-i18n.h>
-+#include <gtk/gtkgc.h>
-+#include <gtk/gtkimagemenuitem.h>
-+#include <gtk/gtkseparatormenuitem.h>
-+#include <gtk/gtkmenu.h>
-+#include <gtk/gtkwidget.h>
-+#include <gtk/gtkwindow.h>
-+#include <gtk/gtkmain.h>
-+#include <gdk/gdkwindow.h>
-+#include <panel-menu.h>
-+
-+#include "panel-config-global.h"
-+
-+#define dprintf(a) g_warning a
-+/*#define dprintf(a) G_STMT_START { (void) 0; } G_STMT_END*/
-+
-+GNOME_CLASS_BOILERPLATE (PanelMenu, panel_menu,
-+                        GtkMenu, GTK_TYPE_MENU)
-+
-+
-+
-+static void
-+panel_menu_size_request  (GtkWidget *widget,
-+                         GtkRequisition *requisition)
-+{
-+       PanelMenu *pm = PANEL_MENU (widget);
-+
-+       GTK_WIDGET_CLASS (parent_class)->size_request (widget, requisition);
-+
-+       if (panel_global_config_get_menu_stripe () && pm->side_image != NULL)
-+               requisition->width += gdk_pixbuf_get_width (pm->side_image)
-+                     + gtk_widget_get_style (widget)->xthickness;
-+}
-+
-+static GdkColor *
-+get_light_stripe_color (PanelMenu *pm)
-+{
-+      GdkColor *color;
-+      
-+      gtk_widget_style_get (GTK_WIDGET (pm),
-+                            "stripe-color-light", &color,
-+                            NULL);
-+
-+      if (!color) {
-+              color = gdk_color_copy (&GTK_WIDGET (pm)->style->bg[GTK_STATE_NORMAL]);
-+      }
-+      
-+      return color;
-+}
-+
-+static GdkColor *
-+get_stripe_color (PanelMenu *pm)
-+{
-+      GdkColor *color;
-+      
-+      gtk_widget_style_get (GTK_WIDGET (pm),
-+                            "stripe-color", &color,
-+                            NULL);
-+
-+      if (!color) {
-+              color = gdk_color_copy (&GTK_WIDGET (pm)->style->bg[GTK_STATE_SELECTED]);
-+      }
-+      
-+      return color;
-+}
-+
-+static GdkGC *
-+get_stripe_gc (PanelMenu *pm) 
-+{
-+      GdkGCValues gc_values;
-+      GdkGCValuesMask gc_values_mask;
-+      GdkColor *color;
-+      
-+      color = get_stripe_color (pm);
-+      gc_values.foreground = *color;
-+      gdk_color_free (color);
-+      gc_values_mask = GDK_GC_FOREGROUND;
-+      
-+      gdk_rgb_find_color (GTK_WIDGET (pm)->style->colormap, &gc_values.foreground);
-+
-+      return gtk_gc_get (GTK_WIDGET (pm)->style->depth,
-+                         GTK_WIDGET (pm)->style->colormap,
-+                         &gc_values, gc_values_mask);
-+}
-+
-+static gboolean
-+panel_menu_expose_event (GtkWidget      *widget,
-+                        GdkEventExpose *event)
-+{
-+       GdkRectangle exposed;
-+       GdkRectangle position;
-+       GdkWindow   *window;
-+       int bin_height;
-+       GdkGC *stripe_gc;
-+       PanelMenu *pm = PANEL_MENU (widget);
-+
-+       GTK_WIDGET_CLASS (parent_class)->expose_event (widget, event);
-+
-+       if (!panel_global_config_get_menu_stripe () || !pm->side_image) {
-+             return TRUE;
-+       }
-+       window = GTK_MENU (widget)->bin_window;
-+
-+       stripe_gc = get_stripe_gc (pm);
-+
-+       gdk_gc_set_clip_rectangle (stripe_gc, &event->area);       
-+       gdk_draw_rectangle (window,
-+                         stripe_gc,
-+                         TRUE,
-+                         widget->allocation.x,
-+                         widget->allocation.y,
-+                         gdk_pixbuf_get_width (pm->side_image),
-+                         widget->allocation.height);
-+       gdk_gc_set_clip_rectangle (stripe_gc, NULL);
-+
-+       bin_height = widget->allocation.height - 2 * (GTK_CONTAINER (widget)->border_width + widget->style->ythickness);
-+
-+       position = widget->allocation;
-+       position.y += bin_height - gdk_pixbuf_get_height (pm->side_image);
-+       position.width = gdk_pixbuf_get_width (pm->side_image);
-+       position.height = gdk_pixbuf_get_height (pm->side_image);
-+
-+       if (widget->allocation.height >= gdk_pixbuf_get_height (pm->side_image)) {
-+             if (gdk_rectangle_intersect (&event->area,
-+                                          &position,
-+                                          &exposed)) {
-+                     gdk_pixbuf_render_to_drawable (
-+                             pm->side_image, window,
-+                             widget->style->black_gc,
-+                             exposed.x - position.x,
-+                             exposed.y - position.y,
-+                             exposed.x, exposed.y,
-+                             exposed.width, exposed.height,
-+                             GDK_RGB_DITHER_NORMAL,
-+                             exposed.x, exposed.y);
-+             }
-+       }
-+               
-+       position = widget->allocation;
-+       if (position.height != gdk_pixbuf_get_height (pm->side_image)) {
-+               position.width = gdk_pixbuf_get_width (pm->side_image);
-+             if (position.height > gdk_pixbuf_get_height (pm->side_image)) {
-+                     position.height = bin_height - gdk_pixbuf_get_height (pm->side_image);
-+             } else {
-+                     position.height = bin_height;
-+             }
-+             
-+               if (pm->scaled_image && gdk_rectangle_intersect (&event->area,
-+                                                              &position,
-+                                                              &exposed)) {
-+      
-+                       gdk_pixbuf_render_to_drawable (
-+                               pm->scaled_image, window,
-+                               widget->style->black_gc,
-+                               exposed.x - position.x,
-+                               exposed.y - position.y,
-+                               exposed.x, exposed.y,
-+                               exposed.width, exposed.height,
-+                               GDK_RGB_DITHER_NORMAL,
-+                               exposed.x, exposed.y);
-+               }
-+       }
-+
-+       return TRUE;
-+}
-+
-+/* begin metacity cut and paste */
-+static void
-+free_buffer (guchar *pixels, gpointer data)
-+{
-+  g_free (pixels);
-+}
-+
-+static GdkPixbuf*
-+blank_pixbuf (int width, int height, gboolean no_padding)
-+{
-+  guchar *buf;
-+  int rowstride;
-+
-+  g_return_val_if_fail (width > 0, NULL);
-+  g_return_val_if_fail (height > 0, NULL);
-+
-+  if (no_padding)
-+    rowstride = width * 3;
-+  else
-+    /* Always align rows to 32-bit boundaries */  
-+    rowstride = 4 * ((3 * width + 3) / 4);
-+
-+  buf = g_try_malloc (height * rowstride);
-+  if (!buf)
-+    return NULL;
-+
-+  return gdk_pixbuf_new_from_data (buf, GDK_COLORSPACE_RGB,
-+                                   FALSE, 8,
-+                                   width, height, rowstride,
-+                                   free_buffer, NULL);
-+}
-+
-+static GdkPixbuf*
-+meta_gradient_create_vertical (int width, int height,
-+                               const GdkColor *from,
-+                               const GdkColor *to)
-+{
-+  int i, j;
-+  long r, g, b, dr, dg, db;
-+  GdkPixbuf *pixbuf;
-+  unsigned char *ptr;
-+  unsigned char rr, gg, bb;
-+  int r0, g0, b0;
-+  int rf, gf, bf;
-+  int rowstride;
-+  unsigned char *pixels;
-+  
-+  pixbuf = blank_pixbuf (width, height, FALSE);
-+  if (pixbuf == NULL)
-+    return NULL;
-+    
-+  pixels = gdk_pixbuf_get_pixels (pixbuf);
-+  rowstride = gdk_pixbuf_get_rowstride (pixbuf);
-+  
-+  r0 = (guchar) (from->red / 256.0);
-+  g0 = (guchar) (from->green / 256.0);
-+  b0 = (guchar) (from->blue / 256.0);
-+  rf = (guchar) (to->red / 256.0);
-+  gf = (guchar) (to->green / 256.0);
-+  bf = (guchar) (to->blue / 256.0);
-+  
-+  r = r0<<16;
-+  g = g0<<16;
-+  b = b0<<16;
-+
-+  dr = ((rf-r0)<<16)/(int)height;
-+  dg = ((gf-g0)<<16)/(int)height;
-+  db = ((bf-b0)<<16)/(int)height;
-+
-+  for (i=0; i<height; i++)
-+    {
-+      ptr = pixels + i * rowstride;
-+      
-+      rr = r>>16;
-+      gg = g>>16;
-+      bb = b>>16;
-+      for (j=0; j<width/8; j++)
-+        {
-+          *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+          *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+          *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+          *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+          *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+          *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+          *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+          *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+      }
-+      switch (width%8)
-+        {
-+        case 7: *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+        case 6: *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+        case 5: *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+        case 4: *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+        case 3: *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+        case 2: *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+        case 1: *(ptr++) = rr; *(ptr++) = gg; *(ptr++) = bb;
-+      }
-+      r+=dr;
-+      g+=dg;
-+      b+=db;
-+    }
-+  return pixbuf;
-+}
-+
-+/* end metacity cut and paste */
-+
-+/* begin gtkmenu.c cut and paste */
-+#define MENU_SCROLL_STEP1 8
-+#define MENU_SCROLL_STEP2 15
-+#define MENU_SCROLL_ARROW_HEIGHT 16
-+#define MENU_SCROLL_FAST_ZONE 8
-+#define MENU_SCROLL_TIMEOUT1 50
-+#define MENU_SCROLL_TIMEOUT2 50
-+
-+#define ATTACH_INFO_KEY "gtk-menu-child-attach-info-key"
-+
-+typedef struct _GtkMenuAttachData     GtkMenuAttachData;
-+typedef struct _GtkMenuPrivate        GtkMenuPrivate;
-+
-+struct _GtkMenuAttachData
-+{
-+      GtkWidget *attach_widget;
-+      GtkMenuDetachFunc detacher;
-+};
-+
-+struct _GtkMenuPrivate 
-+{
-+  gboolean have_position;
-+  gint x;
-+  gint y;
-+
-+  /* info used for the table */
-+  guint *heights;
-+  gint heights_length;
-+
-+  gint monitor_num;
-+
-+      /* Cached layout information */
-+      gboolean have_layout;
-+      gint n_rows;
-+      gint n_columns;
-+};
-+
-+typedef struct
-+{
-+      gint left_attach;
-+      gint right_attach;
-+      gint top_attach;
-+      gint bottom_attach;
-+      gint effective_left_attach;
-+      gint effective_right_attach;
-+      gint effective_top_attach;
-+      gint effective_bottom_attach;
-+} AttachInfo;
-+
-+static void
-+gtk_menu_free_private (gpointer data)
-+{
-+  GtkMenuPrivate *priv = (GtkMenuPrivate *)data;
-+
-+  g_free (priv->heights);
-+
-+  g_free (priv);
-+}
-+
-+static GtkMenuPrivate *
-+gtk_menu_get_private (GtkMenu *menu)
-+{
-+  GtkMenuPrivate *private;
-+  static GQuark private_quark = 0;
-+
-+  if (!private_quark)
-+    private_quark = g_quark_from_static_string ("gtk-menu-private");
-+
-+  private = g_object_get_qdata (G_OBJECT (menu), private_quark);
-+
-+  if (!private)
-+    {
-+      private = g_new0 (GtkMenuPrivate, 1);
-+      private->have_position = FALSE;
-+      
-+      g_object_set_qdata_full (G_OBJECT (menu), private_quark,
-+                             private, gtk_menu_free_private);
-+    }
-+
-+  return private;
-+}
-+
-+static void
-+gtk_menu_remove_scroll_timeout (GtkMenu *menu)
-+{
-+  if (menu->timeout_id)
-+    {
-+      g_source_remove (menu->timeout_id);
-+      menu->timeout_id = 0;
-+    }
-+}
-+
-+static void
-+gtk_menu_stop_scrolling (GtkMenu *menu)
-+{
-+  gtk_menu_remove_scroll_timeout (menu);
-+
-+  menu->upper_arrow_prelight = FALSE;
-+  menu->lower_arrow_prelight = FALSE;
-+}
-+
-+static void
-+gtk_menu_scroll_to (GtkMenu *menu,
-+                  gint    offset)
-+{
-+  GtkWidget *widget;
-+  gint x, y;
-+  gint view_width, view_height;
-+  gint border_width;
-+  gboolean last_visible;
-+  gint menu_height;
-+  guint vertical_padding;
-+
-+  widget = GTK_WIDGET (menu);
-+
-+  if (menu->tearoff_active &&
-+      menu->tearoff_adjustment &&
-+      (menu->tearoff_adjustment->value != offset))
-+    {
-+      menu->tearoff_adjustment->value =
-+      CLAMP (offset,
-+             0, menu->tearoff_adjustment->upper - menu->tearoff_adjustment->page_size);
-+      gtk_adjustment_value_changed (menu->tearoff_adjustment);
-+    }
-+  
-+  /* Move/resize the viewport according to arrows: */
-+  view_width = widget->allocation.width;
-+  view_height = widget->allocation.height;
-+
-+  gtk_widget_style_get (GTK_WIDGET (menu),
-+                      "vertical-padding", &vertical_padding,
-+                      NULL);
-+  
-+  border_width = GTK_CONTAINER (menu)->border_width;
-+  view_width -= (border_width + widget->style->xthickness) * 2;
-+  view_height -= (border_width + widget->style->ythickness + vertical_padding) * 2;
-+  menu_height = widget->requisition.height -
-+      (border_width + widget->style->ythickness + vertical_padding) * 2;
-+
-+  x = border_width + widget->style->xthickness;
-+  y = border_width + widget->style->ythickness + vertical_padding;
-+
-+  if (!menu->tearoff_active)
-+    {
-+      last_visible = menu->upper_arrow_visible;
-+      menu->upper_arrow_visible = offset > 0;
-+      
-+      if (menu->upper_arrow_visible)
-+      view_height -= MENU_SCROLL_ARROW_HEIGHT;
-+      
-+      if ( (last_visible != menu->upper_arrow_visible) &&
-+         !menu->upper_arrow_visible)
-+      {
-+        menu->upper_arrow_prelight = FALSE;
-+        
-+        /* If we hid the upper arrow, possibly remove timeout */
-+        if (menu->scroll_step < 0)
-+          {
-+            gtk_menu_stop_scrolling (menu);
-+            gtk_widget_queue_draw (GTK_WIDGET (menu));
-+          }
-+      }
-+
-+      last_visible = menu->lower_arrow_visible;
-+      menu->lower_arrow_visible = offset < menu_height - view_height;
-+      
-+      if (menu->lower_arrow_visible)
-+      view_height -= MENU_SCROLL_ARROW_HEIGHT;
-+      
-+      if ( (last_visible != menu->lower_arrow_visible) &&
-+         !menu->lower_arrow_visible)
-+      {
-+        menu->lower_arrow_prelight = FALSE;
-+        
-+        /* If we hid the lower arrow, possibly remove timeout */
-+        if (menu->scroll_step > 0)
-+          {
-+            gtk_menu_stop_scrolling (menu);
-+            gtk_widget_queue_draw (GTK_WIDGET (menu));
-+          }
-+      }
-+      
-+      if (menu->upper_arrow_visible)
-+      y += MENU_SCROLL_ARROW_HEIGHT;
-+    }
-+
-+  /* Scroll the menu: */
-+  if (GTK_WIDGET_REALIZED (menu))
-+    gdk_window_move (menu->bin_window, 0, -offset);
-+
-+  if (GTK_WIDGET_REALIZED (menu))
-+    gdk_window_move_resize (menu->view_window,
-+                          x,
-+                          y,
-+                          view_width,
-+                          view_height);
-+
-+  menu->scroll_offset = offset;
-+}
-+
-+static AttachInfo *
-+get_attach_info (GtkWidget *child)
-+{
-+      GObject *object = G_OBJECT (child);
-+      AttachInfo *ai = g_object_get_data (object, ATTACH_INFO_KEY);
-+
-+      if (!ai)
-+      {
-+              ai = g_new0 (AttachInfo, 1);
-+              g_object_set_data_full (object, ATTACH_INFO_KEY, ai, g_free);
-+      }
-+
-+      return ai;
-+}
-+
-+static gboolean
-+is_grid_attached (AttachInfo *ai)
-+{
-+      return (ai->left_attach >= 0 &&
-+                      ai->right_attach >= 0 &&
-+                      ai->top_attach >= 0 &&
-+                      ai->bottom_attach >= 0);
-+}
-+
-+static void
-+menu_ensure_layout (GtkMenu *menu)
-+{
-+      GtkMenuPrivate *priv = gtk_menu_get_private (menu);
-+
-+      if (!priv->have_layout)
-+      {
-+              GtkMenuShell *menu_shell = GTK_MENU_SHELL (menu);
-+              GList *l;
-+              gchar *row_occupied;
-+              gint current_row;
-+              gint max_right_attach;
-+              gint max_bottom_attach;
-+
-+              /* Find extents of gridded portion */
-+              max_right_attach = 1;
-+              max_bottom_attach = 0;
-+
-+              for (l = menu_shell->children; l; l = l->next)
-+              {
-+                      GtkWidget *child = l->data;
-+                      AttachInfo *ai = get_attach_info (child);
-+
-+                      if (is_grid_attached (ai))
-+                      {
-+                              max_bottom_attach = MAX (max_bottom_attach, ai->bottom_attach);
-+                              max_right_attach = MAX (max_right_attach, ai->right_attach);
-+                      }
-+              }
-+
-+              /* Find empty rows */
-+              row_occupied = g_malloc0 (max_bottom_attach);
-+
-+              for (l = menu_shell->children; l; l = l->next)
-+              {
-+                      GtkWidget *child = l->data;
-+                      AttachInfo *ai = get_attach_info (child);
-+
-+                      if (is_grid_attached (ai))
-+                      {
-+                              gint i;
-+
-+                              for (i = ai->top_attach; i < ai->bottom_attach; i++)
-+                                      row_occupied[i] = TRUE;
-+                      }
-+              }
-+
-+              /* Lay non-grid-items out in those rows */
-+              current_row = 0;
-+              for (l = menu_shell->children; l; l = l->next)
-+              {
-+                      GtkWidget *child = l->data;
-+                      AttachInfo *ai = get_attach_info (child);
-+
-+                      if (!is_grid_attached (ai))
-+                      {
-+                              while (current_row < max_bottom_attach && row_occupied[current_row])
-+                                      current_row++;
-+
-+                              ai->effective_left_attach = 0;
-+                              ai->effective_right_attach = max_right_attach;
-+                              ai->effective_top_attach = current_row;
-+                              ai->effective_bottom_attach = current_row + 1;
-+
-+                              current_row++;
-+                      }
-+                      else
-+                      {
-+                              ai->effective_left_attach = ai->left_attach;
-+                              ai->effective_right_attach = ai->right_attach;
-+                              ai->effective_top_attach = ai->top_attach;
-+                              ai->effective_bottom_attach = ai->bottom_attach;
-+                      }
-+              }
-+
-+              g_free (row_occupied);
-+
-+              priv->n_rows = MAX (current_row, max_bottom_attach);
-+              priv->n_columns = max_right_attach;
-+              priv->have_layout = TRUE;
-+      }
-+}
-+
-+
-+static gint
-+gtk_menu_get_n_columns (GtkMenu *menu)
-+{
-+      GtkMenuPrivate *priv = gtk_menu_get_private (menu);
-+
-+      menu_ensure_layout (menu);
-+
-+      return priv->n_columns;
-+}
-+
-+static gint
-+gtk_menu_get_n_rows (GtkMenu *menu)
-+{
-+      GtkMenuPrivate *priv = gtk_menu_get_private (menu);
-+
-+      menu_ensure_layout (menu);
-+
-+      return priv->n_rows;
-+}
-+
-+static void
-+get_effective_child_attach (GtkWidget *child,
-+              int       *l,
-+              int       *r,
-+              int       *t,
-+              int       *b)
-+{
-+      GtkMenu *menu = GTK_MENU (child->parent);
-+      AttachInfo *ai;
-+
-+      menu_ensure_layout (menu);
-+
-+      ai = get_attach_info (child);
-+
-+      if (l)
-+              *l = ai->effective_left_attach;
-+      if (r)
-+              *r = ai->effective_right_attach;
-+      if (t)
-+              *t = ai->effective_top_attach;
-+      if (b)
-+              *b = ai->effective_bottom_attach;
-+
-+}
-+
-+static void
-+gtk_menu_set_tearoff_hints (GtkMenu *menu,
-+                          gint     width)
-+{
-+  GdkGeometry geometry_hints;
-+  
-+  if (!menu->tearoff_window)
-+    return;
-+
-+  if (GTK_WIDGET_VISIBLE (menu->tearoff_scrollbar))
-+    {
-+      gtk_widget_size_request (menu->tearoff_scrollbar, NULL);
-+      width += menu->tearoff_scrollbar->requisition.width;
-+    }
-+
-+  geometry_hints.min_width = width;
-+  geometry_hints.max_width = width;
-+    
-+  geometry_hints.min_height = 0;
-+  geometry_hints.max_height = GTK_WIDGET (menu)->requisition.height;
-+
-+  gtk_window_set_geometry_hints (GTK_WINDOW (menu->tearoff_window),
-+                               NULL,
-+                               &geometry_hints,
-+                               GDK_HINT_MAX_SIZE|GDK_HINT_MIN_SIZE);
-+}
-+
-+static void
-+gtk_menu_size_allocate (GtkWidget     *widget,
-+                      GtkAllocation *allocation)
-+{
-+  GtkMenu *menu;
-+  GtkMenuShell *menu_shell;
-+  GtkWidget *child;
-+  GtkAllocation child_allocation;
-+  GtkRequisition child_requisition;
-+  GtkMenuPrivate *priv;
-+  GList *children;
-+  gint x, y;
-+  gint width, height;
-+  guint vertical_padding;
-+  guint menu_stripe_width;
-+
-+  g_return_if_fail (GTK_IS_MENU (widget));
-+  g_return_if_fail (allocation != NULL);
-+  
-+  menu = GTK_MENU (widget);
-+  menu_shell = GTK_MENU_SHELL (widget);
-+  priv = gtk_menu_get_private (menu);
-+ 
-+  widget->allocation = *allocation;
-+  gtk_widget_get_child_requisition (GTK_WIDGET (menu), &child_requisition);
-+
-+  gtk_widget_style_get (GTK_WIDGET (menu),
-+                      "vertical-padding", &vertical_padding,
-+                      NULL);
-+  
-+  x = GTK_CONTAINER (menu)->border_width + widget->style->xthickness;
-+  y = GTK_CONTAINER (menu)->border_width + widget->style->ythickness + vertical_padding;
-+
-+  width = MAX (1, allocation->width - x * 2);
-+  height = MAX (1, allocation->height - y * 2);
-+
-+  child_requisition.width -= x * 2;
-+  child_requisition.height -= y * 2;
-+
-+  if (menu_shell->active)
-+    gtk_menu_scroll_to (menu, menu->scroll_offset);
-+  
-+  if (menu->upper_arrow_visible && !menu->tearoff_active)
-+    {
-+      y += MENU_SCROLL_ARROW_HEIGHT;
-+      height -= MENU_SCROLL_ARROW_HEIGHT;
-+    }
-+  
-+  if (menu->lower_arrow_visible && !menu->tearoff_active)
-+    height -= MENU_SCROLL_ARROW_HEIGHT;
-+  
-+  if (GTK_WIDGET_REALIZED (widget))
-+    {
-+      gdk_window_move_resize (widget->window,
-+                            allocation->x, allocation->y,
-+                            allocation->width, allocation->height);
-+
-+      gdk_window_move_resize (menu->view_window,
-+                            x,
-+                            y,
-+                            width,
-+                            height);
-+    }
-+
-+/* inserted for panel-menu.c */
-+  if (panel_global_config_get_menu_stripe () && PANEL_MENU (widget)->side_image) {
-+    menu_stripe_width = gdk_pixbuf_get_width (PANEL_MENU (widget)->side_image) + gtk_widget_get_style (widget)->xthickness;
-+  } else {
-+    menu_stripe_width = 0;
-+  }
-+/* end panel-menu.c */
-+
-+  if (menu_shell->children)
-+    {
-+/* inserted for panel-menu.c */
-+#if 0
-+      gint base_width = width / gtk_menu_get_n_columns (menu);
-+#else
-+      gint base_width = (width - menu_stripe_width) / gtk_menu_get_n_columns (menu);
-+#endif
-+/* end panel-menu.c */
-+
-+      children = menu_shell->children;
-+      while (children)
-+      {
-+        child = children->data;
-+        children = children->next;
-+
-+        if (GTK_WIDGET_VISIBLE (child))
-+          {
-+              gint i;
-+            guint l, r, t, b;
-+
-+              get_effective_child_attach (child, &l, &r, &t, &b);
-+
-+              if (gtk_widget_get_direction (GTK_WIDGET (menu)) == GTK_TEXT_DIR_RTL)
-+                {
-+                  guint tmp;
-+                  tmp = gtk_menu_get_n_columns (menu) - l;
-+                  l = gtk_menu_get_n_columns (menu) - r;
-+                  r = tmp;
-+                }
-+
-+              child_allocation.width = (r - l) * base_width;
-+              child_allocation.height = 0;
-+/* inserted for panel-menu.c */
-+#if 0
-+              child_allocation.x = l * base_width;
-+#else
-+              child_allocation.x = l * base_width + menu_stripe_width;
-+#endif
-+              child_allocation.y = 0;
-+
-+              for (i = 0; i < b; i++)
-+                {
-+                  if (i < t)
-+                    child_allocation.y += priv->heights[i];
-+                  else
-+                    child_allocation.height += priv->heights[i];
-+                }
-+
-+
-+            gtk_menu_item_toggle_size_allocate (GTK_MENU_ITEM (child),
-+                                                menu->toggle_size);
-+
-+            gtk_widget_size_allocate (child, &child_allocation);
-+
-+#if 0
-+
-+/* inserted for panel-menu.c */
-+            if (use_menu_stripe && g_type_is_a (G_OBJECT_TYPE (child), GTK_TYPE_SEPARATOR_MENU_ITEM)) 
-+              {
-+                /* this is dumb, gtkmenuitem.c uses allocation.width as an absolute point */
-+                child_allocation.width += gdk_pixbuf_get_width (PANEL_MENU (widget)->side_image);
-+              }
-+
-+            gtk_widget_size_allocate (child, &child_allocation);
-+
-+            if (use_menu_stripe && g_type_is_a (G_OBJECT_TYPE (child), GTK_TYPE_SEPARATOR_MENU_ITEM)) 
-+              {
-+                child_allocation.width -= gdk_pixbuf_get_width (PANEL_MENU (widget)->side_image);
-+              }
-+#endif
-+
-+            /* Hack to handle events on the stripe area */
-+            if (GTK_WIDGET_REALIZED (child) && l == 0) 
-+              { 
-+                gdk_window_move_resize (GTK_MENU_ITEM (child)->event_window,
-+                                        0, child_allocation.y,
-+                                        child_allocation.width + child_allocation.x, 
-+                                        child_allocation.height);
-+              }
-+/* end panel-menu.c */
-+
-+            gtk_widget_queue_draw (child);
-+          }
-+      }
-+      
-+      /* Resize the item window */
-+      if (GTK_WIDGET_REALIZED (widget))
-+      {
-+          gint i;
-+          gint width, height;
-+
-+          height = 0;
-+          for (i = 0; i < gtk_menu_get_n_rows (menu); i++)
-+            height += priv->heights[i];
-+
-+/* inserted for panel-menu.c */
-+#if 0
-+          width = gtk_menu_get_n_columns (menu) * base_width;
-+#else
-+          width = gtk_menu_get_n_columns (menu) * base_width + menu_stripe_width;
-+#endif
-+/* end panel-menu.c */
-+
-+        gdk_window_resize (menu->bin_window, width, height);
-+      }
-+
-+      if (menu->tearoff_active)
-+      {
-+        if (allocation->height >= widget->requisition.height)
-+          {
-+            if (GTK_WIDGET_VISIBLE (menu->tearoff_scrollbar))
-+              {
-+                gtk_widget_hide (menu->tearoff_scrollbar);
-+                gtk_menu_set_tearoff_hints (menu, allocation->width);
-+
-+                gtk_menu_scroll_to (menu, 0);
-+              }
-+          }
-+        else
-+          {
-+            menu->tearoff_adjustment->upper = widget->requisition.height;
-+            menu->tearoff_adjustment->page_size = allocation->height;
-+            
-+            if (menu->tearoff_adjustment->value + menu->tearoff_adjustment->page_size >
-+                menu->tearoff_adjustment->upper)
-+              {
-+                gint value;
-+                value = menu->tearoff_adjustment->upper - menu->tearoff_adjustment->page_size;
-+                if (value < 0)
-+                  value = 0;
-+                gtk_menu_scroll_to (menu, value);
-+              }
-+            
-+            gtk_adjustment_changed (menu->tearoff_adjustment);
-+            
-+            if (!GTK_WIDGET_VISIBLE (menu->tearoff_scrollbar))
-+              {
-+                gtk_widget_show (menu->tearoff_scrollbar);
-+                gtk_menu_set_tearoff_hints (menu, allocation->width);
-+              }
-+          }
-+      }
-+    }
-+/* inserted for panel-menu.c */
-+
-+  {
-+    PanelMenu *pm = PANEL_MENU (widget);
-+              
-+    gint scaled_height = height;
-+              
-+    if (pm->side_image && widget->allocation.height > gdk_pixbuf_get_height (pm->side_image)) 
-+      {
-+      scaled_height -= gdk_pixbuf_get_height (pm->side_image);
-+      }
-+    
-+    if (pm->side_image && widget->allocation.height < gdk_pixbuf_get_height (pm->side_image)) 
-+      {
-+      gint scaled_width = ((scaled_height * gdk_pixbuf_get_width (pm->side_image)) / gdk_pixbuf_get_height (pm->side_image));
-+
-+      if (pm->scaled_image)
-+              gdk_pixbuf_unref(pm->scaled_image);
-+
-+      pm->scaled_image = gdk_pixbuf_scale_simple (pm->side_image,
-+                                                  scaled_width,
-+                                                  scaled_height,
-+                                                  GDK_INTERP_BILINEAR); /* maybe HYPER ? */
-+      gdk_pixbuf_unref(pm->side_image);
-+      pm->side_image = pm->scaled_image;
-+      } 
-+    else 
-+      {
-+      gboolean draw_gradient;
-+      gtk_widget_style_get (GTK_WIDGET (pm),
-+                            "gradient_bg", &draw_gradient, 
-+                            NULL);
-+      
-+      if (pm->side_image && draw_gradient) 
-+        {
-+          GdkColor *stripe_color;
-+          GdkColor *light_color;
-+          
-+          stripe_color = get_stripe_color (pm);
-+          light_color = get_light_stripe_color (pm);
-+          pm->scaled_image = meta_gradient_create_vertical 
-+            (gdk_pixbuf_get_width (pm->side_image),
-+             scaled_height,
-+             light_color,
-+             stripe_color);
-+          gdk_color_free (light_color);
-+          gdk_color_free (stripe_color);
-+        }
-+      }
-+  }
-+/* end panel-menu.c */
-+}
-+
-+/* end gtkmenu cut and paste */
-+
-+static void
-+unload_images (PanelMenu *pm)
-+{
-+      if (pm->side_image) {
-+              g_object_unref (pm->side_image);
-+              pm->side_image = NULL;
-+      }
-+
-+      if (pm->scaled_image) {
-+              g_object_unref (pm->scaled_image);
-+              pm->scaled_image = NULL;
-+      }
-+}
-+
-+static GdkPixbuf *
-+get_stripe_image (PanelMenu *pm,
-+                const char *name,
-+                const char *default_filename)
-+{     
-+      GdkPixbuf *image = NULL;
-+      char *file_src;
-+      
-+      gtk_widget_style_get (GTK_WIDGET (pm), name, &file_src, NULL);
-+
-+      if (!file_src) {
-+              file_src = gnome_program_locate_file (NULL,
-+                                                    GNOME_FILE_DOMAIN_PIXMAP,
-+                                                    default_filename,
-+                                                    TRUE,
-+                                                    NULL);
-+      }
-+
-+      if (file_src) 
-+              image = gdk_pixbuf_new_from_file (file_src, NULL);
-+      
-+      g_free (file_src);
-+      
-+      return image;
-+}
-+
-+static void
-+load_images (PanelMenu *pm)
-+{
-+      GdkPixbuf *image;
-+
-+      unload_images (pm);
-+      
-+      pm->side_image = get_stripe_image (pm, "default_side_image",
-+                                "pld-desktop-stripe.png");
-+}
-+
-+static void
-+panel_menu_style_set (GtkWidget *widget,
-+                    GtkStyle *old_style)
-+{
-+      load_images (PANEL_MENU (widget));
-+      GNOME_CALL_PARENT (GTK_WIDGET_CLASS, style_set, (widget, old_style));
-+}
-+
-+static void
-+panel_menu_destroy (GtkObject *object)
-+{
-+      PanelMenu *pm = PANEL_MENU (object);
-+      
-+      unload_images (pm);
-+      
-+      GNOME_CALL_PARENT (GTK_OBJECT_CLASS, destroy, (object));
-+}
-+
-+static void
-+panel_menu_finalize (GObject *object)
-+{
-+       GNOME_CALL_PARENT (G_OBJECT_CLASS, finalize, (object));
-+}
-+
-+static void
-+panel_menu_class_init (PanelMenuClass *klass)
-+{      
-+       GtkWidgetClass *widget_class = (GtkWidgetClass *) klass;
-+       GtkObjectClass *gtk_object_class = (GtkObjectClass *)klass;
-+       GObjectClass *object_class = (GObjectClass *) klass;
-+
-+       gtk_widget_class_install_style_property (
-+               widget_class,
-+               g_param_spec_string ("default_side_image",
-+                                    _("Default Side Image"),
-+                                    _("Filename of logo down the side of applications menu"),
-+                                    NULL,
-+                                    G_PARAM_READWRITE));
-+
-+       gtk_widget_class_install_style_property (
-+               widget_class,
-+               g_param_spec_boolean ("gradient_bg",
-+                                   _("Gradient Background"),
-+                                   _("Draw a gradient in the menu stripe"),
-+                                   FALSE,
-+                                   G_PARAM_READWRITE));
-+       gtk_widget_class_install_style_property (
-+             widget_class,
-+             g_param_spec_boxed ("stripe_color",
-+                                 _("Stripe Color"),
-+                                 _("Color of the panel menu stripe"),
-+                                 GDK_TYPE_COLOR,
-+                                 G_PARAM_READABLE));
-+
-+       gtk_widget_class_install_style_property (
-+             widget_class,
-+             g_param_spec_boxed ("stripe_color_light",
-+                                 _("Light Stripe Color"),
-+                                 _("Light color of the panel menu stripe, for gradients"),
-+                                 GDK_TYPE_COLOR,
-+                                 G_PARAM_READABLE));       
-+
-+       object_class->finalize = panel_menu_finalize;
-+       gtk_object_class->destroy = panel_menu_destroy;
-+       widget_class->size_request = panel_menu_size_request;
-+       widget_class->size_allocate = gtk_menu_size_allocate;
-+       widget_class->expose_event = panel_menu_expose_event;
-+       widget_class->style_set = panel_menu_style_set;
-+}
-+
-+static void
-+panel_menu_instance_init (PanelMenu *pm)
-+{
-+      gtk_widget_ensure_style (GTK_WIDGET (pm));
-+
-+      load_images (pm);
-+      
-+      gtk_widget_add_events (
-+              GTK_WIDGET (pm),
-+              GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK |
-+              GDK_POINTER_MOTION_MASK);
-+}
-diff -urN aa/gnome-panel-2.6.0/gnome-panel/panel-menu.h gnome-panel-2.6.0/gnome-panel/panel-menu.h
---- aa/gnome-panel-2.6.0/gnome-panel/panel-menu.h      1970-01-01 01:00:00.000000000 +0100
-+++ gnome-panel-2.6.0/gnome-panel/panel-menu.h 2004-03-27 00:29:00.640043704 +0100
-@@ -0,0 +1,31 @@
-+#include <gtk/gtkmenu.h>
-+#include <gtk/gtkimage.h>
-+
-+typedef struct _PanelMenu PanelMenu;
-+typedef struct _PanelMenuClass PanelMenuClass;
-+
-+#define PANEL_MENU(obj) \
-+        GTK_CHECK_CAST (obj, panel_menu_get_type (), PanelMenu)
-+#define PANEL_MENU_CLASS(k) \
-+       GTK_CHECK_CLASS_CAST (k, panel_menu_get_type (), PanelMenuClass)
-+#define PANEL_IS_MENU(obj) \
-+       GTK_CHECK_TYPE (obj, panel_menu_get_type ())
-+
-+
-+struct _PanelMenu
-+{
-+       GtkMenu parent;
-+
-+       GdkPixbuf *side_image;
-+       GdkPixbuf *scaled_image;
-+
-+      GdkRegion *navigation_region;
-+};
-+
-+struct _PanelMenuClass
-+{
-+       GtkMenuClass parent_class;
-+};
-+
-+GType      panel_menu_get_type (void);
-+GtkWidget *panel_menu_evolve   (void);
diff --git a/gnome-panel-menu_icon.patch b/gnome-panel-menu_icon.patch
deleted file mode 100644 (file)
index 8ff3c87..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-diff -Nuard gnome-panel-2.4.1.orig/gnome-panel/menu.c gnome-panel-2.4.1/gnome-panel/menu.c
---- gnome-panel-2.4.1.orig/gnome-panel/menu.c  2003-10-14 12:46:30.000000000 +0200
-+++ gnome-panel-2.4.1/gnome-panel/menu.c       2003-10-29 21:59:14.000000000 +0100
-@@ -2242,10 +2242,10 @@
-       if (fr->type == FILE_REC_DIR) {
-               if (!gnome_folder)
--                      gnome_folder = gnome_program_locate_file (NULL, 
--                                                                GNOME_FILE_DOMAIN_PIXMAP, 
--                                                                "gnome-folder.png", 
--                                                                TRUE, NULL);
-+                      gnome_folder = gnome_icon_theme_lookup_icon (
-+                                              panel_icon_theme,
-+                                              "gnome-fs-directory.png",
-+                                              48, NULL, NULL);
-               if (!icon)
-                       icon = gnome_folder;
-               else
-diff -Nuard gnome-panel-2.4.1.orig/gnome-panel/panel.c gnome-panel-2.4.1/gnome-panel/panel.c
---- gnome-panel-2.4.1.orig/gnome-panel/panel.c 2003-10-14 12:46:36.000000000 +0200
-+++ gnome-panel-2.4.1/gnome-panel/panel.c      2003-10-29 21:56:01.000000000 +0100
-@@ -508,7 +508,7 @@
-       if (panel_is_program_in_path ("nautilus")) {
-               /* nautilus */
--              return drop_nautilus_uri (panel, pos, dir, "gnome-folder.png");
-+              return drop_nautilus_uri (panel, pos, dir, "gnome-fs-directory.png");
-       } else {
-               return drop_menu (panel, pos, dir);
-       }
diff --git a/gnome-panel-no_launchers_on_panel.patch b/gnome-panel-no_launchers_on_panel.patch
deleted file mode 100644 (file)
index 542886e..0000000
+++ /dev/null
@@ -1,164 +0,0 @@
-diff -urN gnome-panel-2.9.92.orig/gnome-panel/panel-compatibility.schemas gnome-panel-2.9.92/gnome-panel/panel-compatibility.schemas
---- gnome-panel-2.9.92.orig/gnome-panel/panel-compatibility.schemas    2005-03-01 13:12:22.444621344 +0100
-+++ gnome-panel-2.9.92/gnome-panel/panel-compatibility.schemas 2005-03-01 13:13:09.123525072 +0100
-@@ -182,14 +182,6 @@
-       </schema>
-      
-       <schema>
--        <key>/schemas/apps/panel/default_profiles/medium/objects/00000001/launcher_location</key>
--        <owner>panel</owner>
--        <type>string</type>
--        <default>applications:///nautilus.desktop</default>
--      <locale name="C"/>
--      </schema>
--     
--      <schema>
-         <key>/schemas/apps/panel/default_profiles/medium/objects/00000001/panel_id</key>
-         <owner>panel</owner>
-         <type>string</type>
-@@ -220,14 +212,6 @@
-         <default>launcher-object</default>
-       <locale name="C"/>
-       </schema>
--
--      <schema>
--        <key>/schemas/apps/panel/default_profiles/medium/objects/00000002/launcher_location</key>
--        <owner>panel</owner>
--        <type>string</type>
--        <default>applications:///System/gnome-terminal.desktop</default>
--      <locale name="C"/>
--      </schema>
-      
-       <schema>
-         <key>/schemas/apps/panel/default_profiles/medium/objects/00000002/panel_id</key>
-diff -urN gnome-panel-2.9.92.orig/gnome-panel/panel-default-setup.entries.in gnome-panel-2.9.92/gnome-panel/panel-default-setup.entries.in
---- gnome-panel-2.9.92.orig/gnome-panel/panel-default-setup.entries.in 2005-03-01 13:12:22.445621192 +0100
-+++ gnome-panel-2.9.92/gnome-panel/panel-default-setup.entries.in      2005-03-01 13:14:29.082369480 +0100
-@@ -29,12 +29,6 @@
-           <value>
-             <string>menu_bar</string>
-           </value>
--          <value>
--            <string>nautilus_launcher</string>
--          </value>
--          <value>
--            <string>terminal_launcher</string>
--          </value>
-         </list>
-       </value>
-     </entry>
-@@ -208,114 +202,6 @@
-     <entry><key>objects/menu_bar/launcher_location</key><schema_key>/schemas/apps/panel/objects/launcher_location</schema_key></entry>
-     <entry><key>objects/menu_bar/action_type</key><schema_key>/schemas/apps/panel/objects/action_type</schema_key></entry>
--  <!-- Nautilus Launcher -->
--
--    <entry>
--      <key>objects/nautilus_launcher/object_type</key>
--      <schema_key>/schemas/apps/panel/objects/object_type</schema_key>
--      <value>
--        <string>launcher-object</string>
--      </value>
--    </entry>
--    <entry>
--      <key>objects/nautilus_launcher/toplevel_id</key>
--      <schema_key>/schemas/apps/panel/objects/toplevel_id</schema_key>
--      <value>
--        <string>top_panel</string>
--      </value>
--    </entry>
--    <entry>
--      <key>objects/nautilus_launcher/position</key>
--      <schema_key>/schemas/apps/panel/objects/position</schema_key>
--      <value>
--        <int>1</int>
--      </value>
--    </entry>
--    <entry>
--      <key>objects/nautilus_launcher/panel_right_stick</key>
--      <schema_key>/schemas/apps/panel/objects/panel_right_stick</schema_key>
--      <value>
--        <bool>false</bool>
--      </value>
--    </entry>
--    <entry>
--      <key>objects/nautilus_launcher/locked</key>
--      <schema_key>/schemas/apps/panel/objects/locked</schema_key>
--      <value>
--        <bool>true</bool>
--      </value>
--    </entry>
--    <entry>
--      <key>objects/nautilus_launcher/launcher_location</key>
--      <schema_key>/schemas/apps/panel/objects/launcher_location</schema_key>
--      <value>
--        <string>@DATADIR@/applications/nautilus.desktop</string>
--      </value>
--    </entry>
--
--    <entry><key>objects/nautilus_launcher/bonobo_iid</key><schema_key>/schemas/apps/panel/objects/bonobo_iid</schema_key></entry>
--    <entry><key>objects/nautilus_launcher/attached_toplevel_id</key><schema_key>/schemas/apps/panel/objects/attached_toplevel_id</schema_key> </entry>
--    <entry><key>objects/nautilus_launcher/tooltip</key><schema_key>/schemas/apps/panel/objects/tooltip</schema_key></entry>
--    <entry><key>objects/nautilus_launcher/use_custom_icon</key><schema_key>/schemas/apps/panel/objects/use_custom_icon</schema_key></entry>
--    <entry><key>objects/nautilus_launcher/custom_icon</key><schema_key>/schemas/apps/panel/objects/custom_icon</schema_key></entry>
--    <entry><key>objects/nautilus_launcher/use_menu_path</key><schema_key>/schemas/apps/panel/objects/use_menu_path</schema_key></entry>
--    <entry><key>objects/nautilus_launcher/menu_path</key><schema_key>/schemas/apps/panel/objects/menu_path</schema_key></entry>
--    <entry><key>objects/nautilus_launcher/action_type</key><schema_key>/schemas/apps/panel/objects/action_type</schema_key></entry>
--
--  <!-- Terminal Launcher -->
--
--    <entry>
--      <key>objects/terminal_launcher/object_type</key>
--      <schema_key>/schemas/apps/panel/objects/object_type</schema_key>
--      <value>
--        <string>launcher-object</string>
--      </value>
--    </entry>
--    <entry>
--      <key>objects/terminal_launcher/toplevel_id</key>
--      <schema_key>/schemas/apps/panel/objects/toplevel_id</schema_key>
--      <value>
--        <string>top_panel</string>
--      </value>
--    </entry>
--    <entry>
--      <key>objects/terminal_launcher/position</key>
--      <schema_key>/schemas/apps/panel/objects/position</schema_key>
--      <value>
--        <int>2</int>
--      </value>
--    </entry>
--    <entry>
--      <key>objects/terminal_launcher/panel_right_stick</key>
--      <schema_key>/schemas/apps/panel/objects/panel_right_stick</schema_key>
--      <value>
--        <bool>false</bool>
--      </value>
--    </entry>
--    <entry>
--      <key>objects/terminal_launcher/locked</key>
--      <schema_key>/schemas/apps/panel/objects/locked</schema_key>
--      <value>
--        <bool>true</bool>
--      </value>
--    </entry>
--    <entry>
--      <key>objects/terminal_launcher/launcher_location</key>
--      <schema_key>/schemas/apps/panel/objects/launcher_location</schema_key>
--      <value>
--        <string>@DATADIR@/applications/gnome-terminal.desktop</string>
--      </value>
--    </entry>
--
--    <entry><key>objects/terminal_launcher/bonobo_iid</key><schema_key>/schemas/apps/panel/objects/bonobo_iid</schema_key></entry>
--    <entry><key>objects/terminal_launcher/attached_toplevel_id</key><schema_key>/schemas/apps/panel/objects/attached_toplevel_id</schema_key> </entry>
--    <entry><key>objects/terminal_launcher/tooltip</key><schema_key>/schemas/apps/panel/objects/tooltip</schema_key></entry>
--    <entry><key>objects/terminal_launcher/use_custom_icon</key><schema_key>/schemas/apps/panel/objects/use_custom_icon</schema_key></entry>
--    <entry><key>objects/terminal_launcher/custom_icon</key><schema_key>/schemas/apps/panel/objects/custom_icon</schema_key></entry>
--    <entry><key>objects/terminal_launcher/use_menu_path</key><schema_key>/schemas/apps/panel/objects/use_menu_path</schema_key></entry>
--    <entry><key>objects/terminal_launcher/menu_path</key><schema_key>/schemas/apps/panel/objects/menu_path</schema_key></entry>
--    <entry><key>objects/terminal_launcher/action_type</key><schema_key>/schemas/apps/panel/objects/action_type</schema_key></entry>
--
-   <!-- Window Menu Applet -->
-     <entry>
diff --git a/gnome-panel-pt_BR.patch b/gnome-panel-pt_BR.patch
deleted file mode 100644 (file)
index 1e96064..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- gnome-panel-2.0.0/po/pt_BR.po.wiget        Wed Jun 12 17:31:36 2002
-+++ gnome-panel-2.0.0/po/pt_BR.po      Wed Jun 12 17:33:09 2002
-@@ -703,7 +703,7 @@
- #: applets/gen_util/mailcheck.schemas.in.h:21
- msgid "This is how we check the mail, check the mail, check the mail..."
- msgstr ""
--"É assim que nós verficamos o correio, verficamos o correio,< verficamos o "
-+"É assim que nós verficamos o correio, verficamos o correio, verficamos o "
- "correio..."
- #: applets/gen_util/mailcheck.schemas.in.h:22
diff --git a/gnome-panel-top_panel_size.patch b/gnome-panel-top_panel_size.patch
deleted file mode 100644 (file)
index 679391e..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Nuard gnome-panel-2.4.1.orig/gnome-panel/panel-default-setup.entries gnome-panel-2.4.1/gnome-panel/panel-default-setup.entries
---- gnome-panel-2.4.1.orig/gnome-panel/panel-default-setup.entries     2003-07-01 16:29:54.000000000 +0200
-+++ gnome-panel-2.4.1/gnome-panel/panel-default-setup.entries  2003-12-03 02:20:27.254766552 +0100
-@@ -98,7 +101,7 @@
-       <key>size</key>
-       <schema_key>/schemas/apps/panel/toplevels/size</schema_key>
-       <value>
--        <int>32</int>
-+        <int>24</int>
-       </value>
-     </entry>
-   </entrylist>
diff --git a/gnome-panel.spec b/gnome-panel.spec
deleted file mode 100644 (file)
index cb2cec9..0000000
+++ /dev/null
@@ -1,218 +0,0 @@
-#
-# TODO
-# - fix menu-stripe patch
-#
-# Conditional build:
-%bcond_with     menu_stripe    # build with menu-stripe.patch
-#
-Summary:       The core programs for the GNOME GUI desktop environment
-Summary(pl):   Podstawowe programy ¶rodowiska graficznego GNOME
-Name:          gnome-panel
-Version:       2.10.1
-Release:       3
-License:       LGPL
-Group:         X11/Applications
-Source0:       http://ftp.gnome.org/pub/gnome/sources/gnome-panel/2.10/%{name}-%{version}.tar.bz2
-# Source0-md5: a2719f5c79a9e48bca086f08a77a6889
-Source1:       pld-desktop-stripe.png
-# Source1-md5: 4b8b299a8aa7b95a606e7c4d8debd60c
-Patch0:                %{name}-no_launchers_on_panel.patch
-Patch1:                %{name}-finalize-memleak.patch
-%{?with_menu_stripe:Patch2:    %{name}-menu-stripe.patch}
-Patch3:                %{name}-notification_area_applet.patch
-Patch4:                %{name}-no_mixer_applet.patch
-URL:           http://www.gnome.org/
-BuildRequires: GConf2-devel >= 2.10.0
-BuildRequires: ORBit2-devel >= 1:2.12.1
-BuildRequires: autoconf
-BuildRequires: automake
-BuildRequires: evolution-data-server-devel >= 1.2.0
-BuildRequires: gnome-common >= 2.8.0-2
-BuildRequires: gnome-desktop-devel >= 2.10.0-2
-BuildRequires: gnome-menus-devel >= 2.10.0
-BuildRequires: gnome-vfs2-devel >= 2.10.0-2
-BuildRequires: gtk+2-devel >= 2:2.6.2
-BuildRequires: gtk-doc >= 1.1
-BuildRequires: intltool >= 0.31
-BuildRequires: libart_lgpl-devel >= 2.3.15
-BuildRequires: libglade2-devel >= 1:2.5.0
-BuildRequires: libgnomeui-devel >= 2.10.0-2
-BuildRequires: libtool
-BuildRequires: libwnck-devel >= 2.10.0
-BuildRequires: pango-devel >= 1:1.8.0
-BuildRequires: perl-base
-BuildRequires: pkgconfig >= 1:0.15.0
-BuildRequires: rpm-build >= 4.1-10
-BuildRequires: rpmbuild(macros) >= 1.197
-BuildRequires: scrollkeeper >= 0.3.11
-BuildConflicts:        GConf-devel < 1.0.9-7
-Requires(post,postun): /sbin/ldconfig
-Requires(post,preun):  GConf2 >= 2.10.0
-Requires(post,postun): scrollkeeper
-Requires:      gnome-desktop >= 2.10.0-2
-Requires:      gnome-icon-theme >= 2.10.0
-Requires:      libgnomeui >= 2.10.0-2
-Requires:      librsvg >= 1:2.9.5
-Requires:      xdg-menus
-BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
-
-%description
-GNOME (GNU Network Object Model Environment) is a user-friendly set of
-applications and desktop tools to be used in conjunction with a window
-manager for the X Window System. GNOME is similar in purpose and scope
-to CDE and KDE, but GNOME is based completely on free software.
-
-The gnome-panel packages provides the GNOME panel, menus and some
-basic applets for the panel.
-
-%description -l pl
-GNOME (GNU Network Object Model Environment) to zestaw przyjaznych dla
-u¿ytkownika aplikacji i narzêdzi do u¿ywania w po³±czeniu z zarz±dc±
-okien pod X. GNOME ma podobny cel jak CDE i KDE, ale bazuje ca³kowicie
-na wolnym oprogramowaniu.
-
-Ten pakiet dostarcza panel GNOME2, menu oraz podstawowe aplety dla
-panelu GNOME2.
-
-%package devel
-Summary:       GNOME panel includes, and more
-Summary(pl):   Pliki nag³ówkowe biblioteki panelu GNOME
-Group:         X11/Development/Libraries
-Requires:      %{name} = %{version}-%{release}
-Requires:      gtk-doc-common
-Requires:      libgnomeui-devel >= 2.10.0-2
-
-%description devel
-Panel header files for creating GNOME panels.
-
-%description devel -l pl
-Pliki nag³ówkowe bibliotek panelu GNOME.
-
-%package static
-Summary:       GNOME panel static libraries
-Summary(pl):   Statyczne biblioteki panelu GNOME
-Group:         X11/Development/Libraries
-Requires:      %{name}-devel = %{version}-%{release}
-
-%description static
-Panel static libraries.
-
-%description static -l pl
-Statyczne biblioteki panelu GNOME.
-
-%prep
-%setup -q
-%patch0 -p1
-%patch1 -p1
-%{?with_menu_stripe:%patch2 -p1}
-%patch3 -p1
-%patch4 -p1
-
-%build
-cp /usr/share/gnome-common/data/omf.make .
-%{__intltoolize}
-%{__libtoolize}
-%{__glib_gettextize}
-%{__aclocal}
-%{__autoheader}
-%{__autoconf}
-%{__automake}
-%configure \
-       --enable-gtk-doc \
-       --with-html-dir=%{_gtkdocdir} \
-       --enable-eds \
-       --disable-schemas-install
-%{__make}
-
-%install
-rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT{%{_pixmapsdir},%{_datadir}/%{name}}
-
-%{__make} install \
-       DESTDIR=$RPM_BUILD_ROOT \
-       GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
-
-install %{name}/panel-default-setup.entries $RPM_BUILD_ROOT%{_datadir}/%{name}
-
-install %{SOURCE1} $RPM_BUILD_ROOT%{_pixmapsdir}
-
-mv ChangeLog main-ChangeLog
-find . -name ChangeLog |awk '{src=$0; dst=$0;sub("^./","",dst);gsub("/","-",dst); print "cp " src " " dst}'|sh
-
-rm -r $RPM_BUILD_ROOT%{_datadir}/locale/no
-
-%find_lang %{name} --with-gnome --all-name
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%post
-/sbin/ldconfig
-%scrollkeeper_update_post
-%gconf_schema_install clock.schemas
-%gconf_schema_install fish.schemas
-%gconf_schema_install panel-compatibility.schemas
-%gconf_schema_install panel-general.schemas
-%gconf_schema_install panel-global.schemas
-%gconf_schema_install panel-object.schemas
-%gconf_schema_install panel-toplevel.schemas
-%gconf_schema_install window-list.schemas
-%gconf_schema_install workspace-switcher.schemas
-%{_bindir}/gconftool-2 --direct \
-       --config-source="`%{_bindir}/gconftool-2 --get-default-source`" \
-       --load %{_datadir}/%{name}/panel-default-setup.entries > /dev/null
-%{_bindir}/gconftool-2 --direct \
-       --config-source="`%{_bindir}/gconftool-2 --get-default-source`" \
-       --load %{_datadir}/%{name}/panel-default-setup.entries /apps/panel/profiles/default > /dev/null
-%banner %{name} -e << EOF
-For full functionality, you need to install
-gnome-utils-screenshot and gnome-utils-search-tool.
-EOF
-
-%preun
-%gconf_schema_uninstall clock.schemas
-%gconf_schema_uninstall fish.schemas
-%gconf_schema_uninstall panel-compatibility.schemas
-%gconf_schema_uninstall panel-general.schemas
-%gconf_schema_uninstall panel-global.schemas
-%gconf_schema_uninstall panel-object.schemas
-%gconf_schema_uninstall panel-toplevel.schemas
-%gconf_schema_uninstall window-list.schemas
-%gconf_schema_uninstall workspace-switcher.schemas
-
-%postun
-/sbin/ldconfig
-%scrollkeeper_update_postun
-
-%files -f %{name}.lang
-%defattr(644,root,root,755)
-%doc AUTHORS NEWS README *ChangeLog
-%config %{_sysconfdir}/gconf/schemas/*
-%attr(755,root,root) %{_bindir}/*
-%attr(755,root,root) %{_libdir}/fish-applet-2
-%attr(755,root,root) %{_libdir}/libpanel-applet*.so.*.*
-%attr(755,root,root) %{_libdir}/clock-applet
-%attr(755,root,root) %{_libdir}/wnck-applet
-%attr(755,root,root) %{_libdir}/notification-area-applet
-%{_libdir}/bonobo/servers/*
-%{_datadir}/gnome/panel
-%{_datadir}/gnome-2.0/ui/*
-%{_datadir}/gnome-panel
-%{_datadir}/gnome-panelrc
-%{_datadir}/idl/gnome-panel-2.0
-%{_pixmapsdir}/*
-%{_iconsdir}/*/*/apps/*.png
-%{_omf_dest_dir}/%{name}
-%{_mandir}/man1/*
-
-%files devel
-%defattr(644,root,root,755)
-%attr(755,root,root) %{_libdir}/libpanel-applet*.so
-%{_libdir}/*.la
-%{_gtkdocdir}/panel-applet
-%{_includedir}/panel-2.0
-%{_pkgconfigdir}/*.pc
-
-%files static
-%defattr(644,root,root,755)
-%{_libdir}/lib*.a
This page took 3.831713 seconds and 4 git commands to generate.