Merge lp:~indicator-applet-developers/indicator-applet/ubuntu into lp:~ubuntu-desktop/indicator-applet/ubuntu

Proposed by Ted Gould
Status: Merged
Merged at revision: 282
Proposed branch: lp:~indicator-applet-developers/indicator-applet/ubuntu
Merge into: lp:~ubuntu-desktop/indicator-applet/ubuntu
Diff against target: 1371 lines (+311/-427)
13 files modified
AUTHORS (+3/-0)
ChangeLog (+39/-0)
Makefile.in (+0/-3)
aclocal.m4 (+2/-47)
config.guess (+59/-90)
config.sub (+34/-13)
configure (+43/-145)
configure.ac (+2/-2)
data/Makefile.in (+96/-107)
debian/changelog (+17/-0)
debian/control (+1/-1)
src/Makefile.in (+0/-3)
src/applet-main.c (+15/-16)
To merge this branch: bzr merge lp:~indicator-applet-developers/indicator-applet/ubuntu
Reviewer Review Type Date Requested Status
Ken VanDine Pending
Review via email: mp+47736@code.launchpad.net

Description of the change

0.4.7

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'AUTHORS'
2--- AUTHORS 2010-09-22 15:45:20 +0000
3+++ AUTHORS 2011-01-27 21:55:19 +0000
4@@ -4,10 +4,13 @@
5 Cody Russell
6 Eitan Isaacson
7 Kevin Turner
8+ Marco Trevisan (Treviño)
9 MarkieB
10 Martin Pitt
11+ Michael Terry
12 Neil Jagdish Patel
13 Robert Carr
14 Roman Vorobets
15+ Sebastien Bacher
16 Ted Gould
17 Tom Haddon
18
19=== modified file 'ChangeLog'
20--- ChangeLog 2010-09-22 15:48:13 +0000
21+++ ChangeLog 2011-01-27 21:55:19 +0000
22@@ -1,5 +1,44 @@
23 # Generated by Makefile. Do not edit.
24
25+2011-01-27 Ted Gould <ted@gould.cx>
26+
27+ 0.4.7
28+
29+2011-01-27 Ted Gould <ted@gould.cx>
30+
31+ Require libindicator with new signal
32+
33+2011-01-27 Ted Gould <ted@gould.cx>
34+
35+ Port to use new entry based scroll event.
36+
37+2011-01-27 Marco Trevisan (Treviño) <mail@3v1n0.net>
38+
39+ Added support to "scroll-entry" signal
40+
41+ Now indicator-applet emit a scroll-entry signal for each
42+ scroll over an IndicatorObjectEntry
43+
44+2011-01-06 Ted Gould <ted@gould.cx>
45+
46+ Port to the non-Bonobo panel
47+
48+2010-11-10 Michael Terry <mike@mterry.name>
49+
50+ port to libpanel-applet-3
51+
52+2010-10-08 Ted Gould <ted@gould.cx>
53+
54+ Removing unused GConf support
55+
56+2010-10-07 Sebastien Bacher <seb128@ubuntu.com>
57+
58+ don't use gconf in the build system since the source doesn't use it
59+
60+2010-09-22 Ted Gould <ted@gould.cx>
61+
62+ 0.4.6
63+
64 2010-09-21 Ted Gould <ted@gould.cx>
65
66 Signaling the activate on the top level items.
67
68=== modified file 'Makefile.in'
69--- Makefile.in 2010-09-22 15:48:13 +0000
70+++ Makefile.in 2011-01-27 21:55:19 +0000
71@@ -139,9 +139,6 @@
72 EXEEXT = @EXEEXT@
73 EXPANDED_SYSCONFDIR = @EXPANDED_SYSCONFDIR@
74 FGREP = @FGREP@
75-GCONFTOOL = @GCONFTOOL@
76-GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
77-GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@
78 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
79 GMOFILES = @GMOFILES@
80 GMSGFMT = @GMSGFMT@
81
82=== modified file 'aclocal.m4'
83--- aclocal.m4 2010-08-26 19:29:10 +0000
84+++ aclocal.m4 2011-01-27 21:55:19 +0000
85@@ -19,51 +19,6 @@
86 If you have problems, you may need to regenerate the build system entirely.
87 To do so, use the procedure documented by the package, typically `autoreconf'.])])
88
89-dnl AM_GCONF_SOURCE_2
90-dnl Defines GCONF_SCHEMA_CONFIG_SOURCE which is where you should install schemas
91-dnl (i.e. pass to gconftool-2
92-dnl Defines GCONF_SCHEMA_FILE_DIR which is a filesystem directory where
93-dnl you should install foo.schemas files
94-dnl
95-
96-AC_DEFUN([AM_GCONF_SOURCE_2],
97-[
98- if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then
99- GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source`
100- else
101- GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE
102- fi
103-
104- AC_ARG_WITH([gconf-source],
105- AC_HELP_STRING([--with-gconf-source=sourceaddress],
106- [Config database for installing schema files.]),
107- [GCONF_SCHEMA_CONFIG_SOURCE="$withval"],)
108-
109- AC_SUBST(GCONF_SCHEMA_CONFIG_SOURCE)
110- AC_MSG_RESULT([Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation])
111-
112- if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then
113- GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas'
114- fi
115-
116- AC_ARG_WITH([gconf-schema-file-dir],
117- AC_HELP_STRING([--with-gconf-schema-file-dir=dir],
118- [Directory for installing schema files.]),
119- [GCONF_SCHEMA_FILE_DIR="$withval"],)
120-
121- AC_SUBST(GCONF_SCHEMA_FILE_DIR)
122- AC_MSG_RESULT([Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files])
123-
124- AC_ARG_ENABLE(schemas-install,
125- AC_HELP_STRING([--disable-schemas-install],
126- [Disable the schemas installation]),
127- [case ${enableval} in
128- yes|no) ;;
129- *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-install]) ;;
130- esac])
131- AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no])
132-])
133-
134 # Copyright (C) 1995-2002 Free Software Foundation, Inc.
135 # Copyright (C) 2001-2003,2004 Red Hat, Inc.
136 #
137@@ -8827,7 +8782,7 @@
138 Consider adjusting the PKG_CONFIG_PATH environment variable if you
139 installed software in a non-standard prefix.
140
141-_PKG_TEXT])dnl
142+_PKG_TEXT])[]dnl
143 ])
144 elif test $pkg_failed = untried; then
145 AC_MSG_RESULT([no])
146@@ -8838,7 +8793,7 @@
147
148 _PKG_TEXT
149
150-To get pkg-config, see <http://pkg-config.freedesktop.org/>.])dnl
151+To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
152 ])
153 else
154 $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
155
156=== modified file 'config.guess'
157--- config.guess 2010-04-01 14:45:23 +0000
158+++ config.guess 2011-01-27 21:55:19 +0000
159@@ -1,10 +1,10 @@
160 #! /bin/sh
161 # Attempt to guess a canonical system name.
162 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
163-# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
164+# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
165 # Free Software Foundation, Inc.
166
167-timestamp='2009-06-10'
168+timestamp='2009-12-30'
169
170 # This file is free software; you can redistribute it and/or modify it
171 # under the terms of the GNU General Public License as published by
172@@ -27,16 +27,16 @@
173 # the same distribution terms that you use for the rest of that program.
174
175
176-# Originally written by Per Bothner <per@bothner.com>.
177-# Please send patches to <config-patches@gnu.org>. Submit a context
178-# diff and a properly formatted ChangeLog entry.
179+# Originally written by Per Bothner. Please send patches (context
180+# diff format) to <config-patches@gnu.org> and include a ChangeLog
181+# entry.
182 #
183 # This script attempts to guess a canonical system name similar to
184 # config.sub. If it succeeds, it prints the system name on stdout, and
185 # exits with 0. Otherwise, it exits with 1.
186 #
187-# The plan is that this can be called by configure scripts if you
188-# don't specify an explicit build system type.
189+# You can get the latest version of this script from:
190+# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
191
192 me=`echo "$0" | sed -e 's,.*/,,'`
193
194@@ -56,8 +56,9 @@
195 GNU config.guess ($timestamp)
196
197 Originally written by Per Bothner.
198-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
199-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
200+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
201+2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
202+Software Foundation, Inc.
203
204 This is free software; see the source for copying conditions. There is NO
205 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
206@@ -333,6 +334,9 @@
207 sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
208 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
209 exit ;;
210+ i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
211+ echo i386-pc-auroraux${UNAME_RELEASE}
212+ exit ;;
213 i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
214 eval $set_cc_for_build
215 SUN_ARCH="i386"
216@@ -807,12 +811,12 @@
217 i*:PW*:*)
218 echo ${UNAME_MACHINE}-pc-pw32
219 exit ;;
220- *:Interix*:[3456]*)
221+ *:Interix*:*)
222 case ${UNAME_MACHINE} in
223 x86)
224 echo i586-pc-interix${UNAME_RELEASE}
225 exit ;;
226- EM64T | authenticamd | genuineintel)
227+ authenticamd | genuineintel | EM64T)
228 echo x86_64-unknown-interix${UNAME_RELEASE}
229 exit ;;
230 IA64)
231@@ -854,6 +858,20 @@
232 i*86:Minix:*:*)
233 echo ${UNAME_MACHINE}-pc-minix
234 exit ;;
235+ alpha:Linux:*:*)
236+ case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
237+ EV5) UNAME_MACHINE=alphaev5 ;;
238+ EV56) UNAME_MACHINE=alphaev56 ;;
239+ PCA56) UNAME_MACHINE=alphapca56 ;;
240+ PCA57) UNAME_MACHINE=alphapca56 ;;
241+ EV6) UNAME_MACHINE=alphaev6 ;;
242+ EV67) UNAME_MACHINE=alphaev67 ;;
243+ EV68*) UNAME_MACHINE=alphaev68 ;;
244+ esac
245+ objdump --private-headers /bin/sh | grep -q ld.so.1
246+ if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
247+ echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
248+ exit ;;
249 arm*:Linux:*:*)
250 eval $set_cc_for_build
251 if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
252@@ -876,6 +894,17 @@
253 frv:Linux:*:*)
254 echo frv-unknown-linux-gnu
255 exit ;;
256+ i*86:Linux:*:*)
257+ LIBC=gnu
258+ eval $set_cc_for_build
259+ sed 's/^ //' << EOF >$dummy.c
260+ #ifdef __dietlibc__
261+ LIBC=dietlibc
262+ #endif
263+EOF
264+ eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
265+ echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
266+ exit ;;
267 ia64:Linux:*:*)
268 echo ${UNAME_MACHINE}-unknown-linux-gnu
269 exit ;;
270@@ -901,39 +930,18 @@
271 #endif
272 #endif
273 EOF
274- eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
275- /^CPU/{
276- s: ::g
277- p
278- }'`"
279+ eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
280 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
281 ;;
282 or32:Linux:*:*)
283 echo or32-unknown-linux-gnu
284 exit ;;
285- ppc:Linux:*:*)
286- echo powerpc-unknown-linux-gnu
287- exit ;;
288- ppc64:Linux:*:*)
289- echo powerpc64-unknown-linux-gnu
290- exit ;;
291- alpha:Linux:*:*)
292- case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
293- EV5) UNAME_MACHINE=alphaev5 ;;
294- EV56) UNAME_MACHINE=alphaev56 ;;
295- PCA56) UNAME_MACHINE=alphapca56 ;;
296- PCA57) UNAME_MACHINE=alphapca56 ;;
297- EV6) UNAME_MACHINE=alphaev6 ;;
298- EV67) UNAME_MACHINE=alphaev67 ;;
299- EV68*) UNAME_MACHINE=alphaev68 ;;
300- esac
301- objdump --private-headers /bin/sh | grep -q ld.so.1
302- if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
303- echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
304- exit ;;
305 padre:Linux:*:*)
306 echo sparc-unknown-linux-gnu
307 exit ;;
308+ parisc64:Linux:*:* | hppa64:Linux:*:*)
309+ echo hppa64-unknown-linux-gnu
310+ exit ;;
311 parisc:Linux:*:* | hppa:Linux:*:*)
312 # Look for CPU level
313 case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
314@@ -942,8 +950,11 @@
315 *) echo hppa-unknown-linux-gnu ;;
316 esac
317 exit ;;
318- parisc64:Linux:*:* | hppa64:Linux:*:*)
319- echo hppa64-unknown-linux-gnu
320+ ppc64:Linux:*:*)
321+ echo powerpc64-unknown-linux-gnu
322+ exit ;;
323+ ppc:Linux:*:*)
324+ echo powerpc-unknown-linux-gnu
325 exit ;;
326 s390:Linux:*:* | s390x:Linux:*:*)
327 echo ${UNAME_MACHINE}-ibm-linux
328@@ -966,58 +977,6 @@
329 xtensa*:Linux:*:*)
330 echo ${UNAME_MACHINE}-unknown-linux-gnu
331 exit ;;
332- i*86:Linux:*:*)
333- # The BFD linker knows what the default object file format is, so
334- # first see if it will tell us. cd to the root directory to prevent
335- # problems with other programs or directories called `ld' in the path.
336- # Set LC_ALL=C to ensure ld outputs messages in English.
337- ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \
338- | sed -ne '/supported targets:/!d
339- s/[ ][ ]*/ /g
340- s/.*supported targets: *//
341- s/ .*//
342- p'`
343- case "$ld_supported_targets" in
344- elf32-i386)
345- TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
346- ;;
347- esac
348- # Determine whether the default compiler is a.out or elf
349- eval $set_cc_for_build
350- sed 's/^ //' << EOF >$dummy.c
351- #include <features.h>
352- #ifdef __ELF__
353- # ifdef __GLIBC__
354- # if __GLIBC__ >= 2
355- LIBC=gnu
356- # else
357- LIBC=gnulibc1
358- # endif
359- # else
360- LIBC=gnulibc1
361- # endif
362- #else
363- #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
364- LIBC=gnu
365- #else
366- LIBC=gnuaout
367- #endif
368- #endif
369- #ifdef __dietlibc__
370- LIBC=dietlibc
371- #endif
372-EOF
373- eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
374- /^LIBC/{
375- s: ::g
376- p
377- }'`"
378- test x"${LIBC}" != x && {
379- echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
380- exit
381- }
382- test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; }
383- ;;
384 i*86:DYNIX/ptx:4*:*)
385 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
386 # earlier versions are messed up and put the nodename in both
387@@ -1247,6 +1206,16 @@
388 *:Darwin:*:*)
389 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
390 case $UNAME_PROCESSOR in
391+ i386)
392+ eval $set_cc_for_build
393+ if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
394+ if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
395+ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
396+ grep IS_64BIT_ARCH >/dev/null
397+ then
398+ UNAME_PROCESSOR="x86_64"
399+ fi
400+ fi ;;
401 unknown) UNAME_PROCESSOR=powerpc ;;
402 esac
403 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
404
405=== modified file 'config.sub'
406--- config.sub 2010-04-01 14:45:23 +0000
407+++ config.sub 2011-01-27 21:55:19 +0000
408@@ -1,10 +1,10 @@
409 #! /bin/sh
410 # Configuration validation subroutine script.
411 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
412-# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
413+# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
414 # Free Software Foundation, Inc.
415
416-timestamp='2009-06-11'
417+timestamp='2010-01-22'
418
419 # This file is (in principle) common to ALL GNU software.
420 # The presence of a machine in this file suggests that SOME GNU software
421@@ -32,13 +32,16 @@
422
423
424 # Please send patches to <config-patches@gnu.org>. Submit a context
425-# diff and a properly formatted ChangeLog entry.
426+# diff and a properly formatted GNU ChangeLog entry.
427 #
428 # Configuration subroutine to validate and canonicalize a configuration type.
429 # Supply the specified configuration type as an argument.
430 # If it is invalid, we print an error message on stderr and exit with code 1.
431 # Otherwise, we print the canonical config type on stdout and succeed.
432
433+# You can get the latest version of this script from:
434+# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
435+
436 # This file is supposed to be the same for all GNU packages
437 # and recognize all the CPU types, system types and aliases
438 # that are meaningful with *any* GNU software.
439@@ -72,8 +75,9 @@
440 version="\
441 GNU config.sub ($timestamp)
442
443-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
444-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
445+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
446+2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
447+Software Foundation, Inc.
448
449 This is free software; see the source for copying conditions. There is NO
450 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
451@@ -149,7 +153,7 @@
452 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
453 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
454 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
455- -apple | -axis | -knuth | -cray)
456+ -apple | -axis | -knuth | -cray | -microblaze)
457 os=
458 basic_machine=$1
459 ;;
460@@ -284,6 +288,7 @@
461 | pdp10 | pdp11 | pj | pjl \
462 | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
463 | pyramid \
464+ | rx \
465 | score \
466 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
467 | sh64 | sh64le \
468@@ -291,13 +296,14 @@
469 | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
470 | spu | strongarm \
471 | tahoe | thumb | tic4x | tic80 | tron \
472+ | ubicom32 \
473 | v850 | v850e \
474 | we32k \
475 | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
476 | z8k | z80)
477 basic_machine=$basic_machine-unknown
478 ;;
479- m6811 | m68hc11 | m6812 | m68hc12)
480+ m6811 | m68hc11 | m6812 | m68hc12 | picochip)
481 # Motorola 68HC11/12.
482 basic_machine=$basic_machine-unknown
483 os=-none
484@@ -340,7 +346,7 @@
485 | lm32-* \
486 | m32c-* | m32r-* | m32rle-* \
487 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
488- | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \
489+ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \
490 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
491 | mips16-* \
492 | mips64-* | mips64el-* \
493@@ -368,15 +374,17 @@
494 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
495 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
496 | pyramid-* \
497- | romp-* | rs6000-* \
498+ | romp-* | rs6000-* | rx-* \
499 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
500 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
501 | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
502 | sparclite-* \
503 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
504 | tahoe-* | thumb-* \
505- | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \
506+ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
507+ | tile-* | tilegx-* \
508 | tron-* \
509+ | ubicom32-* \
510 | v850-* | v850e-* | vax-* \
511 | we32k-* \
512 | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
513@@ -726,6 +734,9 @@
514 basic_machine=ns32k-utek
515 os=-sysv
516 ;;
517+ microblaze)
518+ basic_machine=microblaze-xilinx
519+ ;;
520 mingw32)
521 basic_machine=i386-pc
522 os=-mingw32
523@@ -1076,6 +1087,11 @@
524 basic_machine=tic6x-unknown
525 os=-coff
526 ;;
527+ # This must be matched before tile*.
528+ tilegx*)
529+ basic_machine=tilegx-unknown
530+ os=-linux-gnu
531+ ;;
532 tile*)
533 basic_machine=tile-unknown
534 os=-linux-gnu
535@@ -1247,6 +1263,9 @@
536 # First match some system type aliases
537 # that might get confused with valid system types.
538 # -solaris* is a basic system type, with this one exception.
539+ -auroraux)
540+ os=-auroraux
541+ ;;
542 -solaris1 | -solaris1.*)
543 os=`echo $os | sed -e 's|solaris1|sunos4|'`
544 ;;
545@@ -1268,8 +1287,8 @@
546 # -sysv* is not here because it comes later, after sysvr4.
547 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
548 | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
549- | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
550- | -kopensolaris* \
551+ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
552+ | -sym* | -kopensolaris* \
553 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
554 | -aos* | -aros* \
555 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
556@@ -1290,7 +1309,7 @@
557 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
558 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
559 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
560- | -skyos* | -haiku* | -rdos* | -toppers* | -drops*)
561+ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*)
562 # Remember, each alternative MUST END IN *, to match a version number.
563 ;;
564 -qnx*)
565@@ -1423,6 +1442,8 @@
566 -dicos*)
567 os=-dicos
568 ;;
569+ -nacl*)
570+ ;;
571 -none)
572 ;;
573 *)
574
575=== modified file 'configure'
576--- configure 2010-09-22 15:48:13 +0000
577+++ configure 2011-01-27 21:55:19 +0000
578@@ -763,11 +763,6 @@
579 GETTEXT_PACKAGE
580 INDICATORICONSDIR
581 INDICATORDIR
582-GCONF_SCHEMAS_INSTALL_FALSE
583-GCONF_SCHEMAS_INSTALL_TRUE
584-GCONF_SCHEMA_FILE_DIR
585-GCONF_SCHEMA_CONFIG_SOURCE
586-GCONFTOOL
587 APPLET_LIBS
588 APPLET_CFLAGS
589 PKG_CONFIG_LIBDIR
590@@ -926,9 +921,6 @@
591 enable_fast_install
592 with_gnu_ld
593 enable_libtool_lock
594-with_gconf_source
595-with_gconf_schema_file_dir
596-enable_schemas_install
597 enable_localinstall
598 '
599 ac_precious_vars='build_alias
600@@ -1575,8 +1567,6 @@
601 --enable-fast-install[=PKGS]
602 optimize for fast installation [default=yes]
603 --disable-libtool-lock avoid locking (might break parallel builds)
604- --disable-schemas-install
605- Disable the schemas installation
606 --enable-localinstall install all of the files localy instead of system
607 directories (for distcheck)
608
609@@ -1586,10 +1576,6 @@
610 --with-pic try to use only PIC/non-PIC objects [default=use
611 both]
612 --with-gnu-ld assume the C compiler uses GNU ld [default=no]
613- --with-gconf-source=sourceaddress
614- Config database for installing schema files.
615- --with-gconf-schema-file-dir=dir
616- Directory for installing schema files.
617
618 Some influential environment variables:
619 CC C compiler command
620@@ -2860,7 +2846,7 @@
621
622 # Define the identity of the package.
623 PACKAGE=indicator-applet
624- VERSION=0.4.6
625+ VERSION=0.4.7
626
627
628 cat >>confdefs.h <<_ACEOF
629@@ -6254,13 +6240,13 @@
630 else
631 lt_cv_nm_interface="BSD nm"
632 echo "int some_variable = 0;" > conftest.$ac_ext
633- (eval echo "\"\$as_me:6257: $ac_compile\"" >&5)
634+ (eval echo "\"\$as_me:6243: $ac_compile\"" >&5)
635 (eval "$ac_compile" 2>conftest.err)
636 cat conftest.err >&5
637- (eval echo "\"\$as_me:6260: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
638+ (eval echo "\"\$as_me:6246: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
639 (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
640 cat conftest.err >&5
641- (eval echo "\"\$as_me:6263: output\"" >&5)
642+ (eval echo "\"\$as_me:6249: output\"" >&5)
643 cat conftest.out >&5
644 if $GREP 'External.*some_variable' conftest.out > /dev/null; then
645 lt_cv_nm_interface="MS dumpbin"
646@@ -7465,7 +7451,7 @@
647 ;;
648 *-*-irix6*)
649 # Find out which ABI we are using.
650- echo '#line 7468 "configure"' > conftest.$ac_ext
651+ echo '#line 7454 "configure"' > conftest.$ac_ext
652 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
653 (eval $ac_compile) 2>&5
654 ac_status=$?
655@@ -8740,11 +8726,11 @@
656 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
657 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
658 -e 's:$: $lt_compiler_flag:'`
659- (eval echo "\"\$as_me:8743: $lt_compile\"" >&5)
660+ (eval echo "\"\$as_me:8729: $lt_compile\"" >&5)
661 (eval "$lt_compile" 2>conftest.err)
662 ac_status=$?
663 cat conftest.err >&5
664- echo "$as_me:8747: \$? = $ac_status" >&5
665+ echo "$as_me:8733: \$? = $ac_status" >&5
666 if (exit $ac_status) && test -s "$ac_outfile"; then
667 # The compiler can only warn and ignore the option if not recognized
668 # So say no if there are warnings other than the usual output.
669@@ -9079,11 +9065,11 @@
670 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
671 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
672 -e 's:$: $lt_compiler_flag:'`
673- (eval echo "\"\$as_me:9082: $lt_compile\"" >&5)
674+ (eval echo "\"\$as_me:9068: $lt_compile\"" >&5)
675 (eval "$lt_compile" 2>conftest.err)
676 ac_status=$?
677 cat conftest.err >&5
678- echo "$as_me:9086: \$? = $ac_status" >&5
679+ echo "$as_me:9072: \$? = $ac_status" >&5
680 if (exit $ac_status) && test -s "$ac_outfile"; then
681 # The compiler can only warn and ignore the option if not recognized
682 # So say no if there are warnings other than the usual output.
683@@ -9184,11 +9170,11 @@
684 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
685 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
686 -e 's:$: $lt_compiler_flag:'`
687- (eval echo "\"\$as_me:9187: $lt_compile\"" >&5)
688+ (eval echo "\"\$as_me:9173: $lt_compile\"" >&5)
689 (eval "$lt_compile" 2>out/conftest.err)
690 ac_status=$?
691 cat out/conftest.err >&5
692- echo "$as_me:9191: \$? = $ac_status" >&5
693+ echo "$as_me:9177: \$? = $ac_status" >&5
694 if (exit $ac_status) && test -s out/conftest2.$ac_objext
695 then
696 # The compiler can only warn and ignore the option if not recognized
697@@ -9239,11 +9225,11 @@
698 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
699 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
700 -e 's:$: $lt_compiler_flag:'`
701- (eval echo "\"\$as_me:9242: $lt_compile\"" >&5)
702+ (eval echo "\"\$as_me:9228: $lt_compile\"" >&5)
703 (eval "$lt_compile" 2>out/conftest.err)
704 ac_status=$?
705 cat out/conftest.err >&5
706- echo "$as_me:9246: \$? = $ac_status" >&5
707+ echo "$as_me:9232: \$? = $ac_status" >&5
708 if (exit $ac_status) && test -s out/conftest2.$ac_objext
709 then
710 # The compiler can only warn and ignore the option if not recognized
711@@ -11623,7 +11609,7 @@
712 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
713 lt_status=$lt_dlunknown
714 cat > conftest.$ac_ext <<_LT_EOF
715-#line 11626 "configure"
716+#line 11612 "configure"
717 #include "confdefs.h"
718
719 #if HAVE_DLFCN_H
720@@ -11719,7 +11705,7 @@
721 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
722 lt_status=$lt_dlunknown
723 cat > conftest.$ac_ext <<_LT_EOF
724-#line 11722 "configure"
725+#line 11708 "configure"
726 #include "confdefs.h"
727
728 #if HAVE_DLFCN_H
729@@ -11968,9 +11954,7 @@
730 ###########################
731
732 GTK_REQUIRED_VERSION=2.12
733-PANEL_REQUIRED_VERSION=2.0.0
734-DBUS_REQUIRED_VERSION=0.76
735-INDICATOR_REQUIRED_VERSION=0.3.14
736+INDICATOR_REQUIRED_VERSION=0.3.18
737
738
739
740@@ -12101,17 +12085,20 @@
741 elif test -n "$PKG_CONFIG"; then
742 if test -n "$PKG_CONFIG" && \
743 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= \$GTK_REQUIRED_VERSION
744- libpanelapplet-2.0 >= \$PANEL_REQUIRED_VERSION
745- indicator >= \$INDICATOR_REQUIRED_VERSION\""; } >&5
746+ x11
747+ libpanelapplet-3.0
748+ indicator >= \$INDICATOR_REQUIRED_VERSION\""; } >&5
749 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION
750- libpanelapplet-2.0 >= $PANEL_REQUIRED_VERSION
751- indicator >= $INDICATOR_REQUIRED_VERSION") 2>&5
752+ x11
753+ libpanelapplet-3.0
754+ indicator >= $INDICATOR_REQUIRED_VERSION") 2>&5
755 ac_status=$?
756 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
757 test $ac_status = 0; }; then
758 pkg_cv_APPLET_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= $GTK_REQUIRED_VERSION
759- libpanelapplet-2.0 >= $PANEL_REQUIRED_VERSION
760- indicator >= $INDICATOR_REQUIRED_VERSION" 2>/dev/null`
761+ x11
762+ libpanelapplet-3.0
763+ indicator >= $INDICATOR_REQUIRED_VERSION" 2>/dev/null`
764 else
765 pkg_failed=yes
766 fi
767@@ -12123,17 +12110,20 @@
768 elif test -n "$PKG_CONFIG"; then
769 if test -n "$PKG_CONFIG" && \
770 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= \$GTK_REQUIRED_VERSION
771- libpanelapplet-2.0 >= \$PANEL_REQUIRED_VERSION
772- indicator >= \$INDICATOR_REQUIRED_VERSION\""; } >&5
773+ x11
774+ libpanelapplet-3.0
775+ indicator >= \$INDICATOR_REQUIRED_VERSION\""; } >&5
776 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION
777- libpanelapplet-2.0 >= $PANEL_REQUIRED_VERSION
778- indicator >= $INDICATOR_REQUIRED_VERSION") 2>&5
779+ x11
780+ libpanelapplet-3.0
781+ indicator >= $INDICATOR_REQUIRED_VERSION") 2>&5
782 ac_status=$?
783 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
784 test $ac_status = 0; }; then
785 pkg_cv_APPLET_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 >= $GTK_REQUIRED_VERSION
786- libpanelapplet-2.0 >= $PANEL_REQUIRED_VERSION
787- indicator >= $INDICATOR_REQUIRED_VERSION" 2>/dev/null`
788+ x11
789+ libpanelapplet-3.0
790+ indicator >= $INDICATOR_REQUIRED_VERSION" 2>/dev/null`
791 else
792 pkg_failed=yes
793 fi
794@@ -12154,19 +12144,22 @@
795 fi
796 if test $_pkg_short_errors_supported = yes; then
797 APPLET_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION
798- libpanelapplet-2.0 >= $PANEL_REQUIRED_VERSION
799- indicator >= $INDICATOR_REQUIRED_VERSION" 2>&1`
800+ x11
801+ libpanelapplet-3.0
802+ indicator >= $INDICATOR_REQUIRED_VERSION" 2>&1`
803 else
804 APPLET_PKG_ERRORS=`$PKG_CONFIG --print-errors "gtk+-2.0 >= $GTK_REQUIRED_VERSION
805- libpanelapplet-2.0 >= $PANEL_REQUIRED_VERSION
806- indicator >= $INDICATOR_REQUIRED_VERSION" 2>&1`
807+ x11
808+ libpanelapplet-3.0
809+ indicator >= $INDICATOR_REQUIRED_VERSION" 2>&1`
810 fi
811 # Put the nasty error message in config.log where it belongs
812 echo "$APPLET_PKG_ERRORS" >&5
813
814 as_fn_error $? "Package requirements (gtk+-2.0 >= $GTK_REQUIRED_VERSION
815- libpanelapplet-2.0 >= $PANEL_REQUIRED_VERSION
816- indicator >= $INDICATOR_REQUIRED_VERSION) were not met:
817+ x11
818+ libpanelapplet-3.0
819+ indicator >= $INDICATOR_REQUIRED_VERSION) were not met:
820
821 $APPLET_PKG_ERRORS
822
823@@ -12201,97 +12194,6 @@
824
825
826
827-# Extract the first word of "gconftool-2", so it can be a program name with args.
828-set dummy gconftool-2; ac_word=$2
829-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
830-$as_echo_n "checking for $ac_word... " >&6; }
831-if test "${ac_cv_path_GCONFTOOL+set}" = set; then :
832- $as_echo_n "(cached) " >&6
833-else
834- case $GCONFTOOL in
835- [\\/]* | ?:[\\/]*)
836- ac_cv_path_GCONFTOOL="$GCONFTOOL" # Let the user override the test with a path.
837- ;;
838- *)
839- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
840-for as_dir in $PATH
841-do
842- IFS=$as_save_IFS
843- test -z "$as_dir" && as_dir=.
844- for ac_exec_ext in '' $ac_executable_extensions; do
845- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
846- ac_cv_path_GCONFTOOL="$as_dir/$ac_word$ac_exec_ext"
847- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
848- break 2
849- fi
850-done
851- done
852-IFS=$as_save_IFS
853-
854- ;;
855-esac
856-fi
857-GCONFTOOL=$ac_cv_path_GCONFTOOL
858-if test -n "$GCONFTOOL"; then
859- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GCONFTOOL" >&5
860-$as_echo "$GCONFTOOL" >&6; }
861-else
862- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
863-$as_echo "no" >&6; }
864-fi
865-
866-
867-
868- if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then
869- GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source`
870- else
871- GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE
872- fi
873-
874-
875-# Check whether --with-gconf-source was given.
876-if test "${with_gconf_source+set}" = set; then :
877- withval=$with_gconf_source; GCONF_SCHEMA_CONFIG_SOURCE="$withval"
878-fi
879-
880-
881-
882- { $as_echo "$as_me:${as_lineno-$LINENO}: result: Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation" >&5
883-$as_echo "Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation" >&6; }
884-
885- if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then
886- GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas'
887- fi
888-
889-
890-# Check whether --with-gconf-schema-file-dir was given.
891-if test "${with_gconf_schema_file_dir+set}" = set; then :
892- withval=$with_gconf_schema_file_dir; GCONF_SCHEMA_FILE_DIR="$withval"
893-fi
894-
895-
896-
897- { $as_echo "$as_me:${as_lineno-$LINENO}: result: Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files" >&5
898-$as_echo "Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files" >&6; }
899-
900- # Check whether --enable-schemas-install was given.
901-if test "${enable_schemas_install+set}" = set; then :
902- enableval=$enable_schemas_install; case ${enableval} in
903- yes|no) ;;
904- *) as_fn_error $? "bad value ${enableval} for --enable-schemas-install" "$LINENO" 5 ;;
905- esac
906-fi
907-
908- if test "$enable_schemas_install" != no; then
909- GCONF_SCHEMAS_INSTALL_TRUE=
910- GCONF_SCHEMAS_INSTALL_FALSE='#'
911-else
912- GCONF_SCHEMAS_INSTALL_TRUE='#'
913- GCONF_SCHEMAS_INSTALL_FALSE=
914-fi
915-
916-
917-
918 ###########################
919 # Check to see if we're local
920 ###########################
921@@ -13252,10 +13154,6 @@
922 as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
923 Usually this means the macro was only invoked conditionally." "$LINENO" 5
924 fi
925-if test -z "${GCONF_SCHEMAS_INSTALL_TRUE}" && test -z "${GCONF_SCHEMAS_INSTALL_FALSE}"; then
926- as_fn_error $? "conditional \"GCONF_SCHEMAS_INSTALL\" was never defined.
927-Usually this means the macro was only invoked conditionally." "$LINENO" 5
928-fi
929
930 : ${CONFIG_STATUS=./config.status}
931 ac_write_fail=0
932
933=== modified file 'configure.ac'
934--- configure.ac 2010-12-06 18:02:47 +0000
935+++ configure.ac 2011-01-27 21:55:19 +0000
936@@ -4,7 +4,7 @@
937 AC_PREREQ(2.53)
938
939 AM_CONFIG_HEADER(config.h)
940-AM_INIT_AUTOMAKE(indicator-applet, 0.4.6)
941+AM_INIT_AUTOMAKE(indicator-applet, 0.4.7)
942
943 AM_MAINTAINER_MODE
944 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES])
945@@ -26,7 +26,7 @@
946 ###########################
947
948 GTK_REQUIRED_VERSION=2.12
949-INDICATOR_REQUIRED_VERSION=0.3.14
950+INDICATOR_REQUIRED_VERSION=0.3.18
951
952 PKG_CHECK_MODULES(APPLET, gtk+-2.0 >= $GTK_REQUIRED_VERSION
953 x11
954
955=== modified file 'data/Makefile.in'
956--- data/Makefile.in 2010-08-26 19:29:10 +0000
957+++ data/Makefile.in 2011-01-27 21:55:19 +0000
958@@ -18,7 +18,7 @@
959 # This file will be processed with automake to create Makefile.in
960
961 ##############################
962-# Bonobo .server
963+# Applets
964 ##############################
965
966 VPATH = @srcdir@
967@@ -79,9 +79,9 @@
968 am__base_list = \
969 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
970 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
971-am__installdirs = "$(DESTDIR)$(iconsdir)" "$(DESTDIR)$(schemadir)" \
972- "$(DESTDIR)$(serverdir)"
973-DATA = $(icons_DATA) $(schema_DATA) $(server_DATA)
974+am__installdirs = "$(DESTDIR)$(appletdir)" "$(DESTDIR)$(iconsdir)" \
975+ "$(DESTDIR)$(servicedir)"
976+DATA = $(applet_DATA) $(icons_DATA) $(service_DATA)
977 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
978 ACLOCAL = @ACLOCAL@
979 ALL_LINGUAS = @ALL_LINGUAS@
980@@ -114,9 +114,6 @@
981 EXEEXT = @EXEEXT@
982 EXPANDED_SYSCONFDIR = @EXPANDED_SYSCONFDIR@
983 FGREP = @FGREP@
984-GCONFTOOL = @GCONFTOOL@
985-GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
986-GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@
987 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
988 GMOFILES = @GMOFILES@
989 GMSGFMT = @GMSGFMT@
990@@ -234,34 +231,26 @@
991 top_build_prefix = @top_build_prefix@
992 top_builddir = @top_builddir@
993 top_srcdir = @top_srcdir@
994-serverdir = \
995- $(libdir)/bonobo/servers
996-
997-server_in_files = \
998- GNOME_IndicatorApplet.server.in \
999- GNOME_IndicatorAppletComplete.server.in \
1000- GNOME_IndicatorAppletAppmenu.server.in \
1001- GNOME_FastUserSwitchApplet.server.in
1002-
1003-server_DATA = \
1004- $(server_in_files:.server.in=.server)
1005-
1006-server_in_in_files = \
1007- $(server_in_files:.server.in=.server.in.in)
1008-
1009-
1010-##############################
1011-# GConf Schema
1012-##############################
1013-schemadir = \
1014- $(GCONF_SCHEMA_FILE_DIR)
1015-
1016-schema_in_files = \
1017- indicator-applet.schemas.in
1018-
1019-schema_DATA = \
1020- $(schema_in_files:.schemas.in=.schemas)
1021-
1022+appletdir = $(datadir)/gnome-panel/applets
1023+applet_in_files = \
1024+ org.ayatana.panel.IndicatorApplet.panel-applet.in \
1025+ org.ayatana.panel.IndicatorAppletComplete.panel-applet.in \
1026+ org.ayatana.panel.IndicatorAppletAppmenu.panel-applet.in \
1027+ org.ayatana.panel.FastUserSwitchApplet.panel-applet.in
1028+
1029+applet_DATA = $(applet_in_files:.panel-applet.in=.panel-applet)
1030+
1031+##############################
1032+# DBus Services
1033+##############################
1034+servicedir = $(datadir)/dbus-1/services
1035+service_in_files = \
1036+ org.gnome.panel.applet.IndicatorAppletFactory.service.in \
1037+ org.gnome.panel.applet.IndicatorAppletCompleteFactory.service.in \
1038+ org.gnome.panel.applet.IndicatorAppletAppmenuFactory.service.in \
1039+ org.gnome.panel.applet.FastUserSwitchAppletFactory.service.in
1040+
1041+service_DATA = $(service_in_files:.service.in=.service)
1042
1043 ##############################
1044 # Icons
1045@@ -274,15 +263,15 @@
1046 # Autojunk
1047 ##############################
1048 CLEANFILES = \
1049- $(server_in_files) \
1050- $(server_DATA) \
1051- $(schema_DATA) \
1052+ $(applet_in_files) \
1053+ $(applet_DATA) \
1054+ $(service_DATA) \
1055 *.bak
1056
1057 EXTRA_DIST = \
1058- $(icons_DATA) \
1059- $(server_in_in_files) \
1060- $(schema_in_files)
1061+ $(icons_DATA) \
1062+ $(applet_in_files:.in=.in.in) \
1063+ $(service_in_files)
1064
1065 MAINTAINERCLEANFILES = \
1066 Makefile.in
1067@@ -326,6 +315,26 @@
1068
1069 clean-libtool:
1070 -rm -rf .libs _libs
1071+install-appletDATA: $(applet_DATA)
1072+ @$(NORMAL_INSTALL)
1073+ test -z "$(appletdir)" || $(MKDIR_P) "$(DESTDIR)$(appletdir)"
1074+ @list='$(applet_DATA)'; test -n "$(appletdir)" || list=; \
1075+ for p in $$list; do \
1076+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1077+ echo "$$d$$p"; \
1078+ done | $(am__base_list) | \
1079+ while read files; do \
1080+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appletdir)'"; \
1081+ $(INSTALL_DATA) $$files "$(DESTDIR)$(appletdir)" || exit $$?; \
1082+ done
1083+
1084+uninstall-appletDATA:
1085+ @$(NORMAL_UNINSTALL)
1086+ @list='$(applet_DATA)'; test -n "$(appletdir)" || list=; \
1087+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1088+ test -n "$$files" || exit 0; \
1089+ echo " ( cd '$(DESTDIR)$(appletdir)' && rm -f" $$files ")"; \
1090+ cd "$(DESTDIR)$(appletdir)" && rm -f $$files
1091 install-iconsDATA: $(icons_DATA)
1092 @$(NORMAL_INSTALL)
1093 test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)"
1094@@ -346,46 +355,26 @@
1095 test -n "$$files" || exit 0; \
1096 echo " ( cd '$(DESTDIR)$(iconsdir)' && rm -f" $$files ")"; \
1097 cd "$(DESTDIR)$(iconsdir)" && rm -f $$files
1098-install-schemaDATA: $(schema_DATA)
1099- @$(NORMAL_INSTALL)
1100- test -z "$(schemadir)" || $(MKDIR_P) "$(DESTDIR)$(schemadir)"
1101- @list='$(schema_DATA)'; test -n "$(schemadir)" || list=; \
1102- for p in $$list; do \
1103- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1104- echo "$$d$$p"; \
1105- done | $(am__base_list) | \
1106- while read files; do \
1107- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(schemadir)'"; \
1108- $(INSTALL_DATA) $$files "$(DESTDIR)$(schemadir)" || exit $$?; \
1109- done
1110-
1111-uninstall-schemaDATA:
1112- @$(NORMAL_UNINSTALL)
1113- @list='$(schema_DATA)'; test -n "$(schemadir)" || list=; \
1114- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1115- test -n "$$files" || exit 0; \
1116- echo " ( cd '$(DESTDIR)$(schemadir)' && rm -f" $$files ")"; \
1117- cd "$(DESTDIR)$(schemadir)" && rm -f $$files
1118-install-serverDATA: $(server_DATA)
1119- @$(NORMAL_INSTALL)
1120- test -z "$(serverdir)" || $(MKDIR_P) "$(DESTDIR)$(serverdir)"
1121- @list='$(server_DATA)'; test -n "$(serverdir)" || list=; \
1122- for p in $$list; do \
1123- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1124- echo "$$d$$p"; \
1125- done | $(am__base_list) | \
1126- while read files; do \
1127- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(serverdir)'"; \
1128- $(INSTALL_DATA) $$files "$(DESTDIR)$(serverdir)" || exit $$?; \
1129- done
1130-
1131-uninstall-serverDATA:
1132- @$(NORMAL_UNINSTALL)
1133- @list='$(server_DATA)'; test -n "$(serverdir)" || list=; \
1134- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1135- test -n "$$files" || exit 0; \
1136- echo " ( cd '$(DESTDIR)$(serverdir)' && rm -f" $$files ")"; \
1137- cd "$(DESTDIR)$(serverdir)" && rm -f $$files
1138+install-serviceDATA: $(service_DATA)
1139+ @$(NORMAL_INSTALL)
1140+ test -z "$(servicedir)" || $(MKDIR_P) "$(DESTDIR)$(servicedir)"
1141+ @list='$(service_DATA)'; test -n "$(servicedir)" || list=; \
1142+ for p in $$list; do \
1143+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1144+ echo "$$d$$p"; \
1145+ done | $(am__base_list) | \
1146+ while read files; do \
1147+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(servicedir)'"; \
1148+ $(INSTALL_DATA) $$files "$(DESTDIR)$(servicedir)" || exit $$?; \
1149+ done
1150+
1151+uninstall-serviceDATA:
1152+ @$(NORMAL_UNINSTALL)
1153+ @list='$(service_DATA)'; test -n "$(servicedir)" || list=; \
1154+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1155+ test -n "$$files" || exit 0; \
1156+ echo " ( cd '$(DESTDIR)$(servicedir)' && rm -f" $$files ")"; \
1157+ cd "$(DESTDIR)$(servicedir)" && rm -f $$files
1158 tags: TAGS
1159 TAGS:
1160
1161@@ -427,7 +416,7 @@
1162 check: check-am
1163 all-am: Makefile $(DATA)
1164 installdirs:
1165- for dir in "$(DESTDIR)$(iconsdir)" "$(DESTDIR)$(schemadir)" "$(DESTDIR)$(serverdir)"; do \
1166+ for dir in "$(DESTDIR)$(appletdir)" "$(DESTDIR)$(iconsdir)" "$(DESTDIR)$(servicedir)"; do \
1167 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
1168 done
1169 install: install-am
1170@@ -477,8 +466,8 @@
1171
1172 info-am:
1173
1174-install-data-am: install-data-local install-iconsDATA \
1175- install-schemaDATA install-serverDATA
1176+install-data-am: install-appletDATA install-iconsDATA \
1177+ install-serviceDATA
1178 @$(NORMAL_INSTALL)
1179 $(MAKE) $(AM_MAKEFLAGS) install-data-hook
1180 install-dvi: install-dvi-am
1181@@ -523,8 +512,8 @@
1182
1183 ps-am:
1184
1185-uninstall-am: uninstall-iconsDATA uninstall-schemaDATA \
1186- uninstall-serverDATA
1187+uninstall-am: uninstall-appletDATA uninstall-iconsDATA \
1188+ uninstall-serviceDATA
1189 @$(NORMAL_INSTALL)
1190 $(MAKE) $(AM_MAKEFLAGS) uninstall-hook
1191 .MAKE: install-am install-data-am install-strip uninstall-am
1192@@ -532,24 +521,29 @@
1193 .PHONY: all all-am check check-am clean clean-generic clean-libtool \
1194 distclean distclean-generic distclean-libtool distdir dvi \
1195 dvi-am html html-am info info-am install install-am \
1196- install-data install-data-am install-data-hook \
1197- install-data-local install-dvi install-dvi-am install-exec \
1198+ install-appletDATA install-data install-data-am \
1199+ install-data-hook install-dvi install-dvi-am install-exec \
1200 install-exec-am install-html install-html-am install-iconsDATA \
1201 install-info install-info-am install-man install-pdf \
1202- install-pdf-am install-ps install-ps-am install-schemaDATA \
1203- install-serverDATA install-strip installcheck installcheck-am \
1204- installdirs maintainer-clean maintainer-clean-generic \
1205- mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
1206- ps ps-am uninstall uninstall-am uninstall-hook \
1207- uninstall-iconsDATA uninstall-schemaDATA uninstall-serverDATA
1208-
1209-
1210-%.server.in: %.server.in.in
1211- sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|" -e "s|\@VERSION\@|$(VERSION)|" $< > $@
1212-
1213-@INTLTOOL_SERVER_RULE@
1214-
1215-@INTLTOOL_SCHEMAS_RULE@
1216+ install-pdf-am install-ps install-ps-am install-serviceDATA \
1217+ install-strip installcheck installcheck-am installdirs \
1218+ maintainer-clean maintainer-clean-generic mostlyclean \
1219+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
1220+ uninstall uninstall-am uninstall-appletDATA uninstall-hook \
1221+ uninstall-iconsDATA uninstall-serviceDATA
1222+
1223+
1224+%.panel-applet.in: %.panel-applet.in.in Makefile
1225+ $(AM_V_GEN)sed \
1226+ -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \
1227+ $< > $@
1228+
1229+%.panel-applet: %.panel-applet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(AM_V_GEN) LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
1230+
1231+%.service: %.service.in Makefile
1232+ $(AM_V_GEN)sed \
1233+ -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \
1234+ $< > $@
1235
1236 install-data-hook: update-icon-cache
1237 uninstall-hook: update-icon-cache
1238@@ -562,11 +556,6 @@
1239 echo "*** $(gtk_update_icon_cache)"; \
1240 fi
1241
1242-@GCONF_SCHEMAS_INSTALL_TRUE@install-data-local:
1243-@GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
1244-@GCONF_SCHEMAS_INSTALL_TRUE@ gconftool-2 --makefile-install-rule $(schema_DATA)
1245-@GCONF_SCHEMAS_INSTALL_FALSE@install-data-local:
1246-
1247 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1248 # Otherwise a system limit (for SysV at least) may be exceeded.
1249 .NOEXPORT:
1250
1251=== modified file 'debian/changelog'
1252--- debian/changelog 2011-01-14 22:53:52 +0000
1253+++ debian/changelog 2011-01-27 21:55:19 +0000
1254@@ -1,3 +1,11 @@
1255+indicator-applet (0.4.7-0ubuntu1~ppa1) natty; urgency=low
1256+
1257+ * New upstream release.
1258+ * Use the new scroll-entry signal
1259+ * debian/control: requiring the new libindicator
1260+
1261+ -- Ted Gould <ted@ubuntu.com> Thu, 27 Jan 2011 15:52:05 -0600
1262+
1263 indicator-applet (0.4.6-0ubuntu3) natty; urgency=low
1264
1265 * Force a rebuild for libindicator change
1266@@ -24,6 +32,15 @@
1267
1268 -- Didier Roche <didrocks@ubuntu.com> Wed, 22 Sep 2010 18:08:32 +0200
1269
1270+indicator-applet (0.4.6-0ubuntu1~ppa1) maverick; urgency=low
1271+
1272+ * New upstream release.
1273+ * Send the activate signal down to libindicator (LP: #637692)
1274+ * Generate AUTHORS and ChangeLog from Bazaar
1275+ * debian/control: Upping the libindicator-dev dependency
1276+
1277+ -- Ted Gould <ted@ubuntu.com> Wed, 22 Sep 2010 10:50:22 -0500
1278+
1279 indicator-applet (0.4.5-0ubuntu1) maverick; urgency=low
1280
1281 * New upstream release.
1282
1283=== modified file 'debian/control'
1284--- debian/control 2010-12-06 18:02:47 +0000
1285+++ debian/control 2011-01-27 21:55:19 +0000
1286@@ -12,7 +12,7 @@
1287 intltool,
1288 libxml2-dev,
1289 gtk-doc-tools,
1290- libindicator-dev (>= 0.3.14),
1291+ libindicator-dev (>= 0.3.18),
1292 dh-autoreconf,
1293 libx11-dev
1294 Standards-Version: 3.9.1
1295
1296=== modified file 'src/Makefile.in'
1297--- src/Makefile.in 2010-08-26 19:29:10 +0000
1298+++ src/Makefile.in 2011-01-27 21:55:19 +0000
1299@@ -164,9 +164,6 @@
1300 EXEEXT = @EXEEXT@
1301 EXPANDED_SYSCONFDIR = @EXPANDED_SYSCONFDIR@
1302 FGREP = @FGREP@
1303-GCONFTOOL = @GCONFTOOL@
1304-GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
1305-GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@
1306 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
1307 GMOFILES = @GMOFILES@
1308 GMSGFMT = @GMSGFMT@
1309
1310=== modified file 'src/applet-main.c'
1311--- src/applet-main.c 2010-12-06 18:02:47 +0000
1312+++ src/applet-main.c 2011-01-27 21:55:19 +0000
1313@@ -228,6 +228,20 @@
1314 return indicator_object_entry_activate(io, (IndicatorObjectEntry *)user_data, gtk_get_current_event_time());
1315 }
1316
1317+static gboolean
1318+entry_scrolled (GtkWidget *menuitem, GdkEventScroll *event, gpointer data)
1319+{
1320+ IndicatorObject *io = g_object_get_data (G_OBJECT (menuitem), MENU_DATA_INDICATOR_OBJECT);
1321+ IndicatorObjectEntry *entry = g_object_get_data (G_OBJECT (menuitem), MENU_DATA_INDICATOR_ENTRY);
1322+
1323+ g_return_val_if_fail(INDICATOR_IS_OBJECT(io), FALSE);
1324+
1325+ g_signal_emit_by_name (io, "scroll", 1, event->direction);
1326+ g_signal_emit_by_name (io, "scroll-entry", entry, 1, event->direction);
1327+
1328+ return FALSE;
1329+}
1330+
1331 static void
1332 entry_added (IndicatorObject * io, IndicatorObjectEntry * entry, GtkWidget * menubar)
1333 {
1334@@ -243,6 +257,7 @@
1335 g_object_set_data (G_OBJECT (menuitem), "box", box);
1336
1337 g_signal_connect(G_OBJECT(menuitem), "activate", G_CALLBACK(entry_activated), entry);
1338+ g_signal_connect(G_OBJECT(menuitem), "scroll-event", G_CALLBACK(entry_scrolled), entry);
1339
1340 if (entry->image != NULL) {
1341 gtk_box_pack_start(GTK_BOX(box), GTK_WIDGET(entry->image), FALSE, FALSE, 1);
1342@@ -479,21 +494,6 @@
1343 }
1344
1345 static gboolean
1346-menubar_scroll (GtkWidget *widget G_GNUC_UNUSED,
1347- GdkEventScroll *event,
1348- gpointer data G_GNUC_UNUSED)
1349-{
1350- GtkWidget *menuitem;
1351-
1352- menuitem = gtk_get_event_widget ((GdkEvent *)event);
1353-
1354- IndicatorObject *io = g_object_get_data (G_OBJECT (menuitem), "indicator");
1355- g_signal_emit_by_name (io, "scroll", 1, event->direction);
1356-
1357- return FALSE;
1358-}
1359-
1360-static gboolean
1361 menubar_on_expose (GtkWidget * widget,
1362 GdkEventExpose *event G_GNUC_UNUSED,
1363 GtkWidget * menubar)
1364@@ -797,7 +797,6 @@
1365 GTK_WIDGET_SET_FLAGS (menubar, GTK_WIDGET_FLAGS(menubar) | GTK_CAN_FOCUS);
1366 gtk_widget_set_name(GTK_WIDGET (menubar), "fast-user-switch-menubar");
1367 g_signal_connect(menubar, "button-press-event", G_CALLBACK(menubar_press), NULL);
1368- g_signal_connect(menubar, "scroll-event", G_CALLBACK (menubar_scroll), NULL);
1369 g_signal_connect_after(menubar, "expose-event", G_CALLBACK(menubar_on_expose), menubar);
1370 g_signal_connect(applet, "change-orient",
1371 G_CALLBACK(panelapplet_reorient_cb), menubar);

Subscribers

People subscribed via source and target branches