~ubuntu-branches/debian/jessie/banshee-community-extensions/jessie

« back to all changes in this revision

Viewing changes to build/m4/extensions/appindicator.m4

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-04-04 18:00:24 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100404180024-z5fwyx9mpp0pm2ss
Tags: 1.6.0-1
* New upstream release
* debian/(control, banshee-extension-appindicator.install):
  + Add Application Indicator package and build-depends (commented out
    because these dependencies are not present in Debian yet)
* debian/copyright:
  + Document more MIT/X11 files in Mirage's source
  + Document LGPL-3 files in Banshee.Telepathy
  + Document bundled NDesk.DBus in Banshee.Telepathy
  + Document Banshee.Lirc copyrights
* debian/rules:
  + --disable-appindicator
* debian/patches/*, debian/control, debian/rules:
  + Drop all patches, applied upstream and/or not needed any more
  + De-quiltify package

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_DEFUN([BCE_APPINDICATOR],
 
2
[
 
3
        BCE_ARG_DISABLE([AppIndicator], [try])
 
4
 
 
5
        BCE_CHECK_EXTENSION_DEP([AppIndicator], [APPINDICATORSHARP],
 
6
                [appindicator-sharp-0.1],
 
7
                [AppIndicator-sharp was not found. Please install it or disable the AppIndicator extension by passing --disable-appindicator])
 
8
 
 
9
        BCE_CHECK_EXTENSION_DEP([AppIndicator], [NOTIFYSHARP],
 
10
                [notify-sharp],
 
11
                [Notify-sharp was not found. Please install it or disable the AppIndicator extension by passing --disable-appindicator])
 
12
 
 
13
        if test "x$enable_AppIndicator" = "xtry" \
 
14
                && test "x$have_APPINDICATORSHARP" = "xyes" \
 
15
                && test "x$have_NOTIFYSHARP" = "xyes"; then
 
16
                enable_AppIndicator=yes
 
17
        fi
 
18
 
 
19
        if test "x$enable_AppIndicator" = "xyes"; then
 
20
                AM_CONDITIONAL(ENABLE_APPINDICATOR, true)
 
21
        else
 
22
                enable_AppIndicator=no
 
23
                AM_CONDITIONAL(ENABLE_APPINDICATOR, false)
 
24
        fi
 
25
])