~ubuntu-branches/ubuntu/oneiric/cairo-dock-plug-ins/oneiric-updates

« back to all changes in this revision

Viewing changes to shortcuts/configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2009-08-26 21:07:39 UTC
  • Revision ID: james.westby@ubuntu.com-20090826210739-gyjuuqezrzuluao4
Tags: upstream-2.0.8.1
ImportĀ upstreamĀ versionĀ 2.0.8.1

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