~ubuntu-branches/ubuntu/jaunty/plotutils/jaunty

« back to all changes in this revision

Viewing changes to debian/autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Floris Bruynooghe
  • Date: 2006-06-10 22:30:09 UTC
  • mfrom: (3.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20060610223009-lfgb9ceyzjykj3z1
Tags: 2.4.1-15
* 14_manpage_spline.dpatch: correct long option of -n (Closes: #247208).
* debian/control: changed maintainer email address, old will expire soon.
* Changed libpng12-0-dev (virtual) to libpng12-dev (real) in Build-Depends.

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
 
    aclocal
8
 
    grep -q ^AM_GNU_GETTEXT   configure.in && gettextize -c -f
9
 
    grep -q ^AM_PROG_LIBTOOL  configure.in && libtoolize -c -f --automake
10
 
    grep -q ^A._CONFIG_HEADER configure.in && autoheader -f
11
 
    automake -acf --foreign
12
 
    autoconf -f
13
 
}
14
 
 
15
 
autogen
16