Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@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.7.90-optional-color-wacom.patch gnome-settings-daemon-3.7.90-short-touchpad-timeout.patch
Date: Thu, 28 Mar 2013 17:13:46
Message-Id: 20130328171342.8A7902171E@flycatcher.gentoo.org
1 pacho 13/03/28 17:13:42
2
3 Added:
4 gnome-settings-daemon-3.7.90-optional-color-wacom.patch
5 gnome-settings-daemon-3.7.90-short-touchpad-timeout.patch
6 Log:
7 Version bump for Gnome 3.8
8
9 (Portage version: 2.1.11.58/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.1 gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.7.90-optional-color-wacom.patch
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.7.90-optional-color-wacom.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.7.90-optional-color-wacom.patch?rev=1.1&content-type=text/plain
16
17 Index: gnome-settings-daemon-3.7.90-optional-color-wacom.patch
18 ===================================================================
19 From 640337bdf28df00583d142413f5e58065d6016ef Mon Sep 17 00:00:00 2001
20 From: Sobhan Mohammadpour <sobhanmohammadpour1@×××××.fr>
21 Date: Mon, 25 Feb 2013 17:35:35 +0330
22 Subject: [PATCH] gnome-settings-daemon-3.7.90-optional-color-wacom
23
24 ---
25 configure | 46 +++++++++++++++++++++++++++++++++++++++++++++-
26 configure.ac | 29 ++++++++++++++++++++++++++---
27 plugins/Makefile.am | 7 ++++++-
28 3 files changed, 77 insertions(+), 5 deletions(-)
29
30 diff --git a/configure b/configure
31 index 65296f5..6927d31 100755
32 --- a/configure
33 +++ b/configure
34 @@ -661,6 +661,8 @@ HAVE_WACOM_FALSE
35 HAVE_WACOM_TRUE
36 WACOM_LIBS
37 WACOM_CFLAGS
38 +WITH_COLOR_FALSE
39 +WITH_COLOR_TRUE
40 COLOR_LIBS
41 COLOR_CFLAGS
42 BACKLIGHT_HELPER_LIBS
43 @@ -911,6 +913,8 @@ enable_iso_c
44 enable_schemas_compile
45 enable_gudev
46 enable_ibus
47 +enable_color
48 +enable_wacom
49 enable_packagekit
50 enable_smartcard_support
51 with_nssdb
52 @@ -1626,6 +1630,8 @@ Optional Features:
53 --disable-gudev Disable GUdev support (not optional on Linux
54 platforms)
55 --disable-ibus Disable IBus support
56 + --disable-color turn off color plugin
57 + --disable-wacom turn off wacom plugin
58 --disable-packagekit turn off PackageKit support
59 --disable-smartcard-support
60 turn off smartcard support
61 @@ -19655,6 +19661,14 @@ fi
62 fi
63
64
65 +# Check whether --enable-color was given.
66 +if test "${enable_color+set}" = set; then :
67 + enableval=$enable_color; with_color=$enableval
68 +else
69 + with_color=yes
70 +fi
71 +
72 +if test x$with_color = xyes; then
73
74 pkg_failed=no
75 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for COLOR" >&5
76 @@ -19747,6 +19761,21 @@ $as_echo "yes" >&6; }
77
78 fi
79
80 +$as_echo "#define HAVE_COLOR 1" >>confdefs.h
81 +
82 +fi
83 + if test "x$with_color" = "xyes"; then
84 + WITH_COLOR_TRUE=
85 + WITH_COLOR_FALSE='#'
86 +else
87 + WITH_COLOR_TRUE='#'
88 + WITH_COLOR_FALSE=
89 +fi
90 +
91 +
92 +
93 +
94 +
95
96 case $host_os in
97 linux*)
98 @@ -19754,6 +19783,13 @@ case $host_os in
99 have_wacom=no
100 else
101 if test x$enable_gudev != xno; then
102 + # Check whether --enable-wacom was given.
103 +if test "${enable_wacom+set}" = set; then :
104 + enableval=$enable_wacom; with_wacom=$enableval
105 +else
106 + with_wacom=no
107 +fi
108 + if test x$with_wacom = xyes; then
109
110 pkg_failed=no
111 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for WACOM" >&5
112 @@ -19845,10 +19881,14 @@ else
113 $as_echo "yes" >&6; }
114
115 fi
116 + have_wacom=yes
117 + fi
118 +
119 +
120 else
121 as_fn_error $? "GUdev is necessary to compile Wacom support" "$LINENO" 5
122 fi
123 - have_wacom=yes
124 +
125 fi
126 ;;
127 *)
128 @@ -20594,6 +20634,10 @@ if test -z "${HAVE_INTROSPECTION_TRUE}" && test -z "${HAVE_INTROSPECTION_FALSE}"
129 as_fn_error $? "conditional \"HAVE_INTROSPECTION\" was never defined.
130 Usually this means the macro was only invoked conditionally." "$LINENO" 5
131 fi
132 +if test -z "${WITH_COLOR_TRUE}" && test -z "${WITH_COLOR_FALSE}"; then
133 + as_fn_error $? "conditional \"WITH_COLOR\" was never defined.
134 +Usually this means the macro was only invoked conditionally." "$LINENO" 5
135 +fi
136 if test -z "${HAVE_WACOM_TRUE}" && test -z "${HAVE_WACOM_FALSE}"; then
137 as_fn_error $? "conditional \"HAVE_WACOM\" was never defined.
138 Usually this means the macro was only invoked conditionally." "$LINENO" 5
139 diff --git a/configure.ac b/configure.ac
140 index 49035f3..4aa70b6 100644
141 --- a/configure.ac
142 +++ b/configure.ac
143 @@ -241,7 +241,20 @@ dnl ---------------------------------------------------------------------------
144 dnl - color
145 dnl ---------------------------------------------------------------------------
146
147 -PKG_CHECK_MODULES(COLOR, [colord >= 0.1.9 gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION libcanberra-gtk3])
148 +AC_ARG_ENABLE([color],
149 + AS_HELP_STRING([--disable-color],
150 + [turn off color plugin]),
151 + [with_color=$enableval],
152 + [with_color=yes]) dnl Default value
153 +
154 +if test x$with_color = xyes; then
155 + PKG_CHECK_MODULES(COLOR, [colord >= 0.1.9 gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION libcanberra-gtk3])
156 + AC_DEFINE(HAVE_COLOR, 1, [Define if color plugin is enabled])
157 +fi
158 +AM_CONDITIONAL(WITH_COLOR, test "x$with_color" = "xyes")
159 +
160 +AC_SUBST(COLOR_CFLAGS)
161 +AC_SUBST(COLOR_LIBS)
162
163 dnl ---------------------------------------------------------------------------
164 dnl - wacom (disabled for s390/s390x and non Linux platforms)
165 @@ -253,11 +266,21 @@ case $host_os in
166 have_wacom=no
167 else
168 if test x$enable_gudev != xno; then
169 - PKG_CHECK_MODULES(WACOM, [libwacom >= $LIBWACOM_REQUIRED_VERSION x11 xi xtst gudev-1.0 gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION xorg-wacom librsvg-2.0 >= $LIBRSVG_REQUIRED_VERSION])
170 + AC_ARG_ENABLE([wacom],
171 + AS_HELP_STRING([--disable-wacom],
172 + [turn off wacom plugin]),
173 + [with_wacom=$enableval],
174 + [with_wacom=no]) dnl Default value
175 + if test x$with_wacom = xyes; then
176 + PKG_CHECK_MODULES(WACOM, [libwacom >= $LIBWACOM_REQUIRED_VERSION x11 xi xtst gudev-1.0 gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION xorg-wacom librsvg-2.0 >= $LIBRSVG_REQUIRED_VERSION])
177 + have_wacom=yes
178 + fi
179 + AC_SUBST(WACOM_CFLAGS)
180 + AC_SUBST(WACOM_LIBS)
181 else
182 AC_MSG_ERROR([GUdev is necessary to compile Wacom support])
183 fi
184 - have_wacom=yes
185 +
186 fi
187 ;;
188 *)
189 diff --git a/plugins/Makefile.am b/plugins/Makefile.am
190 index b3aed9e..a4cb188 100644
191 --- a/plugins/Makefile.am
192 +++ b/plugins/Makefile.am
193 @@ -4,7 +4,6 @@ enabled_plugins = \
194 a11y-keyboard \
195 a11y-settings \
196 clipboard \
197 - color \
198 cursor \
199 dummy \
200 power \
201 @@ -21,6 +20,12 @@ enabled_plugins = \
202
203 disabled_plugins = $(NULL)
204
205 +if WITH_COLOR
206 +enabled_plugins += color
207 +else
208 +disabled_plugins += color
209 +endif
210 +
211 if HAVE_PACKAGEKIT
212 enabled_plugins += updates
213 else
214 --
215 1.8.1.2
216
217
218
219
220 1.1 gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.7.90-short-touchpad-timeout.patch
221
222 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.7.90-short-touchpad-timeout.patch?rev=1.1&view=markup
223 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-settings-daemon/files/gnome-settings-daemon-3.7.90-short-touchpad-timeout.patch?rev=1.1&content-type=text/plain
224
225 Index: gnome-settings-daemon-3.7.90-short-touchpad-timeout.patch
226 ===================================================================
227 From bc0f7c1da87b17839ebf71dc102c19b7d7b6c65a Mon Sep 17 00:00:00 2001
228 From: Sobhan Mohammadpour <sobhanmohammadpour1@×××××.fr>
229 Date: Mon, 25 Feb 2013 17:24:25 +0330
230 Subject: [PATCH] gnome-settings-daemon-3.7.90-short-touchpad-timeout
231
232 ---
233 plugins/mouse/gsd-mouse-manager.c | 2 +-
234 1 file changed, 1 insertion(+), 1 deletion(-)
235
236 diff --git a/plugins/mouse/gsd-mouse-manager.c b/plugins/mouse/gsd-mouse-manager.c
237 index a62800a..e7d39e1 100644
238 --- a/plugins/mouse/gsd-mouse-manager.c
239 +++ b/plugins/mouse/gsd-mouse-manager.c
240 @@ -583,7 +583,7 @@ set_disable_w_typing (GsdMouseManager *manager, gboolean state)
241
242 g_ptr_array_add (args, "syndaemon");
243 g_ptr_array_add (args, "-i");
244 - g_ptr_array_add (args, "1.0");
245 + g_ptr_array_add (args, "0.5");
246 g_ptr_array_add (args, "-t");
247 g_ptr_array_add (args, "-K");
248 g_ptr_array_add (args, "-R");
249 --
250 1.8.1.2