~ubuntu-branches/debian/squeeze/pgadmin3/squeeze

« back to all changes in this revision

Viewing changes to bootstrap

  • Committer: Bazaar Package Importer
  • Author(s): Gerfried Fuchs
  • Date: 2009-12-17 20:34:00 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20091217203400-tlnmt4m3v7udjp0h
Tags: 1.10.1-1
* New upstream release, containing fix for:
  - default value in function parameters not shown (closes: #547940)
  - cannot open files without dot in names for restore (closes: #451038)
* Suggest postgresql-contrib (closes: #503291)
* Set myself as Maintainer and remove Raphael. Thanks for his work so far.
* Switch Uploaders and Maintainer role to better describe reality.
* Bump to Standards-Version to 3.8.3.
* Update to debhelper level 7, use dh_prep instead of dh_clean -k.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
#
9
9
#######################################################################
10
10
 
11
 
# Check for aclocal 1.9/1.10
 
11
# Check for aclocal 1.9/1.10/1.11
12
12
echo "Checking aclocal..."
13
 
RET=`type aclocal-1.10 > /dev/null 2>&1 || echo fail`
 
13
RET=`type aclocal-1.11 > /dev/null 2>&1 || echo fail`
14
14
if [ ! $RET ];
15
15
then
16
 
  ACLOCAL=aclocal-1.10
 
16
  ACLOCAL=aclocal-1.11
17
17
else
18
 
  RET=`type aclocal-1.9 > /dev/null 2>&1 || echo fail` 
 
18
  RET=`type aclocal-1.10 > /dev/null 2>&1 || echo fail`
19
19
  if [ ! $RET ];
20
20
  then
21
 
    ACLOCAL=aclocal-1.9
 
21
    ACLOCAL=aclocal-1.10
22
22
  else
23
 
    echo "ERROR: this script requires aclocal-1.9 or aclocal-1.10"
24
 
    exit 1
 
23
    RET=`type aclocal-1.9 > /dev/null 2>&1 || echo fail` 
 
24
    if [ ! $RET ];
 
25
    then
 
26
      ACLOCAL=aclocal-1.9
 
27
    else
 
28
      echo "ERROR: this script requires aclocal-1.9, aclocal-1.10 or aclocal-1.11"
 
29
      exit 1
 
30
    fi
25
31
  fi
26
32
fi
27
33
 
28
 
# Check for automake 1.9/1.10
 
34
 
 
35
# Check for automake 1.9/1.10/1.11
29
36
echo "Checking automake..."
30
 
RET=`type automake-1.10 > /dev/null 2>&1 || echo fail`
 
37
RET=`type automake-1.11 > /dev/null 2>&1 || echo fail`
31
38
if [ ! $RET ];
32
39
then
33
 
  AUTOMAKE=automake-1.10
 
40
  AUTOMAKE=automake-1.11
34
41
else
35
 
  RET=`type automake-1.9 > /dev/null 2>&1 || echo fail`
 
42
  RET=`type automake-1.10 > /dev/null 2>&1 || echo fail`
36
43
  if [ ! $RET ];
37
44
  then
38
 
    AUTOMAKE=automake-1.9
 
45
    AUTOMAKE=automake-1.10
39
46
  else
40
 
    echo "ERROR: this script requires automake-1.9 or automake-1.10"
41
 
    exit 1
 
47
    RET=`type automake-1.9 > /dev/null 2>&1 || echo fail`
 
48
    if [ ! $RET ];
 
49
    then
 
50
      AUTOMAKE=automake-1.9
 
51
    else
 
52
      echo "ERROR: this script requires automake-1.9, automake-1.10 or automake-1.11"
 
53
      exit 1
 
54
    fi
42
55
  fi
43
56
fi
44
57