blob: b20c044cdb8e90641d54e4647d6f85f8ddae0ef6 (
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
#!/bin/sh
# run this to generate all the initial makefiles, etc.
PROG=gnome-xine
# Check how echo works in this /bin/sh
case `echo -n` in
-n) _echo_n= _echo_c='\c';;
*) _echo_n=-n _echo_c=;;
esac
detect_configure_ac() {
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
(test -f $srcdir/configure.ac) || {
echo $_echo_n "*** Error ***: Directory "\`$srcdir\`" does not look like the"
echo " top-level directory"
exit 1
}
}
#--------------------
# AUTOCONF
#-------------------
detect_autoconf() {
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "**Error**: You must have \`autoconf' installed to compile gxine."
echo "Download the appropriate package for your distribution,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
exit 1
}
}
run_autoheader () {
echo $_echo_n " + Running autoheader: $_echo_c";
autoheader;
echo "done."
}
run_autoconf () {
echo $_echo_n " + Running autoconf: $_echo_c";
autoconf;
echo "done."
}
#--------------------
# LIBTOOL
#-------------------
detect_libtool() {
(libtool --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "**Error**: You must have \`libtool' installed to compile gxine."
echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.4.tar.gz"
echo "(or a newer version if it is available)"
exit 1
}
}
run_libtoolize() {
echo $_echo_n " + Running libtoolize: $_echo_c";
libtoolize --force --copy >/dev/null 2>&1;
echo "done."
}
#--------------------
# AUTOMAKE
#--------------------
detect_automake() {
if [ -f `which automake-1.6` ]; then
automake_1_6x=yes
else
if [ -f `which automake` ]; then
AM="`automake --version | sed -n 1p | sed -e 's/[a-zA-Z\ \.\(\)\-]//g'`"
if test $AM -lt 100 ; then
AM=`expr $AM \* 10`
fi
if [ `expr $AM` -ge 160 ]; then
automake_1_6x=yes
fi
else
echo
echo "You must have automake installed to compile $PROG."
echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.6.tar.gz"
echo "(or a newer version if it is available)"
exit 1
fi
fi
}
run_automake () {
if test x"$automake_1_6x" = x"no"; then
echo "Warning: automake < 1.6. Some warning message might occur from automake"
echo
fi
echo $_echo_n " + Running automake: $_echo_c";
if test x"$automake_1_6x" = "xyes"; then
automake-1.6 --gnu --add-missing --copy;
else
automake --gnu --add-missing --copy;
fi
echo "done."
}
#--------------------
# ACLOCAL
#-------------------
detect_aclocal() {
# if no automake, don't bother testing for aclocal
if [ -f `which aclocal-1.6` ]; then
aclocal_1_6x=yes
else
if [ -f `which aclocal` ]; then
AC="`aclocal --version | sed -n 1p | sed -e 's/[a-zA-Z\ \.\(\)\-]//g'`"
if test $AC -lt 100 ; then
AC=`expr $AC \* 10`
fi
if [ `expr $AC` -ge 160 ]; then
aclocal_1_6x=yes
fi
else
echo
echo "**Error**: Missing \`aclocal'. The version of \`automake'"
echo "installed doesn't appear recent enough."
echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz"
echo "(or a newer version if it is available)"
exit 1
fi
fi
}
run_aclocal () {
echo $_echo_n " + Running aclocal: $_echo_c"
if test x"$aclocal_1_6x" = x"yes"; then
aclocal-1.6 $aclocalinclude -I m4
else
aclocal $aclocalinclude -I m4
fi
echo "done."
}
#--------------------
# CONFIGURE
#-------------------
run_configure () {
rm -f config.cache
echo " + Running 'configure $@':"
if [ -z "$*" ]; then
echo " ** If you wish to pass arguments to ./configure, please"
echo " ** specify them on the command line."
fi
./configure "$@"
}
#---------------
# MAIN
#---------------
detect_configure_ac
detect_autoconf
detect_libtool
detect_automake
detect_aclocal
# help: print out usage message
# *) run aclocal, autoheader, automake, autoconf, configure
case "$1" in
aclocal)
run_aclocal
;;
autoheader)
run_autoheader
;;
automake)
run_automake
;;
autoconf)
run_aclocal
run_autoconf
;;
libtoolize)
run_libtoolize
;;
noconfig)
run_aclocal
run_libtoolize
run_autoheader
run_automake
run_autoconf
;;
*)
run_aclocal
run_libtoolize
run_autoheader
run_automake
run_autoconf
run_configure $@
;;
esac
|