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
|
#!/bin/sh
if [ "$1" = "--help" ]; then
echo "$0: Generate the Debian Installer Manual in several different formats"
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, pdf, txt"
exit 0
fi
arch=${1:-i386}
language=${2:-en}
formats=${3:-html}
lang_id="$(echo $language | 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/$language"
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="buster"
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/${language}" ]; then
. lang-options/$language
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 \".${language}\">" >> $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-strict \"${minimum_memory_strict}¬ation-megabytes;\">" >> $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##:$language: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.${language}.xml
# Create the profiled xml file
xsltproc \
--xinclude \
--stringparam profile.arch "$archspec" \
--stringparam profile.condition "$condition" \
--output $tempdir/install.${language}.profiled.xml \
$stylesheet_profile \
$tempdir/install.${language}.xml
RET=$?; [ $RET -ne 0 ] && return $RET
return 0
}
create_html () {
echo "Info: creating .html files..."
xsltproc \
--xinclude \
--stringparam base.dir $destdir/html/ \
$stylesheet_html \
$tempdir/install.${language}.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.${language}.html \
$stylesheet_html_single \
$tempdir/install.${language}.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.${language}.html >$tempdir/install.${language}.corr.html
RET=$?; [ $RET -ne 0 ] && return $RET
echo "Info: creating .txt file..."
# Set encoding for output file
case "$language" in
ru) CHARSET=KOI8-R ;;
*) CHARSET=UTF-8 ;;
esac
HOME=$tempdir w3m -dump $tempdir/install.${language}.corr.html \
-o display_charset=$CHARSET \
>$destdir/install.${language}.txt
RET=$?; [ $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.${language}.pdf \
$tempdir/install.${language}.profiled.xml --param=lingua=${language} )
RET=$?; [ $RET -ne 0 ] && return $RET
mv $tempdir/install.${language}.pdf $destdir/
return 0
}
## MAINLINE
# Clean old builds
rm -rf $tempdir
rm -rf $destdir
[ -d "$manual_path/$language" ] || {
echo "Error: unknown language '$language'" >&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 "$language" in
__)
if [ "$format" = "pdf" ] ; then
echo "Warning: pdf format is currently not supported for __."
BUILD_SKIP="$BUILD_SKIP $format"
continue
fi
;;
esac
case $format in
html) create_html;;
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
# 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
|