~ubuntu-branches/ubuntu/utopic/awn-extras-applets/utopic

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2010-08-29 14:29:52 UTC
  • mfrom: (1.1.7 upstream) (2.2.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100829142952-9hbpo70i6zgxfw2o
Tags: 0.4.0+bzr1372-0ubuntu1
* Sync with Debian
* New upstream snapshot (LP: #626265)
 - YAMA: use lda instead of xdg for managing desktop files (LP: #497787)
 - Volume: fix crash on high volume value. (LP: #461123)
 - Weather: fix crash on activate_map_cb (LP: #581414)
 - File-browser-launcher: fix crash on mounting LUKS partition (LP: #532848)
 - Feeds: fix crash when getting favicon (LP: #561611)
 - Slickswitcher: Fix division by 0 (LP: #562548)
* debian/control:
 - Build-depends on libindicator-dev (>= 0.3).
 - Build-depends on libzeitgeist-dev (>= 0.2.2).
 - Recommends python-gtop | python-gnome2-desktop for bandwidth-monitor.
 - Update description for new applets.
* debian/rules:
 - Pass --with-indicator to enable indicator applet.
 - Remove schemas for desactivated applets.
 - Disable mount applet.
* debian/awn-applets-c-core.install:
 - Install indicator applet.
 - Install related applet.
* debian/awn-applets-python-core:
 - Disable mount applet. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.11 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
169
169
GSTREAMER_LIBS = @GSTREAMER_LIBS@
170
170
GTOP_CFLAGS = @GTOP_CFLAGS@
171
171
GTOP_LIBS = @GTOP_LIBS@
 
172
INDICATORDIR = @INDICATORDIR@
 
173
INDICATORICONSDIR = @INDICATORICONSDIR@
 
174
INDICATOR_CFLAGS = @INDICATOR_CFLAGS@
 
175
INDICATOR_LIBS = @INDICATOR_LIBS@
172
176
INSTALL = @INSTALL@
173
177
INSTALL_DATA = @INSTALL_DATA@
174
178
INSTALL_PROGRAM = @INSTALL_PROGRAM@
258
262
XGETTEXT = @XGETTEXT@
259
263
XRENDER_CFLAGS = @XRENDER_CFLAGS@
260
264
XRENDER_LIBS = @XRENDER_LIBS@
 
265
ZEITGEIST_CFLAGS = @ZEITGEIST_CFLAGS@
 
266
ZEITGEIST_LIBS = @ZEITGEIST_LIBS@
261
267
abs_builddir = @abs_builddir@
262
268
abs_srcdir = @abs_srcdir@
263
269
abs_top_builddir = @abs_top_builddir@
426
432
#     (which will cause the Makefiles to be regenerated when you run `make');
427
433
# (2) otherwise, pass the desired values on the `make' command line.
428
434
$(RECURSIVE_TARGETS):
429
 
        @failcom='exit 1'; \
 
435
        @fail= failcom='exit 1'; \
430
436
        for f in x $$MAKEFLAGS; do \
431
437
          case $$f in \
432
438
            *=* | --[!k]*);; \
451
457
        fi; test -z "$$fail"
452
458
 
453
459
$(RECURSIVE_CLEAN_TARGETS):
454
 
        @failcom='exit 1'; \
 
460
        @fail= failcom='exit 1'; \
455
461
        for f in x $$MAKEFLAGS; do \
456
462
          case $$f in \
457
463
            *=* | --[!k]*);; \
615
621
          fi; \
616
622
        done
617
623
        -test -n "$(am__skip_mode_fix)" \
618
 
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
 
624
        || find "$(distdir)" -type d ! -perm -755 \
 
625
                -exec chmod u+rwx,go+rx {} \; -o \
619
626
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
620
627
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
621
628
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
659
666
distcheck: dist
660
667
        case '$(DIST_ARCHIVES)' in \
661
668
        *.tar.gz*) \
662
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
 
669
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
663
670
        *.tar.bz2*) \
664
 
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
 
671
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
665
672
        *.tar.lzma*) \
666
 
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
 
673
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
667
674
        *.tar.xz*) \
668
675
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
669
676
        *.tar.Z*) \
670
677
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
671
678
        *.shar.gz*) \
672
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
 
679
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
673
680
        *.zip*) \
674
681
          unzip $(distdir).zip ;;\
675
682
        esac