~ubuntu-branches/ubuntu/wily/docky/wily-proposed

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Rico Tzschichholz
  • Date: 2015-09-02 19:24:34 UTC
  • mfrom: (1.1.18)
  • Revision ID: package-import@ubuntu.com-20150902192434-ks4830p0re3lkti6
Tags: 2.2.1.1-1
New upstream release 2.2.1.1 "Don't get your hopes too high"

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl Process this file with autoconf to produce a configure script.
2
2
AC_PREREQ([2.65])
3
3
 
4
 
AC_INIT([docky], [2.2.1],
 
4
AC_INIT([docky], [2.2.1.1],
5
5
        [https://bugs.launchpad.net/docky], [docky],
6
6
        [https://launchpad.net/docky])
7
7
AM_INIT_AUTOMAKE([1.11 foreign tar-pax dist-xz no-dist-gzip])
85
85
 
86
86
dnl gio-sharp is an unstable api library
87
87
PKG_CHECK_MODULES([GIO_SHARP], [gio-sharp-2.0 >= $GIO_SHARP_REQUIRED_VERSION])
 
88
files="`$PKG_CONFIG --variable=Libraries gio-sharp-2.0`"
 
89
for file in $files; do
 
90
        [ mkdir -p $top_srcdir/build ] && [ cp -vu $file $top_srcdir/build/ ]
 
91
        GIO_SHARP_ASSEMBLIES="$GIO_SHARP_ASSEMBLIES $top_srcdir/build/$(basename $file)"
 
92
        GIO_SHARP_LIBS="$GIO_SHARP_LIBS -r:$top_srcdir/build/$(basename $file)"
 
93
        [[ -r "$file.config" ]] && [ mkdir -p $top_srcdir/build ] && [ cp -vu $file.config $top_srcdir/build/ ]
 
94
        [[ -r "$file.config" ]] && GIO_SHARP_ASSEMBLIES="$GIO_SHARP_ASSEMBLIES $top_srcdir/build/$(basename $file).config"
 
95
done
 
96
AC_SUBST([GIO_SHARP_ASSEMBLIES])
 
97
 
88
98
PKG_CHECK_MODULES([GKEYFILE_SHARP], [gkeyfile-sharp])
89
99
PKG_CHECK_MODULES([GNOME_KEYRING_SHARP], [gnome-keyring-sharp-1.0])
90
100
PKG_CHECK_MODULES([GTK_SHARP_20], [gtk-sharp-2.0])