blob: 6b747cf0bb9315791458565cabc4f17fc83a0dc8 (
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
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
#!/bin/sh
[ -r ./po_functions ] || exit 1
. ./po_functions
if [ "$1" = "--help" ]; then
echo "$0: Generate the Debian Installer Manual in several different formats"
echo "from xml or po files."
echo "Usage: $0 [arch] [lang] [format]"
echo "[format] may consist of multiple formats provided they are quoted (e.g. \"html pdf\")"
echo "Supported formats: html, ps, pdf, txt"
exit 0
fi
arch=${1:-i386}
languages=${2:-en}
formats=${3:-html}
lang_id="$(echo $languages | tr A-Z a-z | sed "s/_/-/")"
## Configuration
basedir="$(cd "$(dirname $0)"; pwd)"
manual_path="$(echo $basedir | sed "s:/build$::")"
build_path="$manual_path/build"
cd $build_path
stylesheet_dir="$build_path/stylesheets"
stylesheet_profile="$stylesheet_dir/style-profile.xsl"
if [ ! "$web_build" ]; then
stylesheet_html="$stylesheet_dir/style-html.xsl"
else
stylesheet_html="$stylesheet_dir/style-html-web.xsl"
fi
stylesheet_html_single="$stylesheet_dir/style-html-single.xsl"
stylesheet_dsssl="$stylesheet_dir/style-print.dsl"
stylesheet_css="$stylesheet_dir/install.css"
stylesheet_images_dir="$stylesheet_dir/png"
entities_path="$build_path/entities"
source_path="$manual_path/$languages"
if [ -z "$destdir" ]; then
destdir="build.out"
fi
if [ -z "$tempdir" ]; then
tempdir="build.tmp"
fi
dynamic="${tempdir}/dynamic.ent"
create_profiled () {
[ -x "`which xsltproc 2>/dev/null`" ] || return 9
echo "Info: creating temporary profiled .xml file..."
if [ ! "$official_build" ]; then
unofficial_build="FIXME;unofficial-build"
else
unofficial_build=""
fi
if [ -z "$manual_release" ]; then
manual_release="stretch"
fi
if [ -z "$manual_target" ]; then
manual_target="for_cd"
fi
# Now we source the profiling information for the selected architecture
[ -f "arch-options/${arch}" ] || {
echo "Error: unknown architecture '$arch'" >&2
return 1
}
. arch-options/$arch
os=`dpkg-architecture -a$arch -qDEB_HOST_ARCH_OS 2> /dev/null`
. arch-options/$os
# Now we source the profiling information for the current language
if [ -f "lang-options/${languages}" ]; then
. lang-options/$languages
fi
# Join all architecture options into one big variable
condition="$fdisk;$network;$boot;$smp;$frontend;$other;$goodies;$unofficial_build;$status;$manual_release"
# Add language options
condition="$condition;$optional_paras"
# Add build options for the manual
condition="$condition;$unofficial_build;$status;$manual_release;$manual_target"
# Write dynamic non-profilable entities into the file
echo "<!-- arch- and lang-specific non-profilable entities -->" > $dynamic
echo "<!ENTITY langext \".${languages}\">" >> $dynamic
echo "<!ENTITY architecture \"${arch}\">" >> $dynamic
echo "<!ENTITY arch-kernel \"${arch_kernel}\">" >> $dynamic
echo "<!ENTITY arch-listname \"${arch_listname}\">" >> $dynamic
echo "<!ENTITY arch-porturl \"${arch_porturl}\">" >> $dynamic
echo "<!ENTITY arch-parttype \"${arch_parttype}\">" >> $dynamic
echo "<!ENTITY kernelversion \"${kernelversion}\">" >> $dynamic
echo "<!ENTITY kernelpackage \"${kernelpackage}\">" >> $dynamic
echo "<!ENTITY smp-config-section \"${smp_config_section}\">" >> $dynamic
echo "<!ENTITY smp-config-option \"${smp_config_option}\">" >> $dynamic
echo "<!ENTITY minimum-memory \"${minimum_memory}¬ation-megabytes;\">" >> $dynamic
echo "<!ENTITY minimum-memory-gtk \"${minimum_memory_gtk}¬ation-megabytes;\">" >> $dynamic
sed "s:##SRCPATH##:$source_path:" templates/docstruct.ent >> $dynamic
sed "s:##LANG##:$languages:g" templates/install.xml.template | \
sed "s:##LANG_ID##:$lang_id:g" | \
sed "s:##TEMPDIR##:$tempdir:g" | \
sed "s:##ENTPATH##:$entities_path:g" | \
sed "s:##SRCPATH##:$source_path:" > $tempdir/install.${languages}.xml
# Create the profiled xml file
xsltproc \
--xinclude \
--stringparam profile.arch "$archspec" \
--stringparam profile.condition "$condition" \
--output $tempdir/install.${languages}.profiled.xml \
$stylesheet_profile \
$tempdir/install.${languages}.xml
RET=$?; [ $RET -ne 0 ] && return $RET
return 0
}
# Delete any old generated XML files
clear_xml
# We need to merge the XML files for English and update the POT files
export PO_USEBUILD="1"
update_templates
for lang in $languages; do
echo "Language: $lang";
# Update PO files and create XML files
if [ ! -d ../$lang ] && uses_po; then
generate_xml
fi
done
create_html () {
echo "Info: creating .html files..."
xsltproc \
--xinclude \
--stringparam base.dir $destdir/html/ \
$stylesheet_html \
$tempdir/install.${languages}.profiled.xml 2>&1
RET=$?; [ $RET -ne 0 ] && return $RET
# Copy the custom css stylesheet to the destination directory
cp $stylesheet_css $destdir/html/
mkdir $destdir/html/images
cp $stylesheet_images_dir/* $destdir/html/images
return 0
}
create_text () {
[ -x "`which w3m 2>/dev/null`" ] || return 9
echo "Info: creating temporary .html file..."
xsltproc \
--xinclude \
--output $tempdir/install.${languages}.html \
$stylesheet_html_single \
$tempdir/install.${languages}.profiled.xml
RET=$?; [ $RET -ne 0 ] && return $RET
# Replace some unprintable characters
sed "s:–:-:g # n-dash
s:—:--:g # m-dash
s:“:\":g # different types of quotes
s:”:\":g
s:„:\":g
s:…:...:g # ellipsis
s:™: (tm):g # trademark" \
$tempdir/install.${languages}.html >$tempdir/install.${languages}.corr.html
RET=$?; [ $RET -ne 0 ] && return $RET
echo "Info: creating .txt file..."
# Set encoding for output file
case "$languages" in
ru) CHARSET=KOI8-R ;;
*) CHARSET=UTF-8 ;;
esac
HOME=$tempdir w3m -dump $tempdir/install.${languages}.corr.html \
-o display_charset=$CHARSET \
>$destdir/install.${languages}.txt
RET=$?; [ $RET -ne 0 ] && return $RET
return 0
}
create_dvi () {
[ -x "`which openjade 2>/dev/null`" ] || return 9
[ -x "`which jadetex 2>/dev/null`" ] || return 9
# Skip this step if the .dvi file already exists
[ -f "$tempdir/install.${languages}.dvi" ] && return
echo "Info: creating temporary .tex file..."
# And use openjade to generate a .tex file
export SP_ENCODING="utf-8"
openjade -t tex \
-b utf-8 \
-o $tempdir/install.${languages}.tex \
-d $stylesheet_dsssl \
-V tex-backend declaration/xml.dcl \
$tempdir/install.${languages}.profiled.xml
RET=$?; [ $RET -ne 0 ] && return $RET
# some languages need additional macro
case "$languages" in
ko)
mv $tempdir/install.${languages}.tex \
$tempdir/install.${languages}.orig.tex
cat templates/header.${languages}.tex \
$tempdir/install.${languages}.orig.tex \
> $tempdir/install.${languages}.tex
rm $tempdir/install.${languages}.orig.tex
;;
esac
echo "Info: creating temporary .dvi file..."
# Next we use jadetex to generate a .dvi file
# This needs three passes to properly generate the index (page numbering)
cd $tempdir
for PASS in 1 2 3 ; do
jadetex install.${languages}.tex >/dev/null
RET=$?; [ $RET -ne 0 ] && break
done
cd ..
[ $RET -ne 0 ] && return $RET
return 0
}
create_pdf() {
[ -x "`which dblatex 2>/dev/null`" ] || return 9
echo "Info: creating .pdf file..."
mkdir -p $tempdir/dblatex
(TMPDIR=$tempdir/dblatex dblatex -d -V -T db2latex -b xetex -p ./stylesheets/dblatex.xsl \
-o $tempdir/install.${languages}.pdf \
$tempdir/install.${languages}.profiled.xml --param=lingua=${languages} )
RET=$?; [ $RET -ne 0 ] && return $RET
mv $tempdir/install.${languages}.pdf $destdir/
return 0
}
create_ps() {
[ -x "`which dvips 2>/dev/null`" ] || return 9
create_dvi
RET=$?; [ $RET -ne 0 ] && return $RET
echo "Info: creating .ps file..."
dvips -q $tempdir/install.${languages}.dvi
RET=$?; [ $RET -ne 0 ] && return $RET
mv install.${languages}.ps $destdir/
return 0
}
## MAINLINE
# Clean old builds
rm -rf $tempdir
rm -rf $destdir
[ -d "$manual_path/$languages" ] || {
echo "Error: unknown language '$languages'" >&2
exit 1
}
mkdir -p $tempdir
mkdir -p $destdir
# Create profiled XML. This is needed for all output formats.
create_profiled
RET=$?; [ $RET -ne 0 ] && exit 1
BUILD_OK=""
BUILD_FAIL=""
for format in $formats ; do
case "$languages" in
__)
if [ "$format" = "pdf" -o "$format" = "ps" ] ; then
echo "Warning: pdf and ps formats are currently not supported for __."
BUILD_SKIP="$BUILD_SKIP $format"
continue
fi
;;
esac
case $format in
html) create_html;;
ps) create_ps;;
pdf) create_pdf;;
txt) create_text;;
*)
echo "Error: format $format unknown or not yet supported!" >&2
exit 1
;;
esac
RET=$?
case $RET in
0)
BUILD_OK="$BUILD_OK $format"
;;
9)
BUILD_FAIL="$BUILD_FAIL $format"
echo "Error: build of $format failed because of missing build dependencies" >&2
if [ "$format" = "pdf" ] ; then
echo "Error: (make sure you have ghostscript and dblatex installed for PDF builds)" >&2
fi
;;
*)
BUILD_FAIL="$BUILD_FAIL $format"
echo "Error: build of $format failed with error code $RET" >&2
;;
esac
done
# Clean up
rm -r $tempdir
# Delete temporary PO files and generated XML files
clear_po
clear_xml
# Evaluate the overall results
[ -n "$BUILD_SKIP" ] && echo "Info: The following formats were skipped:$BUILD_SKIP"
[ -z "$BUILD_FAIL" ] && exit 0 # Build successful for all formats
echo "Warning: The following formats failed to build:$BUILD_FAIL"
[ -n "$BUILD_OK" ] && exit 2 # Build failed for some formats
exit 1 # Build failed for all formats
|