source: dump-lfs-scripts.xsl@ 6e31ef7

0.2 1.0 2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 6e31ef7 was f0f60d0, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

The kernel config file must be put in place after "make mrproper" to work.

  • Property mode set to 100644
File size: 7.1 KB
Line 
1<?xml version="1.0"?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 xmlns:exsl="http://exslt.org/common"
4 extension-element-prefixes="exsl"
5 version="1.0">
6
7<!-- XSLT stylesheet to create shell scripts from LFS books. -->
8
9 <!-- Run optional test suites? -->
10 <xsl:param name="testsuite" select="0"/>
11
12 <!-- Run toolchain test suites? -->
13 <xsl:param name="toolchaintest" select="1"/>
14
15 <xsl:template match="/">
16 <xsl:apply-templates select="//sect1"/>
17 </xsl:template>
18
19 <xsl:template match="sect1">
20 <xsl:if test="count(descendant::screen/userinput) &gt; 0 and
21 count(descendant::screen/userinput) &gt; count(descendant::screen[@role='nodump'])">
22 <!-- The dirs names -->
23 <xsl:variable name="pi-dir" select="../processing-instruction('dbhtml')"/>
24 <xsl:variable name="pi-dir-value" select="substring-after($pi-dir,'dir=')"/>
25 <xsl:variable name="quote-dir" select="substring($pi-dir-value,1,1)"/>
26 <xsl:variable name="dirname" select="substring-before(substring($pi-dir-value,2),$quote-dir)"/>
27 <!-- The file names -->
28 <xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
29 <xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
30 <xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
31 <!-- The build order -->
32 <xsl:variable name="position" select="position()"/>
33 <xsl:variable name="order">
34 <xsl:choose>
35 <xsl:when test="string-length($position) = 1">
36 <xsl:text>00</xsl:text>
37 <xsl:value-of select="$position"/>
38 </xsl:when>
39 <xsl:when test="string-length($position) = 2">
40 <xsl:text>0</xsl:text>
41 <xsl:value-of select="$position"/>
42 </xsl:when>
43 <xsl:otherwise>
44 <xsl:value-of select="$position"/>
45 </xsl:otherwise>
46 </xsl:choose>
47 </xsl:variable>
48 <!-- Creating dirs and files -->
49 <exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
50 <xsl:choose>
51 <xsl:when test="@id='ch-system-changingowner' or
52 @id='ch-system-creatingdirs' or
53 @id='ch-system-createfiles'">
54 <xsl:text>#!/tools/bin/bash&#xA;&#xA;</xsl:text>
55 </xsl:when>
56 <xsl:otherwise>
57 <xsl:text>#!/bin/sh&#xA;&#xA;</xsl:text>
58 </xsl:otherwise>
59 </xsl:choose>
60 <xsl:if test="sect2[@role='installation'] or
61 @id='ch-tools-adjusting' or
62 @id='ch-system-readjusting'">
63 <xsl:text>cd $PKGDIR &amp;&amp;&#xA;</xsl:text>
64 </xsl:if>
65 <xsl:apply-templates select=".//para/userinput | .//screen"/>
66 <xsl:text>exit</xsl:text>
67 </exsl:document>
68 </xsl:if>
69 </xsl:template>
70
71 <xsl:template match="screen">
72 <xsl:if test="child::* = userinput">
73 <xsl:choose>
74 <xsl:when test="@role = 'nodump'"/>
75 <xsl:otherwise>
76 <xsl:apply-templates select="userinput" mode="screen"/>
77 </xsl:otherwise>
78 </xsl:choose>
79 </xsl:if>
80 </xsl:template>
81
82 <xsl:template match="para/userinput">
83 <xsl:if test="$testsuite != '0' and
84 (contains(string(),'test') or
85 contains(string(),'check'))">
86 <xsl:value-of select="substring-before(string(),'make')"/>
87 <xsl:text>make -k</xsl:text>
88 <xsl:value-of select="substring-after(string(),'make')"/>
89 <xsl:text> &#xA;</xsl:text>
90 </xsl:if>
91 </xsl:template>
92
93 <xsl:template match="userinput" mode="screen">
94 <xsl:choose>
95 <xsl:when test="string() = 'make mrproper'">
96 <xsl:text>make mrproper &amp;&amp;&#xA;</xsl:text>
97 <xsl:text>cp -v ../kernel-config .config &amp;&amp;&#xA;</xsl:text>
98 </xsl:when>
99 <xsl:when test="contains(string(),'tar.gz')">
100 <xsl:value-of select="substring-before(string(),'tar.gz')"/>
101 <xsl:text>tar.bz2</xsl:text>
102 <xsl:value-of select="substring-after(string(),'tar.gz')"/>
103 <xsl:text> &amp;&amp;&#xA;</xsl:text>
104 </xsl:when>
105 <xsl:when test="$testsuite = '0' and
106 ancestor::sect1[@id='ch-system-coreutils'] and
107 (contains(string(),'check') or
108 contains(string(),'dummy'))"/>
109 <xsl:when test="string() = 'make check' or
110 string() = 'make -k check'">
111 <xsl:choose>
112 <xsl:when test="$toolchaintest = '0'"/>
113 <xsl:otherwise>
114 <xsl:text>make -k check</xsl:text>
115 <xsl:text>&#xA;</xsl:text>
116 </xsl:otherwise>
117 </xsl:choose>
118 </xsl:when>
119 <xsl:when test="contains(string(),'glibc-check-log') or
120 contains(string(),'test_summary') or
121 contains(string(),'expect -c')">
122 <xsl:choose>
123 <xsl:when test="$toolchaintest = '0'"/>
124 <xsl:otherwise>
125 <xsl:apply-templates/>
126 <xsl:text> &amp;&amp;&#xA;</xsl:text>
127 </xsl:otherwise>
128 </xsl:choose>
129 </xsl:when>
130 <xsl:when test="contains(string(),'EOF')">
131 <xsl:value-of select="substring-before(string(),'cat &gt;')"/>
132 <xsl:text>&#xA;(&#xA;cat &lt;&lt; EOF&#xA;</xsl:text>
133 <xsl:apply-templates select="literal"/>
134 <xsl:text>&#xA;EOF&#xA;) &gt;</xsl:text>
135 <xsl:value-of select="substring-after((substring-before(string(),'&lt;&lt;')),'cat &gt;')"/>
136 <xsl:text> &amp;&amp;&#xA;</xsl:text>
137 <xsl:if test="string-length(substring-after(string(),'EOF&#xA;')) &gt; 0">
138 <xsl:value-of select="substring-after(string(),'EOF&#xA;')"/>
139 <xsl:text> &amp;&amp;&#xA;</xsl:text>
140 </xsl:if>
141 </xsl:when>
142 <xsl:when test="contains(string(),'debian_fixes')">
143 <xsl:value-of select="substring-before(string(),'patch')"/>
144 <xsl:text>patch -Z</xsl:text>
145 <xsl:value-of select="substring-after(string(),'patch')"/>
146 <xsl:text> &amp;&amp;&#xA;</xsl:text>
147 </xsl:when>
148 <xsl:otherwise>
149 <xsl:apply-templates/>
150 <xsl:if test="not(contains(string(),'check')) and
151 not(contains(string(),'strip '))">
152 <xsl:text> &amp;&amp;</xsl:text>
153 </xsl:if>
154 <xsl:text>&#xA;</xsl:text>
155 </xsl:otherwise>
156 </xsl:choose>
157 </xsl:template>
158
159 <xsl:template match="literal">
160 <xsl:choose>
161 <xsl:when test="contains(string(),'$@')">
162 <xsl:variable name="content">
163 <xsl:apply-templates/>
164 </xsl:variable>
165 <xsl:value-of select="substring-before(string($content),'$@')"/>
166 <xsl:text>\$@</xsl:text>
167 <xsl:value-of select="substring-after(string($content),'$@')"/>
168 </xsl:when>
169 <xsl:otherwise>
170 <xsl:apply-templates/>
171 </xsl:otherwise>
172 </xsl:choose>
173 </xsl:template>
174
175 <xsl:template match="replaceable">
176 <xsl:choose>
177 <xsl:when test="ancestor::sect1[@id='ch-system-groff']">
178 <xsl:text>$PAGE</xsl:text>
179 </xsl:when>
180 <xsl:otherwise>
181 <xsl:text>**EDITME</xsl:text>
182 <xsl:apply-templates/>
183 <xsl:text>EDITME**</xsl:text>
184 </xsl:otherwise>
185 </xsl:choose>
186 </xsl:template>
187
188</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.