[557fe91] | 1 | <?xml version="1.0"?>
|
---|
[db181c47] | 2 | <!DOCTYPE xsl:stylesheet [
|
---|
| 3 | <!ENTITY % general-entities SYSTEM "FAKEDIR/general.ent">
|
---|
| 4 | %general-entities;
|
---|
| 5 | ]>
|
---|
| 6 |
|
---|
[877cc6a] | 7 | <!-- $Id$ -->
|
---|
| 8 |
|
---|
[557fe91] | 9 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
| 10 | xmlns:exsl="http://exslt.org/common"
|
---|
| 11 | extension-element-prefixes="exsl"
|
---|
| 12 | version="1.0">
|
---|
| 13 |
|
---|
[63b2859] | 14 | <!-- XSLT stylesheet to create shell scripts from LFS books. -->
|
---|
[557fe91] | 15 |
|
---|
[31d6944] | 16 | <!-- Run test suites?
|
---|
| 17 | 0 = none
|
---|
| 18 | 1 = only chapter06 Glibc, GCC and Binutils testsuites
|
---|
| 19 | 2 = all chapter06 testsuites
|
---|
| 20 | 3 = all chapter05 and chapter06 testsuites-->
|
---|
| 21 | <xsl:param name="testsuite" select="1"/>
|
---|
[01e51a1] | 22 |
|
---|
[db181c47] | 23 | <!-- Install vim-lang package? -->
|
---|
| 24 | <xsl:param name="vim-lang" select="1"/>
|
---|
| 25 |
|
---|
[877cc6a] | 26 | <!-- Time zone -->
|
---|
| 27 | <xsl:param name="timezone" select="America/Toronto"/>
|
---|
| 28 |
|
---|
| 29 | <!-- Page size -->
|
---|
| 30 | <xsl:param name="page" select="letter"/>
|
---|
| 31 |
|
---|
| 32 | <!-- Locale settings -->
|
---|
| 33 | <xsl:param name="lang" select="en_CA"/>
|
---|
| 34 |
|
---|
[557fe91] | 35 | <xsl:template match="/">
|
---|
| 36 | <xsl:apply-templates select="//sect1"/>
|
---|
| 37 | </xsl:template>
|
---|
| 38 |
|
---|
| 39 | <xsl:template match="sect1">
|
---|
[c4cf6de] | 40 | <xsl:if test="count(descendant::screen/userinput) > 0 and
|
---|
| 41 | count(descendant::screen/userinput) > count(descendant::screen[@role='nodump'])">
|
---|
| 42 | <!-- The dirs names -->
|
---|
| 43 | <xsl:variable name="pi-dir" select="../processing-instruction('dbhtml')"/>
|
---|
| 44 | <xsl:variable name="pi-dir-value" select="substring-after($pi-dir,'dir=')"/>
|
---|
| 45 | <xsl:variable name="quote-dir" select="substring($pi-dir-value,1,1)"/>
|
---|
| 46 | <xsl:variable name="dirname" select="substring-before(substring($pi-dir-value,2),$quote-dir)"/>
|
---|
| 47 | <!-- The file names -->
|
---|
| 48 | <xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
|
---|
| 49 | <xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
|
---|
| 50 | <xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
|
---|
| 51 | <!-- The build order -->
|
---|
| 52 | <xsl:variable name="position" select="position()"/>
|
---|
| 53 | <xsl:variable name="order">
|
---|
| 54 | <xsl:choose>
|
---|
| 55 | <xsl:when test="string-length($position) = 1">
|
---|
| 56 | <xsl:text>00</xsl:text>
|
---|
| 57 | <xsl:value-of select="$position"/>
|
---|
| 58 | </xsl:when>
|
---|
| 59 | <xsl:when test="string-length($position) = 2">
|
---|
| 60 | <xsl:text>0</xsl:text>
|
---|
| 61 | <xsl:value-of select="$position"/>
|
---|
| 62 | </xsl:when>
|
---|
| 63 | <xsl:otherwise>
|
---|
| 64 | <xsl:value-of select="$position"/>
|
---|
| 65 | </xsl:otherwise>
|
---|
| 66 | </xsl:choose>
|
---|
| 67 | </xsl:variable>
|
---|
| 68 | <!-- Creating dirs and files -->
|
---|
| 69 | <exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
|
---|
[76fad58] | 70 | <xsl:choose>
|
---|
| 71 | <xsl:when test="@id='ch-system-changingowner' or
|
---|
| 72 | @id='ch-system-creatingdirs' or
|
---|
| 73 | @id='ch-system-createfiles'">
|
---|
[fd691b4] | 74 | <xsl:text>#!/tools/bin/bash
set -e

