source: CLFS2/clfs2.xsl@ 8bea2c8

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 8bea2c8 was f4caf9c, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Full removed support for keymap compilation into the kernel.

  • Property mode set to 100644
File size: 5.8 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 <!-- Install vim-lang package? -->
17 <xsl:param name="vim-lang" select="y"/>
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/sh&#xA;</xsl:text>
70 <xsl:if test="not(@id='ch-system-stripping')">
71 <xsl:text>set -e&#xA;&#xA;</xsl:text>
72 </xsl:if>
73 <xsl:if test="sect2[@role='installation']">
74 <xsl:text>cd $PKGDIR&#xA;</xsl:text>
75 <xsl:if test="@id='ch-system-vim' and $vim-lang = 'y'">
76 <xsl:text>tar -xvf ../vim-&vim-version;-lang.* --strip-components=1&#xA;</xsl:text>
77 </xsl:if>
78 </xsl:if>
79 <xsl:apply-templates select=".//para/userinput | .//screen"/>
80 <xsl:text>exit</xsl:text>
81 </exsl:document>
82 </xsl:if>
83 </xsl:otherwise>
84 </xsl:choose>
85 </xsl:template>
86
87 <xsl:template match="screen">
88 <xsl:if test="child::* = userinput and not(@role = 'nodump')">
89 <xsl:apply-templates select="userinput" mode="screen"/>
90 </xsl:if>
91 </xsl:template>
92
93 <xsl:template match="para/userinput"/>
94
95 <xsl:template match="userinput" mode="screen">
96 <xsl:choose>
97 <!-- Estandarized package formats -->
98 <xsl:when test="contains(string(),'tar.gz')">
99 <xsl:value-of select="substring-before(string(),'tar.gz')"/>
100 <xsl:text>tar.*</xsl:text>
101 <xsl:value-of select="substring-after(string(),'tar.gz')"/>
102 <xsl:text>&#xA;</xsl:text>
103 </xsl:when>
104 <!-- Setting $LANG for /etc/profile -->
105 <xsl:when test="ancestor::sect1[@id='ch-scripts-profile'] and
106 contains(string(),'export LANG=')">
107 <xsl:value-of select="substring-before(string(),'export LANG=')"/>
108 <xsl:text>export LANG=</xsl:text>
109 <xsl:value-of select="$lang"/>
110 <xsl:value-of select="substring-after(string(),'charmap]')"/>
111 <xsl:text>&#xA;</xsl:text>
112 </xsl:when>
113 <!-- Compile the keymap into the kernel has been disabled -->
114 <xsl:when test="contains(string(),'defkeymap')"/>
115 <!-- Copying the kernel config file -->
116 <xsl:when test="string() = 'make mrproper'">
117 <xsl:text>make mrproper&#xA;</xsl:text>
118 <xsl:text>cp -v ../kernel-config .config&#xA;</xsl:text>
119 </xsl:when>
120 <!-- No interactive commands are needed if the .config file is the proper one -->
121 <xsl:when test="contains(string(),'menuconfig')"/>
122 <!-- Don't stop on strip run -->
123 <xsl:when test="contains(string(),'strip ')">
124 <xsl:apply-templates/>
125 <xsl:text> || true&#xA;</xsl:text>
126 </xsl:when>
127 <!-- The rest of commands -->
128 <xsl:otherwise>
129 <xsl:apply-templates/>
130 <xsl:text>&#xA;</xsl:text>
131 </xsl:otherwise>
132 </xsl:choose>
133 </xsl:template>
134
135 <xsl:template match="replaceable">
136 <xsl:choose>
137 <xsl:when test="ancestor::sect1[@id='ch-cross-tools-glibc']">
138 <xsl:value-of select="$timezone"/>
139 </xsl:when>
140 <xsl:when test="ancestor::sect1[@id='ch-cross-tools-groff'] or
141 ancestor::sect1[@id='ch-system-groff']">
142 <xsl:value-of select="$page"/>
143 </xsl:when>
144 <xsl:otherwise>
145 <xsl:text>**EDITME</xsl:text>
146 <xsl:apply-templates/>
147 <xsl:text>EDITME**</xsl:text>
148 </xsl:otherwise>
149 </xsl:choose>
150 </xsl:template>
151
152</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.