source: BLFS/xsl/list_lfs.xsl@ 72711ab

ablfs-more trunk
Last change on this file since 72711ab was 72711ab, checked in by Pierre Labastie <pierre.labastie@…>, 16 months ago

list_lfs.xsl: fixes for dependency checking

Add several packages that shouldn't be removed when doing dependency
checking, two of which are actually not in lfs, but needed for
script: porg tzdata sudo wget

  • Property mode set to 100644
File size: 773 bytes
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2
3<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 version="1.0">
5
6 <xsl:output method="text"/>
7
8 <xsl:template match="/">
9 <xsl:text>bootscripts </xsl:text>
10 <xsl:text>lfs-bootscripts </xsl:text>
11 <xsl:text>kernel </xsl:text>
12 <xsl:text>porg </xsl:text>
13 <xsl:text>tzdata </xsl:text>
14 <!-- the next two packages are not in LFS, but jhalfs needs them -->
15 <xsl:text>sudo </xsl:text>
16 <xsl:text>wget </xsl:text>
17 <xsl:apply-templates select=".//chapter[@id='chapter-building-system']/sect1/sect1info/productname"/>
18 </xsl:template>
19
20 <xsl:template match="productname">
21 <xsl:copy-of select="text()"/>
22 <xsl:text> </xsl:text>
23 </xsl:template>
24
25</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.