~cairo-dock-team/ubuntu/precise/cairo-dock-plug-ins/3.0.0.0rc1

« back to all changes in this revision

Viewing changes to shortcuts/configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne, Matthieu Baerts (matttbe), Julien Lavergne
  • Date: 2009-10-05 19:27:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20091005192717-mvqvb395guktr401
Tags: 2.0.9-0ubuntu1
[ Matthieu Baerts (matttbe) ]
* New upstream release (LP: #435590)
* debian/control: 
 - Remove ${shlibs:Depends} for integration plug-ins to avoid
   pulling shared libraries which are detected automatically.
 - Added curl as depends for cairo-dock-plug-ins
* debian/rules:
 - Add --enable-dnd2share and --enable-musicplayer to enable new applets.
 - Remove --enable-rhythmbox and --enable-nvidia to remove those applets,
   not maintained upstream.
* Update *.install to take all generated applets.

[ Julien Lavergne ]
* Adjust changelog with Daniel Holbach suggestions.
* cairo-dock-plug-ins.changelogs:  Install specific changelog for 2.0.9
* Build-depends on cairo-dock-dev (>= 2.0.9)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#                                               -*- Autoconf -*-
2
 
# Process this file with autoconf to produce a configure script.
3
 
 
4
 
AC_PREREQ(2.59)
5
 
AC_INIT([cd-shortcuts],[1.2.1],[Fabrice Rey (fabounet@users.berlios.de)])
6
 
AC_CONFIG_SRCDIR([config.h.in])
7
 
AC_CONFIG_HEADER([config.h])
8
 
 
9
 
AM_INIT_AUTOMAKE([foreign])
10
 
AC_DISABLE_STATIC
11
 
AC_PROG_LIBTOOL
12
 
 
13
 
 
14
 
IT_PROG_INTLTOOL()
15
 
AC_SUBST(ALL_LINGUAS)
16
 
AM_GLIB_GNU_GETTEXT
17
 
GETTEXT_SHORTCUTSE=cd-shortcuts
18
 
AC_DEFINE_UNQUOTED(GETTEXT_SHORTCUTS,"$GETTEXT_SHORTCUTS", [Gettext package.])
19
 
AC_SUBST(GETTEXT_SHORTCUTS)
20
 
 
21
 
AC_SUBST(VERSION_SHORTCUTS, "$VERSION")
22
 
AC_SUBST(PACKAGE_SHORTCUTS, "$PACKAGE")
23
 
 
24
 
 
25
 
shortcutsdatadir=[`pkg-config cairo-dock --variable=pluginsdatadir`/shortcuts]
26
 
AC_SUBST(shortcutsdatadir)
27
 
libdir=[`pkg-config cairo-dock --variable=pluginsdir`]
28
 
AC_SUBST(libdir)
29
 
 
30
 
 
31
 
PKG_CHECK_MODULES(PACKAGE, cairo-dock)
32
 
 
33
 
AC_CONFIG_FILES([Makefile
34
 
                src/Makefile
35
 
                po/Makefile.in
36
 
                data/Makefile
37
 
                data/shortcuts.conf])
38
 
AC_OUTPUT