diff options
Diffstat (limited to 'gnome-extra/gnome-media/files')
-rw-r--r-- | gnome-extra/gnome-media/files/gnome-media-2.31.5-remove-libunique-dep.patch | 61 | ||||
-rw-r--r-- | gnome-extra/gnome-media/files/gnome-media-2.31.5-use-correct-command.patch | 26 |
2 files changed, 87 insertions, 0 deletions
diff --git a/gnome-extra/gnome-media/files/gnome-media-2.31.5-remove-libunique-dep.patch b/gnome-extra/gnome-media/files/gnome-media-2.31.5-remove-libunique-dep.patch new file mode 100644 index 0000000..fafec67 --- /dev/null +++ b/gnome-extra/gnome-media/files/gnome-media-2.31.5-remove-libunique-dep.patch @@ -0,0 +1,61 @@ +Combines the following two commits: + +From faadc51fb554b90cfd07d108262383e1772f279b Mon Sep 17 00:00:00 2001 +From: Matthias Clasen <mclasen@redhat.com> +Date: Wed, 14 Jul 2010 00:47:18 +0000 +Subject: Complete the GTK+ 3 port by using unique-3.0 + +From 7b5a8127cea09779dd172b0b7598d2ad03b2e47b Mon Sep 17 00:00:00 2001 +From: Bastien Nocera <hadess@hadess.net> +Date: Wed, 21 Jul 2010 14:18:59 +0000 +Subject: Remove libunique-3.0 dependency + +And use GApplication instead. +--- +diff --git a/configure.ac b/configure.ac +index 7622885..38b6024 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -115,7 +115,6 @@ if test "x$enable_pulseaudio" != "xno"; then + gio-2.0 + gconf-2.0 >= $GCONF_REQUIRED_VERSION + libcanberra-gtk3 >= $CANBERRA_REQUIRED_VERSION +- unique-1.0 + libxml-2.0 + ) + AC_SUBST(VOLUME_CONTROL_CFLAGS) +diff --git a/gnome-volume-control/src/applet-main.c b/gnome-volume-control/src/applet-main.c +index 9ef569a..2c9cc34 100644 +--- a/gnome-volume-control/src/applet-main.c ++++ b/gnome-volume-control/src/applet-main.c +@@ -29,7 +29,7 @@ + #include <glib/gi18n.h> + #include <glib.h> + #include <gtk/gtk.h> +-#include <unique/uniqueapp.h> ++#include <gio/gio.h> + + #include "gvc-applet.h" + #include "gvc-log.h" +@@ -44,7 +44,7 @@ main (int argc, char **argv) + { + GError *error; + GvcApplet *applet; +- UniqueApp *app = NULL; ++ GApplication *app = NULL; + static GOptionEntry entries[] = { + { "debug", 0, 0, G_OPTION_ARG_NONE, &debug, N_("Enable debugging code"), NULL }, + { "version", 0, 0, G_OPTION_ARG_NONE, &show_version, N_("Version of this application"), NULL }, +@@ -76,8 +76,8 @@ main (int argc, char **argv) + gvc_log_set_debug (debug); + + if (debug == FALSE) { +- app = unique_app_new (GVCA_DBUS_NAME, NULL); +- if (unique_app_is_running (app)) { ++ app = g_application_new (GVCA_DBUS_NAME, argc, argv); ++ if (g_application_is_remote (app)) { + g_warning ("Applet is already running, exiting"); + return 0; + } +-- +cgit v0.8.3.1 diff --git a/gnome-extra/gnome-media/files/gnome-media-2.31.5-use-correct-command.patch b/gnome-extra/gnome-media/files/gnome-media-2.31.5-use-correct-command.patch new file mode 100644 index 0000000..5aa5856 --- /dev/null +++ b/gnome-extra/gnome-media/files/gnome-media-2.31.5-use-correct-command.patch @@ -0,0 +1,26 @@ +From 5e6bd29ef12300e47c6f49716fc57a74298666da Mon Sep 17 00:00:00 2001 +From: Bastien Nocera <hadess@hadess.net> +Date: Wed, 21 Jul 2010 14:45:24 +0100 +Subject: [PATCH] Use correct command for sound preferences + +Using gnome-control-center, not gnome-volume-control +--- + gnome-volume-control/src/gvc-stream-status-icon.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/gnome-volume-control/src/gvc-stream-status-icon.c b/gnome-volume-control/src/gvc-stream-status-icon.c +index 3254a5b..46619aa 100644 +--- a/gnome-volume-control/src/gvc-stream-status-icon.c ++++ b/gnome-volume-control/src/gvc-stream-status-icon.c +@@ -219,7 +219,7 @@ on_menu_activate_open_volume_control (GtkMenuItem *item, + + error = NULL; + gdk_spawn_command_line_on_screen (gtk_widget_get_screen (icon->priv->dock), +- "gnome-volume-control", ++ "gnome-control-center sound", + &error); + + if (error != NULL) { +-- +1.7.1.1 + |