blob: 8d718614d2207026a32c8b414d96f8621b9f5f96 (
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
|
#!/bin/sh
CURRENT_DIR=`pwd`
AUTOPOINT_TMP_DIR=`mktemp -d autopoint.tmp.XXXXXXXXXX`
echo "*** Entering temporary directory ${AUTOPOINT_TMP_DIR}"
cd ${AUTOPOINT_TMP_DIR}
echo
echo "*** Creating dummy configure.ac"
{
cat <<EOF
AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.6])
AM_GNU_GETTEXT([external])
EOF
} > configure.ac
echo
echo "*** Invoking autopoint"
autopoint ||
{
echo
echo "WARNING: autopoint failed."
echo "WARNING: It is required for getting \`config.rpath'."
echo "WARNING: Please install autopoint 0.19.6 or newer."
echo "WARNING: Depending on the platform, this is either"
echo "WARNING: a separate package or part of \`gettext-devel'."
}
echo
echo "*** Leaving temporary directory ${AUTOPOINT_TMP_DIR}"
cd ${CURRENT_DIR}
echo
echo "*** Copying config.rpath from temporary directory"
cp ${AUTOPOINT_TMP_DIR}/config.rpath . ||
{
echo
echo "WARNING: Copy failed."
if [ -e config.rpath ]; then
echo "WARNING: Using existing \`config.rpath'."
else
echo
echo "ERROR: config.rpath does not exist."
echo "ERROR: Please install autopoint 0.19.6 or newer."
echo "ERROR: Depending on the platform, this is either"
echo "ERROR: a separate package or part of \`gettext-devel'."
echo "ERROR: Or, please copy \`config.rpath'."
exit 1
fi
}
echo
echo "*** Deleting temporary directory"
rm -fr ${AUTOPOINT_TMP_DIR}
echo
echo "*** Invoking autoreconf"
autoreconf -v -i
|