-
Notifications
You must be signed in to change notification settings - Fork 21
/
build-gettext-final.sh
executable file
·279 lines (226 loc) · 7.58 KB
/
build-gettext-final.sh
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#!/usr/bin/env bash
# Written and placed in public domain by Jeffrey Walton
# This script builds GetText and friends from sources.
# GetText is really unique among packages. It has circular dependencies on
# iConv, libunistring and libxml2. build-iconv-gettext.sh handles the
# iConv and GetText dependency. This script, build-gettext-final.sh,
# handles the libunistring and libxml2 dependencies.
#
# The way to run these scripts is, run build-iconv-gettext.sh first.
# That bootstraps iConv and GetText. Second, run build-gettext-final.sh.
# That gets the missing pieces, like libunistring and libxml support.
#
# For the iConv and GetText recipe, see
# https://www.gnu.org/software/libiconv/.
#
# Here are the interesting dependencies:
#
# libgettextlib.so: libiconv.so
# libgettextpo.so: libiconv.so, libiunistring.so
# libgettextsrc.so: libz.so, libiconv.so, libiunistring.so, libxml2.so,
# libgettextlib.so, libtextstyle.so
# libiconv.so: libgettextlib.so
# libiunistring.so: libiconv.so
GETTEXT_VER=0.21
GETTEXT_TAR="gettext-${GETTEXT_VER}.tar.gz"
GETTEXT_DIR="gettext-${GETTEXT_VER}"
PKG_NAME=gettext-final
###############################################################################
# Get the environment as needed.
if [[ "${SETUP_ENVIRON_DONE}" != "yes" ]]; then
if ! source ./setup-environ.sh
then
echo "Failed to set environment"
exit 1
fi
fi
if [[ -e "${INSTX_PKG_CACHE}/${PKG_NAME}" ]]; then
echo ""
echo "$PKG_NAME is already installed."
exit 0
fi
# The password should die when this subshell goes out of scope
if [[ "${SUDO_PASSWORD_DONE}" != "yes" ]]; then
if ! source ./setup-password.sh
then
echo "Failed to process password"
exit 1
fi
fi
###############################################################################
if ! ./build-cacert.sh
then
echo "Failed to install CA Certs"
exit 1
fi
###############################################################################
if ! ./build-zlib.sh
then
echo "Failed to build zLib"
exit 1
fi
###############################################################################
if ! ./build-ncurses-readline.sh
then
echo "Failed to build Ncurses and Readline"
exit 1
fi
###############################################################################
if ! ./build-unistr.sh
then
echo "Failed to build Unistring"
exit 1
fi
###############################################################################
if ! ./build-libxml2.sh
then
echo "Failed to build libxml2"
exit 1
fi
###############################################################################
echo ""
echo "========================================"
echo "=============== GetText ================"
echo "========================================"
echo ""
echo "***************************"
echo "Downloading package"
echo "***************************"
echo ""
echo "GetText ${GETTEXT_VER}..."
if ! "${WGET}" -q -O "$GETTEXT_TAR" --ca-certificate="${LETS_ENCRYPT_ROOT}" \
"https://ftp.gnu.org/pub/gnu/gettext/$GETTEXT_TAR"
then
echo "Failed to download GetText"
exit 1
fi
rm -rf "$GETTEXT_DIR" &>/dev/null
gzip -d < "$GETTEXT_TAR" | tar xf -
cd "$GETTEXT_DIR" || exit 1
# Patches are created with 'diff -u' from the pkg root directory.
if [[ -e ../patch/gettext.patch ]]; then
echo ""
echo "***************************"
echo "Patching package"
echo "***************************"
patch -u -p0 < ../patch/gettext.patch
fi
# Fix sys_lib_dlsearch_path_spec
bash "${INSTX_TOPDIR}/fix-configure.sh"
# Some non-GNU systems have Gzip, but it is anemic.
# GZIP_ENV = --best causes an autopoint-3 test failure.
IFS= find "$PWD" -name 'Makefile.in' -print | while read -r file
do
sed -e 's/GZIP_ENV = --best/GZIP_ENV = -7/g' "$file" > "$file.fixed"
mv "$file.fixed" "$file"
done
echo ""
echo "***************************"
echo "Configuring package"
echo "***************************"
if [[ "${INSTX_DEBUG_MAP}" -eq 1 ]]; then
gettext_cflags="${INSTX_CFLAGS} -fdebug-prefix-map=${PWD}=${INSTX_SRCDIR}/${GETTEXT_DIR}"
gettext_cxxflags="${INSTX_CXXFLAGS} -fdebug-prefix-map=${PWD}=${INSTX_SRCDIR}/${GETTEXT_DIR}"
else
gettext_cflags="${INSTX_CFLAGS}"
gettext_cxxflags="${INSTX_CXXFLAGS}"
fi
PKG_CONFIG_PATH="${INSTX_PKGCONFIG}" \
CPPFLAGS="${INSTX_CPPFLAGS}" \
ASFLAGS="${INSTX_ASFLAGS}" \
CFLAGS="${gettext_cflags}" \
CXXFLAGS="${gettext_cxxflags}" \
LDFLAGS="${INSTX_LDFLAGS}" \
LIBS="${INSTX_LDLIBS}" \
./configure \
--build="${AUTOCONF_BUILD}" \
--prefix="${INSTX_PREFIX}" \
--libdir="${INSTX_LIBDIR}" \
--enable-static --enable-shared \
--with-libiconv-prefix="${INSTX_PREFIX}" \
--with-libncurses-prefix="${INSTX_PREFIX}" \
--with-libunistring-prefix="${INSTX_PREFIX}" \
--with-libxml2-prefix="${INSTX_PREFIX}"
# --with-libintl-prefix="${INSTX_PREFIX}" \
# --with-libtextstyle-prefix="${INSTX_PREFIX}" \
# --with-bison-prefix="${INSTX_PREFIX}"
if [[ "$?" -ne 0 ]]
then
echo ""
echo "***************************"
echo "Failed to configure GetText"
echo "***************************"
bash "${INSTX_TOPDIR}/collect-logs.sh" "${PKG_NAME}"
exit 1
fi
# Escape dollar sign for $ORIGIN in makefiles. Required so
# $ORIGIN works in both configure tests and makefiles.
bash "${INSTX_TOPDIR}/fix-makefiles.sh"
echo ""
echo "***************************"
echo "Building package"
echo "***************************"
MAKE_FLAGS=("-j" "${INSTX_JOBS}")
if ! "${MAKE}" "${MAKE_FLAGS[@]}"
then
echo ""
echo "***************************"
echo "Failed to build GetText"
echo "***************************"
bash "${INSTX_TOPDIR}/collect-logs.sh" "${PKG_NAME}"
exit 1
fi
# Fix flags in *.pc files
bash "${INSTX_TOPDIR}/fix-pkgconfig.sh"
# Fix runpaths
bash "${INSTX_TOPDIR}/fix-runpath.sh"
echo ""
echo "***************************"
echo "Testing package"
echo "***************************"
MAKE_FLAGS=("check")
if ! "${MAKE}" "${MAKE_FLAGS[@]}"
then
echo ""
echo "***************************"
echo "Failed to test GetText"
echo "***************************"
bash "${INSTX_TOPDIR}/collect-logs.sh" "${PKG_NAME}"
# Solaris and some friends fail lang-gawk
# Darwin fails copy-acl-2.sh
# https://lists.gnu.org/archive/html/bug-gawk/2018-01/msg00026.html
# exit 1
echo ""
echo "***************************"
echo "Installing anyways..."
echo "***************************"
fi
# Fix runpaths again
bash "${INSTX_TOPDIR}/fix-runpath.sh"
echo ""
echo "***************************"
echo "Installing package"
echo "***************************"
MAKE_FLAGS=("install")
if [[ -n "${SUDO_PASSWORD}" ]]; then
printf "%s\n" "${SUDO_PASSWORD}" | sudo ${SUDO_ENV_OPT} -S "${MAKE}" "${MAKE_FLAGS[@]}"
printf "%s\n" "${SUDO_PASSWORD}" | sudo ${SUDO_ENV_OPT} -S bash "${INSTX_TOPDIR}/fix-permissions.sh" "${INSTX_PREFIX}"
printf "%s\n" "${SUDO_PASSWORD}" | sudo ${SUDO_ENV_OPT} -S bash "${INSTX_TOPDIR}/copy-sources.sh" "${PWD}" "${INSTX_SRCDIR}/${GETTEXT_DIR}"
else
"${MAKE}" "${MAKE_FLAGS[@]}"
bash "${INSTX_TOPDIR}/fix-permissions.sh" "${INSTX_PREFIX}"
bash "${INSTX_TOPDIR}/copy-sources.sh" "${PWD}" "${INSTX_SRCDIR}/${GETTEXT_DIR}"
fi
###############################################################################
touch "${INSTX_PKG_CACHE}/${PKG_NAME}"
cd "${CURR_DIR}" || exit 1
###############################################################################
# Set to false to retain artifacts
if true;
then
ARTIFACTS=("$GETTEXT_TAR" "$GETTEXT_DIR")
for artifact in "${ARTIFACTS[@]}"; do
rm -rf "$artifact"
done
fi
exit 0