</xsl:text>
|
---|
| 75 | </xsl:when>
|
---|
| 76 | <xsl:when test="@id='ch-tools-stripping' or
|
---|
| 77 | @id='ch-system-strippingagain'">
|
---|
| 78 | <xsl:text>#!/bin/sh
</xsl:text>
|
---|
[76fad58] | 79 | </xsl:when>
|
---|
| 80 | <xsl:otherwise>
|
---|
[fd691b4] | 81 | <xsl:text>#!/bin/sh
set -e

</xsl:text>
|
---|
[76fad58] | 82 | </xsl:otherwise>
|
---|
| 83 | </xsl:choose>
|
---|
[0d52034] | 84 | <xsl:if test="sect2[@role='installation']">
|
---|
[fd691b4] | 85 | <xsl:text>cd $PKGDIR
</xsl:text>
|
---|
[db181c47] | 86 | <xsl:if test="@id='ch-system-vim' and $vim-lang = '1'">
|
---|
[f0eb956] | 87 | <xsl:text>tar -xvf ../vim-&vim-version;-lang.* --strip-components=1
</xsl:text>
|
---|
[db181c47] | 88 | </xsl:if>
|
---|
[44f88e3] | 89 | </xsl:if>
|
---|
[db9cec6] | 90 | <xsl:apply-templates select=".//para/userinput | .//screen"/>
|
---|
[31d6944] | 91 | <xsl:if test="$testsuite='3' and @id='ch-tools-glibc'">
|
---|
| 92 | <xsl:copy-of select="//sect1[@id='ch-system-glibc']/sect2[2]/screen[@role='nodump']"/>
|
---|
| 93 | <xsl:text>
</xsl:text>
|
---|
| 94 | </xsl:if>
|
---|
[816f3f43] | 95 | <xsl:text>exit</xsl:text>
|
---|
[c4cf6de] | 96 | </exsl:document>
|
---|
| 97 | </xsl:if>
|
---|
[557fe91] | 98 | </xsl:template>
|
---|
| 99 |
|
---|
| 100 | <xsl:template match="screen">
|
---|
[31d6944] | 101 | <xsl:if test="child::* = userinput and not(@role = 'nodump')">
|
---|
| 102 | <xsl:apply-templates select="userinput" mode="screen"/>
|
---|
[557fe91] | 103 | </xsl:if>
|
---|
| 104 | </xsl:template>
|
---|
| 105 |
|
---|
[db9cec6] | 106 | <xsl:template match="para/userinput">
|
---|
[31d6944] | 107 | <xsl:if test="(contains(string(),'test') or
|
---|
| 108 | contains(string(),'check')) and
|
---|
| 109 | (($testsuite = '2' and
|
---|
| 110 | ancestor::chapter[@id='chapter-building-system']) or
|
---|
| 111 | $testsuite = '3')">
|
---|
[3eb60fa] | 112 | <xsl:value-of select="substring-before(string(),'make')"/>
|
---|
| 113 | <xsl:text>make -k</xsl:text>
|
---|
| 114 | <xsl:value-of select="substring-after(string(),'make')"/>
|
---|
[fd691b4] | 115 | <xsl:text> || true
</xsl:text>
|
---|
[db9cec6] | 116 | </xsl:if>
|
---|
| 117 | </xsl:template>
|
---|
| 118 |
|
---|
| 119 | <xsl:template match="userinput" mode="screen">
|
---|
[3eb60fa] | 120 | <xsl:choose>
|
---|
[fd691b4] | 121 | <!-- Estandarized package formats -->
|
---|
[92568bf] | 122 | <xsl:when test="contains(string(),'tar.gz')">
|
---|
| 123 | <xsl:value-of select="substring-before(string(),'tar.gz')"/>
|
---|
[be9970b] | 124 | <xsl:text>tar.*</xsl:text>
|
---|
[92568bf] | 125 | <xsl:value-of select="substring-after(string(),'tar.gz')"/>
|
---|
[fd691b4] | 126 | <xsl:text>
</xsl:text>
|
---|
| 127 | </xsl:when>
|
---|
| 128 | <!-- Avoiding a race condition in a patch -->
|
---|
| 129 | <xsl:when test="contains(string(),'debian_fixes')">
|
---|
| 130 | <xsl:value-of select="substring-before(string(),'patch')"/>
|
---|
| 131 | <xsl:text>patch -Z</xsl:text>
|
---|
| 132 | <xsl:value-of select="substring-after(string(),'patch')"/>
|
---|
| 133 | <xsl:text>
</xsl:text>
|
---|
| 134 | </xsl:when>
|
---|
[877cc6a] | 135 | <!-- Setting $LANG for /etc/profile -->
|
---|
| 136 | <xsl:when test="ancestor::sect1[@id='ch-scripts-profile'] and
|
---|
| 137 | contains(string(),'export LANG=')">
|
---|
| 138 | <xsl:value-of select="substring-before(string(),'export LANG=')"/>
|
---|
| 139 | <xsl:text>export LANG=</xsl:text>
|
---|
| 140 | <xsl:value-of select="$lang"/>
|
---|
| 141 | <xsl:value-of select="substring-after(string(),'modifiers]')"/>
|
---|
| 142 | <xsl:text>
</xsl:text>
|
---|
| 143 | </xsl:when>
|
---|
[fd691b4] | 144 | <!-- Copying the kernel config file -->
|
---|
| 145 | <xsl:when test="string() = 'make mrproper'">
|
---|
| 146 | <xsl:text>make mrproper
</xsl:text>
|
---|
| 147 | <xsl:text>cp -v ../kernel-config .config
</xsl:text>
|
---|
[92568bf] | 148 | </xsl:when>
|
---|
[4e9a3b3] | 149 | <!-- The Coreutils and Module-Init-Tools test suites are optional -->
|
---|
[31d6944] | 150 | <xsl:when test="($testsuite = '0' or $testsuite = '1') and
|
---|
[4e9a3b3] | 151 | (ancestor::sect1[@id='ch-system-coreutils'] or
|
---|
| 152 | ancestor::sect1[@id='ch-system-module-init-tools']) and
|
---|
[79f7cf9] | 153 | (contains(string(),'check') or
|
---|
| 154 | contains(string(),'dummy'))"/>
|
---|
[fd691b4] | 155 | <!-- Fixing toolchain test suites run -->
|
---|
[01e51a1] | 156 | <xsl:when test="string() = 'make check' or
|
---|
| 157 | string() = 'make -k check'">
|
---|
| 158 | <xsl:choose>
|
---|
[31d6944] | 159 | <xsl:when test="(($testsuite = '1' or $testsuite = '2') and
|
---|
| 160 | ancestor::chapter[@id='chapter-building-system']) or
|
---|
| 161 | $testsuite = '3'">
|
---|
[fd691b4] | 162 | <xsl:text>make -k check || true</xsl:text>
|
---|
| 163 | <xsl:text>
</xsl:text>
|
---|
[31d6944] | 164 | </xsl:when>
|
---|
[fd691b4] | 165 | </xsl:choose>
|
---|
| 166 | </xsl:when>
|
---|
| 167 | <xsl:when test="contains(string(),'glibc-check-log')">
|
---|
| 168 | <xsl:choose>
|
---|
[31d6944] | 169 | <xsl:when test="$testsuite != '0'">
|
---|
[fd691b4] | 170 | <xsl:value-of select="substring-before(string(),'
')"/>
|
---|
| 171 | <xsl:text> || true
</xsl:text>
|
---|
| 172 | <xsl:value-of select="substring-after(string(),'
')"/>
|
---|
[01e51a1] | 173 | <xsl:text>
</xsl:text>
|
---|
[31d6944] | 174 | </xsl:when>
|
---|
[01e51a1] | 175 | </xsl:choose>
|
---|
| 176 | </xsl:when>
|
---|
[fd691b4] | 177 | <xsl:when test="contains(string(),'test_summary') or
|
---|
[92568bf] | 178 | contains(string(),'expect -c')">
|
---|
[01e51a1] | 179 | <xsl:choose>
|
---|
[31d6944] | 180 | <xsl:when test="(($testsuite = '1' or $testsuite = '2') and
|
---|
| 181 | ancestor::chapter[@id='chapter-building-system']) or
|
---|
| 182 | $testsuite = '3'">
|
---|
[01e51a1] | 183 | <xsl:apply-templates/>
|
---|
[fd691b4] | 184 | <xsl:text>
</xsl:text>
|
---|
[31d6944] | 185 | </xsl:when>
|
---|
[01e51a1] | 186 | </xsl:choose>
|
---|
[3eb60fa] | 187 | </xsl:when>
|
---|
[fd691b4] | 188 | <!-- Don't stop on strip run -->
|
---|
| 189 | <xsl:when test="contains(string(),'strip ')">
|
---|
[3eb60fa] | 190 | <xsl:apply-templates/>
|
---|
[fd691b4] | 191 | <xsl:text> || true
</xsl:text>
|
---|
[1f025ca] | 192 | </xsl:when>
|
---|
[fd691b4] | 193 | <!-- The rest of commands -->
|
---|
[1f025ca] | 194 | <xsl:otherwise>
|
---|
| 195 | <xsl:apply-templates/>
|
---|
[fd691b4] | 196 | <xsl:text>
</xsl:text>
|
---|
[1f025ca] | 197 | </xsl:otherwise>
|
---|
| 198 | </xsl:choose>
|
---|
| 199 | </xsl:template>
|
---|
| 200 |
|
---|
[557fe91] | 201 | <xsl:template match="replaceable">
|
---|
[a41ce58] | 202 | <xsl:choose>
|
---|
[2a54650] | 203 | <xsl:when test="ancestor::sect1[@id='ch-system-glibc']">
|
---|
[877cc6a] | 204 | <xsl:value-of select="$timezone"/>
|
---|
[2a54650] | 205 | </xsl:when>
|
---|
[a41ce58] | 206 | <xsl:when test="ancestor::sect1[@id='ch-system-groff']">
|
---|
[877cc6a] | 207 | <xsl:value-of select="$page"/>
|
---|
[a41ce58] | 208 | </xsl:when>
|
---|
| 209 | <xsl:otherwise>
|
---|
| 210 | <xsl:text>**EDITME</xsl:text>
|
---|
| 211 | <xsl:apply-templates/>
|
---|
| 212 | <xsl:text>EDITME**</xsl:text>
|
---|
| 213 | </xsl:otherwise>
|
---|
| 214 | </xsl:choose>
|
---|
[557fe91] | 215 | </xsl:template>
|
---|
| 216 |
|
---|
| 217 | </xsl:stylesheet>
|
---|