blob: d55333ec561cd8bbe1578acd30ac900e41ae3629 (
plain)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
#!/bin/sh -e
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
# Bootstrap the pristine source ready for distribution.
SCRIPT_OK=0
SCRIPT_ERROR=1
ACINCLUDE_FILE="acinclude.m4"
ACINCLUDE_IN_FILE="acinclude.m4.in"
ACINCLUDE_TMP_FILE="acinclude.m4.tmp"
AC_CHECK_ICU_COMPRESSED_FILE="build-contrib/ac_check_icu.m4_2008-06-07.gz"
AC_CHECK_CURL_COMPRESSED_FILE="build-contrib/ac_check_curl.m4_2008-04-12.gz"
AUTHORS_FILE="authors.xml"
BUILD_AUX_DIRECTORY="build-aux"
CONFIG_GUESS_COMPRESSED_FILE="build-contrib/config.guess_2008-06-07.gz"
CONFIG_GUESS_FILE="build-aux/config.guess"
CONFIG_SUB_COMPRESSED_FILE="build-contrib/config.sub_2008-06-07.gz"
CONFIG_SUB_FILE="build-aux/config.sub"
M4_DIRECTORY="m4"
M4_AC_CHECK_ICU_FILE="m4/ac_check_icu.m4"
M4_AC_CHECK_CURL_FILE="m4/ac_check_curl.m4"
REPOSITORY_URI="http://svn.apache.org/repos/asf/incubator/couchdb/trunk"
basename=`basename $0`
get () {
variable_name=$1
echo "changequote(\`[', \`]')" > $ACINCLUDE_TMP_FILE
sed -e "s/m4_//" < $ACINCLUDE_IN_FILE >> $ACINCLUDE_TMP_FILE
echo $variable_name >> $ACINCLUDE_TMP_FILE
if test -x "`which m4 || true`"; then
`which m4` $ACINCLUDE_TMP_FILE | grep -v "^$" || true
else
if test -x "`which gm4 || true`"; then
`which gm4` $ACINCLUDE_TMP_FILE | grep -v "^$" || true
else
echo unknown
fi
fi
rm -f $ACINCLUDE_TMP_FILE
}
display_version () {
cat << EOF
$basename - `get LOCAL_PACKAGE_NAME` `get LOCAL_VERSION_PRIMARY`
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
EOF
}
display_help () {
cat << EOF
Usage: $basename [OPTION]...
The $basename script bootstraps the pristeen source so that it can be built.
The exit status is 0 for success or 1 for failure.
Options:
-h display a short help message and exit
-v display version information and exit
Environment variables:
REVISION manual override for revision information
Report bugs at <`get LOCAL_BUG_URI`>.
EOF
}
display_error () {
if test -n "$1"; then
echo $1 >&2
fi
echo >&2
echo "Try \`"$basename" -h' for more information." >&2
exit $SCRIPT_ERROR
}
generate_acinclude () {
if test -z "$REVISION"; then
REVISION=`\`which svn\` info . 2> /dev/null | awk "/Revision:/{print \\$2}"`
fi
if test -z "`get LOCAL_VERSION_STAGE`" -o -z "$REVISION"; then
sed "s/%release%//" < $ACINCLUDE_IN_FILE > $ACINCLUDE_FILE
else
sed "s/%release%/$REVISION/" < $ACINCLUDE_IN_FILE > $ACINCLUDE_FILE
fi
}
process_file_collection () {
gunzip -c $CONFIG_GUESS_COMPRESSED_FILE > $CONFIG_GUESS_FILE
gunzip -c $CONFIG_SUB_COMPRESSED_FILE > $CONFIG_SUB_FILE
gunzip -c $AC_CHECK_ICU_COMPRESSED_FILE > $M4_AC_CHECK_ICU_FILE
gunzip -c $AC_CHECK_CURL_COMPRESSED_FILE > $M4_AC_CHECK_CURL_FILE
}
run_command_collection () {
if test -x "`which glibtoolize || true`"; then
glibtoolize -f -c
else
libtoolize -f -c
fi
aclocal -I m4
autoheader -f
automake -f -c -a --gnits
autoconf -f
cat << EOF
You have bootstrapped Apache CouchDB, time to relax.
Run \`./configure' to configure the source before you install.
EOF
}
parse_script_option_list () {
set +e
options=`getopt hVC $@`
if test ! $? -eq 0; then
display_error
fi
set -e
eval set -- $options
while [ $# -gt 0 ]; do
case "$1" in
-h) shift; display_help; exit $SCRIPT_OK;;
-V) shift; display_version; exit $SCRIPT_OK;;
--) shift; break;;
*) display_error "Unknown option: $1" >&2;;
esac
done
cd `dirname $0`
process_file_collection
generate_acinclude
run_command_collection
}
parse_script_option_list $@
|