forked from pgadmin-org/pgadmin3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap
executable file
·88 lines (77 loc) · 3 KB
/
bootstrap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/bin/bash
#######################################################################
#
# pgAdmin III - PostgreSQL Tools
# Copyright (C) 2002 - 2011, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
# bootstrap - bootstrap the build system
#
#######################################################################
# Check for aclocal 1.9/1.10/1.11
echo "Checking aclocal..."
RET=`type aclocal-1.11 > /dev/null 2>&1 || echo fail`
if [ x$RET != xfail ];
then
ACLOCAL=aclocal-1.11
else
RET=`type aclocal-1.10 > /dev/null 2>&1 || echo fail`
if [ x$RET != xfail ];
then
ACLOCAL=aclocal-1.10
else
RET=`type aclocal-1.9 > /dev/null 2>&1 || echo fail`
if [ x$RET != xfail ];
then
ACLOCAL=aclocal-1.9
else
echo "ERROR: this script requires aclocal-1.9, aclocal-1.10 or aclocal-1.11"
exit 1
fi
fi
fi
# Check for automake 1.9/1.10/1.11
echo "Checking automake..."
RET=`type automake-1.11 > /dev/null 2>&1 || echo fail`
if [ x$RET != xfail ];
then
AUTOMAKE=automake-1.11
else
RET=`type automake-1.10 > /dev/null 2>&1 || echo fail`
if [ x$RET != xfail ];
then
AUTOMAKE=automake-1.10
else
RET=`type automake-1.9 > /dev/null 2>&1 || echo fail`
if [ x$RET != xfail ];
then
AUTOMAKE=automake-1.9
else
echo "ERROR: this script requires automake-1.9, automake-1.10 or automake-1.11"
exit 1
fi
fi
fi
# Insert the version number wherever it's needed
echo "Stamping the version number..."
LONG_VER=`grep '#define VERSION_PACKAGE' pgadmin/include/version.h | awk '{print $3}'`
SHORT_VER=`echo $LONG_VER | cut -d . -f1,2`
sed -e "s/PGADMIN_LONG_VERSION/$LONG_VER/" -e "s/PGADMIN_SHORT_VERSION/$SHORT_VER/" configure.ac.in > configure.ac
sed -e "s/PGADMIN_LONG_VERSION/$LONG_VER/" -e "s/PGADMIN_SHORT_VERSION/$SHORT_VER/" pkg/mac/pgadmin.Info.plist.in > pkg/mac/pgadmin.Info.plist
sed -e "s/PGADMIN_LONG_VERSION/$LONG_VER/" -e "s/PGADMIN_SHORT_VERSION/$SHORT_VER/" pkg/mac/debug.pgadmin.Info.plist.in > pkg/mac/debug.pgadmin.Info.plist
sed -e "s/PGADMIN_LONG_VERSION/$LONG_VER/" -e "s/PGADMIN_SHORT_VERSION/$SHORT_VER/" pkg/mandrake/pgadmin3.spec.in > pkg/mandrake/pgadmin3.spec
sed -e "s/PGADMIN_LONG_VERSION/$LONG_VER/" -e "s/PGADMIN_SHORT_VERSION/$SHORT_VER/" pkg/redhat/pgadmin3.spec.in > pkg/redhat/pgadmin3.spec
sed -e "s/PGADMIN_LONG_VERSION/$LONG_VER/" -e "s/PGADMIN_SHORT_VERSION/$SHORT_VER/" pkg/slackware/build-release.in > pkg/slackware/build-release
sed -e "s/PGADMIN_LONG_VERSION/$LONG_VER/" -e "s/PGADMIN_SHORT_VERSION/$SHORT_VER/" pkg/src/build-tarball.in > pkg/src/build-tarball
sed -e "s/PGADMIN_LONG_VERSION/$LONG_VER/" -e "s/PGADMIN_SHORT_VERSION/$SHORT_VER/" pkg/suse/pgadmin3.spec.in > pkg/suse/pgadmin3.spec
sed -e "s/PGADMIN_LONG_VERSION/$LONG_VER/" -e "s/PGADMIN_SHORT_VERSION/$SHORT_VER/" docs/en_US/conf.py.in > docs/en_US/conf.py
echo "Configuring the build system..."
if [ ! -x config ]; then
set -x
mkdir config
fi
set -x
$ACLOCAL && \
autoheader && \
$AUTOMAKE --foreign --add-missing --copy && \
autoconf