Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/gnome-settings-daemon/files: gnome-settings-daemon-3.5.91-short-touchpad-timeout.patch gnome-settings-daemon-3.5.91-optional-color-wacom.patch
Date: Tue, 25 Dec 2012 21:45:50
Message-Id: 20121225214529.EB83D2171E@flycatcher.gentoo.org
1 eva 12/12/25 21:45:29
2
3 Added:
4 gnome-settings-daemon-3.5.91-short-touchpad-timeout.patch
5 gnome-settings-daemon-3.5.91-optional-color-wacom.patch
6 Log:
7 Version bump for Gnome 3.6. Switch to EAPI=5.
8
9 (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key C6085806)
10
11 Revision Changes Path
12 1.1 gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.5.91-short-touchpad-timeout.patch
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.5.91-short-touchpad-timeout.patch?rev=1.1&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.5.91-short-touchpad-timeout.patch?rev=1.1&content-type=text/plain
16
17 Index: gnome-settings-daemon-3.5.91-short-touchpad-timeout.patch
18 ===================================================================
19 diff --git a/plugins/mouse/gsd-mouse-manager.c b/plugins/mouse/gsd-mouse-manager.c
20 index 80f664a..c9a29fb 100644
21 --- a/plugins/mouse/gsd-mouse-manager.c
22 +++ b/plugins/mouse/gsd-mouse-manager.c
23 @@ -533,7 +533,7 @@ set_disable_w_typing (GsdMouseManager *manager, gboolean state)
24
25 g_ptr_array_add (args, "syndaemon");
26 g_ptr_array_add (args, "-i");
27 - g_ptr_array_add (args, "1.0");
28 + g_ptr_array_add (args, "0.5");
29 g_ptr_array_add (args, "-t");
30 g_ptr_array_add (args, "-K");
31 g_ptr_array_add (args, "-R");
32
33
34
35 1.1 gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.5.91-optional-color-wacom.patch
36
37 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.5.91-optional-color-wacom.patch?rev=1.1&view=markup
38 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.5.91-optional-color-wacom.patch?rev=1.1&content-type=text/plain
39
40 Index: gnome-settings-daemon-3.5.91-optional-color-wacom.patch
41 ===================================================================
42 --- configure.ac
43 +++ configure.ac
44 @@ -240,7 +240,20 @@
45 dnl - color
46 dnl ---------------------------------------------------------------------------
47
48 -PKG_CHECK_MODULES(COLOR, [colord >= 0.1.9 gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION libcanberra-gtk3])
49 +AC_ARG_ENABLE([color],
50 + AS_HELP_STRING([--disable-color],
51 + [turn off color plugin]),
52 + [with_color=$enableval],
53 + [with_color=yes]) dnl Default value
54 +
55 +if test x$with_color = xyes; then
56 + PKG_CHECK_MODULES(COLOR, [colord >= 0.1.9 gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION libcanberra-gtk3])
57 + AC_DEFINE(HAVE_COLOR, 1, [Define if color plugin is enabled])
58 +fi
59 +AM_CONDITIONAL(WITH_COLOR, test "x$with_color" = "xyes")
60 +
61 +AC_SUBST(COLOR_CFLAGS)
62 +AC_SUBST(COLOR_LIBS)
63
64 dnl ---------------------------------------------------------------------------
65 dnl - wacom (disabled for s390/s390x and non Linux platforms)
66 @@ -252,11 +265,22 @@
67 have_wacom=no
68 else
69 if test x$enable_gudev != xno; then
70 - PKG_CHECK_MODULES(WACOM, [libwacom >= $LIBWACOM_REQUIRED_VERSION x11 xi xtst gudev-1.0 gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION xorg-wacom])
71 + AC_ARG_ENABLE([wacom],
72 + AS_HELP_STRING([--disable-wacom],
73 + [turn off wacom plugin]),
74 + [with_wacom=$enableval],
75 + [with_wacom=no]) dnl Default value
76 +
77 + if test x$with_wacom = xyes; then
78 + PKG_CHECK_MODULES(WACOM, [libwacom >= $LIBWACOM_REQUIRED_VERSION x11 xi xtst gudev-1.0 gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION xorg-wacom])
79 + have_wacom=yes
80 + fi
81 +
82 + AC_SUBST(WACOM_CFLAGS)
83 + AC_SUBST(WACOM_LIBS)
84 else
85 AC_MSG_ERROR([GUdev is necessary to compile Wacom support])
86 fi
87 - have_wacom=yes
88 fi
89 ;;
90 *)
91 --- data/Makefile.am
92 +++ data/Makefile.am
93 @@ -11,7 +11,6 @@
94 org.gnome.settings-daemon.plugins.gschema.xml \
95 org.gnome.settings-daemon.plugins.keyboard.gschema.xml \
96 org.gnome.settings-daemon.plugins.power.gschema.xml \
97 - org.gnome.settings-daemon.plugins.color.gschema.xml \
98 org.gnome.settings-daemon.plugins.media-keys.gschema.xml \
99 org.gnome.settings-daemon.plugins.xsettings.gschema.xml \
100 org.gnome.settings-daemon.plugins.housekeeping.gschema.xml \
101 @@ -20,6 +19,12 @@
102
103 all_schemas = $(gsettings_SCHEMAS)
104
105 +if WITH_COLOR
106 +gsettings_SCHEMAS += org.gnome.settings-daemon.plugins.color.gschema.xml
107 +else
108 +all_schemas += org.gnome.settings-daemon.plugins.color.gschema.xml
109 +endif
110 +
111 if HAVE_PACKAGEKIT
112 gsettings_SCHEMAS += org.gnome.settings-daemon.plugins.updates.gschema.xml
113 else
114 --- plugins/Makefile.am
115 +++ plugins/Makefile.am
116 @@ -6,7 +6,6 @@
117 automount \
118 background \
119 clipboard \
120 - color \
121 cursor \
122 dummy \
123 power \
124 @@ -21,6 +20,12 @@
125
126 disabled_plugins = $(NULL)
127
128 +if WITH_COLOR
129 +enabled_plugins += color
130 +else
131 +disabled_plugins += color
132 +endif
133 +
134 if HAVE_PACKAGEKIT
135 enabled_plugins += updates
136 else