source: CLFS3/clfs3.xsl@ b3825c3

ablfs-more legacy trunk
Last change on this file since b3825c3 was 56e487e, checked in by George Boudreau <georgeb@…>, 17 years ago

Patch: force locale when checking version requirements

  • Property mode set to 100644
File size: 6.0 KB
Line 
1<?xml version="1.0"?>
2<!DOCTYPE xsl:stylesheet [
3 <!ENTITY % general-entities SYSTEM "FAKEDIR/general.ent">
4 %general-entities;
5]>
6
7<!-- $Id$ -->
8
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
14<!-- XSLT stylesheet to create shell scripts from CLFS2 books. -->
15
16 <!-- Endian level -->
17 <xsl:param name="endian" select="xbig"/>
18
19 <!-- Time zone -->
20 <xsl:param name="timezone" select="GMT"/>
21
22 <!-- Page size -->
23 <xsl:param name="page" select="letter"/>
24
25 <!-- Locale settings -->
26 <xsl:param name="lang" select="C"/>
27
28 <xsl:template match="/">
29 <xsl:apply-templates select="//sect1"/>
30 </xsl:template>
31
32 <xsl:template match="sect1">
33 <xsl:choose>
34 <xsl:when test="../@id='chapter-partitioning' or
35 ../@id='chapter-getting-materials' or
36 ../@id='chapter-final-preps'"/>
37 <xsl:otherwise>
38 <xsl:if test="count(descendant::screen/userinput) &gt; 0 and
39 count(descendant::screen/userinput) &gt;
40 count(descendant::screen[@role='nodump'])">
41 <!-- The dirs names -->
42 <xsl:variable name="pi-dir" select="../processing-instruction('dbhtml')"/>
43 <xsl:variable name="pi-dir-value" select="substring-after($pi-dir,'dir=')"/>
44 <xsl:variable name="quote-dir" select="substring($pi-dir-value,1,1)"/>
45 <xsl:variable name="dirname" select="substring-before(substring($pi-dir-value,2),$quote-dir)"/>
46 <!-- The file names -->
47 <xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
48 <xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
49 <xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
50 <!-- The build order -->
51 <xsl:variable name="position" select="position()"/>
52 <xsl:variable name="order">
53 <xsl:choose>
54 <xsl:when test="string-length($position) = 1">
55 <xsl:text>00</xsl:text>
56 <xsl:value-of select="$position"/>
57 </xsl:when>
58 <xsl:when test="string-length($position) = 2">
59 <xsl:text>0</xsl:text>
60 <xsl:value-of select="$position"/>
61 </xsl:when>
62 <xsl:otherwise>
63 <xsl:value-of select="$position"/>
64 </xsl:otherwise>
65 </xsl:choose>
66 </xsl:variable>
67 <!-- Creating dirs and files -->
68 <exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
69 <xsl:text>#!/bin/bash&#xA;set +h&#xA;set -e&#xA;&#xA;</xsl:text>
70 <!-- Set envars needed by uClibc -->
71 <xsl:if test="@id='ch-cross-tools-uclibc'">
72 <xsl:copy-of select="//sect1[@id='ch-cross-tools-toolchain']/screen"/>
73 <xsl:text>&#xA;&#xA;</xsl:text>
74 </xsl:if>
75 <xsl:if test="sect2[@role='installation']">
76 <xsl:text>cd $PKGDIR&#xA;</xsl:text>
77 </xsl:if>
78 <xsl:apply-templates select=".//para/userinput | .//screen"/>
79 <xsl:text>exit</xsl:text>
80 </exsl:document>
81 </xsl:if>
82 </xsl:otherwise>
83 </xsl:choose>
84 </xsl:template>
85
86 <xsl:template match="screen">
87 <xsl:if test="child::* = userinput and not(@role = 'nodump')">
88 <xsl:apply-templates select="userinput" mode="screen"/>
89 </xsl:if>
90 </xsl:template>
91
92 <xsl:template match="para/userinput"/>
93
94 <xsl:template match="userinput" mode="screen">
95 <xsl:choose>
96 <!-- Estandarized package formats -->
97 <xsl:when test="contains(string(),'tar.gz')">
98 <xsl:value-of select="substring-before(string(),'tar.gz')"/>
99 <xsl:text>tar.*</xsl:text>
100 <xsl:value-of select="substring-after(string(),'tar.gz')"/>
101 <xsl:text>&#xA;</xsl:text>
102 </xsl:when>
103 <!-- Select Endian level for uClibc -->
104<!--
105 <xsl:when test="$endian='xbig' and contains(string(),'LITTLE_ENDIAN')"/>
106 <xsl:when test="$endian='xlittle' and contains(string(),'BIG_ENDIAN')"/>
107-->
108 <!-- Setting $LANG for /etc/profile -->
109 <xsl:when test="ancestor::sect1[@id='ch-scripts-profile'] and
110 contains(string(),'export LANG=')">
111 <xsl:value-of select="substring-before(string(),'export LANG=')"/>
112 <xsl:text>export LANG=</xsl:text>
113 <xsl:value-of select="$lang"/>
114 <xsl:value-of select="substring-after(string(),'charmap]')"/>
115 <xsl:text>&#xA;</xsl:text>
116 </xsl:when>
117 <!-- Compile the keymap into the kernel has been disabled -->
118 <xsl:when test="contains(string(),'defkeymap')"/>
119 <!-- Copying the kernel config file -->
120 <xsl:when test="string() = 'make mrproper'">
121 <xsl:text>make mrproper&#xA;</xsl:text>
122 <xsl:text>cp -v ../kernel-config .config&#xA;</xsl:text>
123 </xsl:when>
124 <!-- No interactive commands are needed if the .config file is the proper one -->
125 <xsl:when test="contains(string(),'menuconfig')"/>
126 <!-- Don't stop on strip run -->
127 <xsl:when test="contains(string(),'strip ')">
128 <xsl:apply-templates/>
129 <xsl:text> || true&#xA;</xsl:text>
130 </xsl:when>
131 <!-- The rest of commands -->
132 <xsl:otherwise>
133 <xsl:apply-templates/>
134 <xsl:text>&#xA;</xsl:text>
135 </xsl:otherwise>
136 </xsl:choose>
137 </xsl:template>
138
139 <xsl:template match="replaceable">
140 <xsl:choose>
141 <xsl:when test="ancestor::sect1[@id='ch-cross-tools-glibc']">
142 <xsl:value-of select="$timezone"/>
143 </xsl:when>
144 <xsl:when test="ancestor::sect1[@id='ch-cross-tools-groff'] or
145 ancestor::sect1[@id='ch-system-groff']">
146 <xsl:value-of select="$page"/>
147 </xsl:when>
148 <xsl:otherwise>
149 <xsl:text>**EDITME</xsl:text>
150 <xsl:apply-templates/>
151 <xsl:text>EDITME**</xsl:text>
152 </xsl:otherwise>
153 </xsl:choose>
154 </xsl:template>
155
156</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.