diff options
Diffstat (limited to 'gnome-base/gnome-settings-daemon/files')
-rw-r--r-- | gnome-base/gnome-settings-daemon/files/0001-Make-colord-optional.patch | 50 | ||||
-rw-r--r-- | gnome-base/gnome-settings-daemon/files/0002-Disable-wacom.patch | 21 |
2 files changed, 33 insertions, 38 deletions
diff --git a/gnome-base/gnome-settings-daemon/files/0001-Make-colord-optional.patch b/gnome-base/gnome-settings-daemon/files/0001-Make-colord-optional.patch index 117b23f9..ce7a15af 100644 --- a/gnome-base/gnome-settings-daemon/files/0001-Make-colord-optional.patch +++ b/gnome-base/gnome-settings-daemon/files/0001-Make-colord-optional.patch @@ -1,12 +1,8 @@ -From 44c502e412fbcb99cea83ef7db7f9093e0637944 Mon Sep 17 00:00:00 2001 -From: Alexandre Rostovtsev <tetromino@gentoo.org> -Date: Thu, 27 Oct 2011 23:30:41 -0400 +From b935fd8c7e0452b96e35712054a86899652bb7a4 Mon Sep 17 00:00:00 2001 +From: Julien Durillon <julien.durillon@gmail.com> +Date: Mon, 23 Jan 2012 15:50:20 +0100 Subject: [PATCH 1/2] Make colord optional -Conflicts: - - configure.ac - plugins/Makefile.am --- configure.ac | 38 ++++++++++++++++++++++++++++++++------ data/Makefile.am | 7 ++++++- @@ -14,10 +10,10 @@ Conflicts: 3 files changed, 44 insertions(+), 8 deletions(-) diff --git a/configure.ac b/configure.ac -index bd5a8ce..a83f1a9 100644 +index a07d422..63f1158 100644 --- a/configure.ac +++ b/configure.ac -@@ -97,6 +97,38 @@ dnl --------------------------------------------------------------------------- +@@ -99,6 +99,38 @@ dnl --------------------------------------------------------------------------- PKG_CHECK_MODULES(GNOME_DESKTOP, gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION) dnl --------------------------------------------------------------------------- @@ -25,18 +21,18 @@ index bd5a8ce..a83f1a9 100644 +dnl --------------------------------------------------------------------------- +build_color=false +AC_ARG_ENABLE(color, -+ AC_HELP_STRING([--disable-color], -+ [turn off color plugin]), -+ [case "${enableval}" in -+ yes) WANT_COLOR=yes ;; -+ no) WANT_COLOR=no ;; -+ *) AC_MSG_ERROR(bad value ${enableval} for --disable-color) ;; -+ esac], -+ [WANT_COLOR=yes]) dnl Default value ++ AC_HELP_STRING([--disable-color], ++ [turn off color plugin]), ++ [case "${enableval}" in ++ yes) WANT_COLOR=yes ;; ++ no) WANT_COLOR=no ;; ++ *) AC_MSG_ERROR(bad value ${enableval} for --disable-color) ;; ++ esac], ++ [WANT_COLOR=yes]) dnl Default value + +if test x$WANT_COLOR = xyes; then -+ PKG_CHECK_MODULES(COLOR, [colord >= 0.1.9 gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION libcanberra-gtk3]) -+ build_color=true ++ PKG_CHECK_MODULES(COLOR, [colord >= 0.1.9 gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION libcanberra-gtk3]) ++ build_color=true +fi +AM_CONDITIONAL(BUILD_COLOR, test "x$build_color" = "xtrue") + @@ -48,15 +44,15 @@ index bd5a8ce..a83f1a9 100644 +dnl --------------------------------------------------------------------------- +PKG_CHECK_MODULES(LIBCANBERRA, libcanberra-gtk3, + [have_libcanberra=true -+ AC_DEFINE(HAVE_LIBCANBERRA, 1, [Define if libcanberra should be used])], -+ [have_libcanberra=false]) ++ AC_DEFINE(HAVE_LIBCANBERRA, 1, [Define if libcanberra should be used)], ++ [have_libcanberra=false]) +AM_CONDITIONAL(HAVE_LIBCANBERRA, test "x$have_libcanberra" = "xtrue") + +dnl --------------------------------------------------------------------------- dnl - Check for LCMS2 dnl --------------------------------------------------------------------------- PKG_CHECK_MODULES(LCMS, lcms2 >= 2.2, have_new_lcms=yes, have_new_lcms=no) -@@ -212,12 +244,6 @@ dnl --------------------------------------------------------------------------- +@@ -196,12 +228,6 @@ dnl --------------------------------------------------------------------------- PKG_CHECK_MODULES(MEDIA_KEYS, [gio-unix-2.0 libpulse >= $PA_REQUIRED_VERSION $GUDEV_PKG libpulse-mainloop-glib >= $PA_REQUIRED_VERSION libcanberra]) dnl --------------------------------------------------------------------------- @@ -70,7 +66,7 @@ index bd5a8ce..a83f1a9 100644 dnl --------------------------------------------------------------------------- diff --git a/data/Makefile.am b/data/Makefile.am -index bab7359..7f21a46 100644 +index 19decc2..cb2c976 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -11,7 +11,6 @@ gsettings_SCHEMAS = \ @@ -95,7 +91,7 @@ index bab7359..7f21a46 100644 gsettings_SCHEMAS += org.gnome.settings-daemon.plugins.updates.gschema.xml else diff --git a/plugins/Makefile.am b/plugins/Makefile.am -index 83d223a..ad88aa9 100644 +index 2b7566a..31fcb74 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -6,7 +6,6 @@ enabled_plugins = \ @@ -104,9 +100,9 @@ index 83d223a..ad88aa9 100644 clipboard \ - color \ cursor \ - datetime \ dummy \ -@@ -23,6 +22,12 @@ enabled_plugins = \ + power \ +@@ -22,6 +21,12 @@ enabled_plugins = \ disabled_plugins = $(NULL) @@ -120,5 +116,5 @@ index 83d223a..ad88aa9 100644 enabled_plugins += updates else -- -1.7.8.163.g9859a.dirty +1.7.9.rc2 diff --git a/gnome-base/gnome-settings-daemon/files/0002-Disable-wacom.patch b/gnome-base/gnome-settings-daemon/files/0002-Disable-wacom.patch index 204c9a54..6ffcf585 100644 --- a/gnome-base/gnome-settings-daemon/files/0002-Disable-wacom.patch +++ b/gnome-base/gnome-settings-daemon/files/0002-Disable-wacom.patch @@ -1,19 +1,18 @@ -From fa78cb1359e50c87e36f2422148120f605185aef Mon Sep 17 00:00:00 2001 -From: Marc-Antoine Perennou <Marc-Antoine@Perennou.com> -Date: Mon, 12 Dec 2011 14:38:16 +0100 -Subject: [PATCH 2/2] Disable wacom +From 9e97002b4c9149c480ce996071cba9c058a7546a Mon Sep 17 00:00:00 2001 +From: Julien Durillon <julien.durillon@gmail.com> +Date: Mon, 23 Jan 2012 15:51:36 +0100 +Subject: [PATCH 2/2] remove wacom support -Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com> --- configure.ac | 6 ------ plugins/Makefile.am | 1 - 2 files changed, 0 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac -index a83f1a9..574d41e 100644 +index 63f1158..d73e5d9 100644 --- a/configure.ac +++ b/configure.ac -@@ -243,12 +243,6 @@ dnl --------------------------------------------------------------------------- +@@ -227,12 +227,6 @@ dnl --------------------------------------------------------------------------- PKG_CHECK_MODULES(MEDIA_KEYS, [gio-unix-2.0 libpulse >= $PA_REQUIRED_VERSION $GUDEV_PKG libpulse-mainloop-glib >= $PA_REQUIRED_VERSION libcanberra]) @@ -21,16 +20,16 @@ index a83f1a9..574d41e 100644 -dnl - wacom -dnl --------------------------------------------------------------------------- - --PKG_CHECK_MODULES(WACOM, [libwacom x11 xi]) +-PKG_CHECK_MODULES(WACOM, [libwacom >= $LIBWACOM_REQUIRED_VERSION x11 xi gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION]) - dnl ============================================== dnl PackageKit section dnl ============================================== diff --git a/plugins/Makefile.am b/plugins/Makefile.am -index ad88aa9..9ce88f7 100644 +index 31fcb74..e40d9b9 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am -@@ -15,7 +15,6 @@ enabled_plugins = \ +@@ -14,7 +14,6 @@ enabled_plugins = \ media-keys \ mouse \ sound \ @@ -39,5 +38,5 @@ index ad88aa9..9ce88f7 100644 xsettings \ $(NULL) -- -1.7.8.163.g9859a.dirty +1.7.9.rc2 |