~ubuntu-branches/ubuntu/gutsy/ggz-client-libs/gutsy

« back to all changes in this revision

Viewing changes to debian/autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut, Josef Spillner, Peter Eisentraut
  • Date: 2006-09-09 13:37:14 UTC
  • mfrom: (2.1.2 edgy)
  • Revision ID: james.westby@ubuntu.com-20060909133714-q49a9kvjfkc0wcc3
Tags: 0.0.13-3
[ Josef Spillner ]
* Change ggzcore-bin dependency from ggzmod to recommends from ggzcore
  (closes: #384671).

[ Peter Eisentraut ]
* Make package dependencies binNMU-safe through use of ${binary:Version}
  (closes: #386126)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh -e
2
 
#
3
 
# Configuration build script: ggz-*
4
 
# build-depends: automake1.7, gettext, libtool, autoconf2.50
5
 
#
6
 
autogen () {
7
 
    cat m4/*.m4 > acinclude.m4
8
 
    aclocal
9
 
    grep -q ^AM_GNU_GETTEXT   configure.ac && gettextize -c -f
10
 
    grep -q ^AM_PROG_LIBTOOL  configure.ac && libtoolize -c -f --automake
11
 
    grep -q ^A._CONFIG_HEADER configure.ac && autoheader -f
12
 
    automake -acf --foreign
13
 
    grep -q ^KDE_USE_QT       configure.ac && perl ./am_edit --foreign-libtool
14
 
    autoconf -f
15
 
}
16
 
 
17
 
autogen
18