diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-07-27 00:03:27 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-07-27 00:03:27 +0000 |
commit | 5d0a50a391ccfd979c3cfe87e96eb3638c2f20b5 (patch) | |
tree | 598e15f10a5e7f47f2f16fad64863dacc5251e7d /gnome-base/gnome-control-center/files | |
parent | Version (diff) | |
download | gentoo-2-5d0a50a391ccfd979c3cfe87e96eb3638c2f20b5.tar.gz gentoo-2-5d0a50a391ccfd979c3cfe87e96eb3638c2f20b5.tar.bz2 gentoo-2-5d0a50a391ccfd979c3cfe87e96eb3638c2f20b5.zip |
Version bump. Add a 2.24 revision support new gnome-desktop API, bug #269383
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'gnome-base/gnome-control-center/files')
2 files changed, 44 insertions, 0 deletions
diff --git a/gnome-base/gnome-control-center/files/gnome-control-center-2.24.0.1-gnome-desktop-api.patch b/gnome-base/gnome-control-center/files/gnome-control-center-2.24.0.1-gnome-desktop-api.patch new file mode 100644 index 000000000000..af58d0d65703 --- /dev/null +++ b/gnome-base/gnome-control-center/files/gnome-control-center-2.24.0.1-gnome-desktop-api.patch @@ -0,0 +1,31 @@ +Index: gnome-control-center-2.24.0.1/capplets/display/xrandr-capplet.c +=================================================================== +--- gnome-control-center-2.24.0.1.orig/capplets/display/xrandr-capplet.c 2009-04-16 10:36:37.412850259 +0200 ++++ gnome-control-center-2.24.0.1/capplets/display/xrandr-capplet.c 2009-04-16 10:37:37.653350312 +0200 +@@ -435,7 +435,7 @@ rebuild_rotation_combo (App *app) + + app->current_output->rotation = info->rotation; + +- if (gnome_rr_config_applicable (app->current_configuration, app->screen)) ++ if (gnome_rr_config_applicable (app->current_configuration, app->screen, NULL)) + { + add_key (app->rotation_combo, info->name, 0, 0, 0, info->rotation); + +@@ -1689,7 +1689,7 @@ on_detect_displays (GtkWidget *widget, g + { + App *app = data; + +- gnome_rr_screen_refresh (app->screen); ++ gnome_rr_screen_refresh (app->screen, NULL); + } + + #define SHOW_ICON_KEY "/apps/gnome_settings_daemon/xrandr/show_notification_icon" +@@ -1723,7 +1723,7 @@ run_application (App *app) + } + + app->screen = gnome_rr_screen_new (gdk_screen_get_default (), +- on_screen_changed, app); ++ on_screen_changed, app, NULL); + if (!app->screen) + { + g_error ("Could not get screen info"); diff --git a/gnome-base/gnome-control-center/files/gnome-control-center-2.24.0.1-libgnomeui.patch b/gnome-base/gnome-control-center/files/gnome-control-center-2.24.0.1-libgnomeui.patch new file mode 100644 index 000000000000..58c428440935 --- /dev/null +++ b/gnome-base/gnome-control-center/files/gnome-control-center-2.24.0.1-libgnomeui.patch @@ -0,0 +1,13 @@ +Index: gnome-control-center-2.24.0.1/configure.in +=================================================================== +--- gnome-control-center-2.24.0.1.orig/configure.in 2009-04-16 10:31:56.309352617 +0200 ++++ gnome-control-center-2.24.0.1/configure.in 2009-04-16 10:32:14.016853698 +0200 +@@ -98,7 +98,7 @@ PKG_CHECK_MODULES(CAPPLET, $COMMON_MODUL + PKG_CHECK_MODULES(GNOMECC, $COMMON_MODULES libgnome-menu >= 2.10.1 libpanelapplet-2.0) + PKG_CHECK_MODULES(GNOME, libgnomeui-2.0) + PKG_CHECK_MODULES(DBUS, dbus-1 dbus-glib-1) +-PKG_CHECK_MODULES(GNOME_DESKTOP, gnome-desktop-2.0) ++PKG_CHECK_MODULES(GNOME_DESKTOP, gnome-desktop-2.0 libgnomeui-2.0) + PKG_CHECK_MODULES(DEFAULT_APPLICATIONS_CAPPLET, libxml-2.0) + PKG_CHECK_MODULES(METACITY, libmetacity-private >= 2.23.1) + PKG_CHECK_MODULES(SLAB, libslab) |