Changeset 66c3162


Ignore:
Timestamp:
09/29/2007 02:26:11 PM (17 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
55d2c3e
Parents:
9c60012
Message:

Generating blfs-tool dependencies scripts.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • LFS/lfs.xsl

    r9c60012 r66c3162  
    407407      <xsl:choose>
    408408        <xsl:when test="ancestor::chapter[@id='chapter-temporary-tools']">
    409           <xsl:text>echo -e "\nKB: `du -skx --exclude=jhalfs --exclude=lost+found $LFS`\n"&#xA;</xsl:text>
     409          <xsl:text>&#xA;echo -e "\nKB: `du -skx --exclude=jhalfs --exclude=lost+found $LFS`\n"&#xA;</xsl:text>
    410410        </xsl:when>
    411411        <xsl:otherwise>
    412           <xsl:text>echo -e "\nKB: `du -skx --exclude=jhalfs --exclude=lost+found /`\n"&#xA;</xsl:text>
     412          <xsl:text>&#xA;echo -e "\nKB: `du -skx --exclude=jhalfs --exclude=lost+found /`\n"&#xA;</xsl:text>
    413413        </xsl:otherwise>
    414414      </xsl:choose>
  • XSL/blfs-tool.xsl

    r9c60012 r66c3162  
    1313      <!-- Fixed directory and ch_order values -->
    1414    <xsl:variable name="basedir">blfs-tool-deps/30_</xsl:variable>
     15
    1516      <!-- libxml2 -->
    1617    <exsl:document href="{$basedir}01-libxml2" method="text">
     
    3637      <xsl:call-template name="footer"/>
    3738    </exsl:document>
     39
    3840      <!-- libxslt -->
    3941    <exsl:document href="{$basedir}02-libxslt" method="text">
     
    5961      <xsl:call-template name="footer"/>
    6062    </exsl:document>
     63
    6164      <!-- tidy -->
    6265    <exsl:document href="{$basedir}03-tidy" method="text">
     
    8386      <xsl:call-template name="footer"/>
    8487    </exsl:document>
     88
    8589      <!-- unzip -->
    8690    <exsl:document href="{$basedir}04-unzip" method="text">
     
    108112      <xsl:call-template name="footer"/>
    109113    </exsl:document>
     114
    110115      <!-- DocBook XML DTD -->
    111116    <exsl:document href="{$basedir}05-docbook-xml" method="text">
     
    125130cd docbook-xml
    126131unzip ../docbook-xml-4.5.zip
     132SECONDS=0
    127133install -v -d -m755 /usr/share/xml/docbook/xml-dtd-4.5
    128134install -v -d -m755 /etc/xml
     
    222228      <xsl:call-template name="disk_usage"/>
    223229      <xsl:text>
     230SECS=$SECONDS
    224231cd /sources
    225232rm -rf docbook-xml
    226       </xsl:text>
    227       <xsl:call-template name="footer"/>
    228     </exsl:document>
     233SECONDS=$SECS
     234      </xsl:text>
     235      <xsl:call-template name="footer"/>
     236    </exsl:document>
     237
    229238      <!-- DocBook XSL (empty and commented-out, it's not required for now) -->
    230239    <!--<exsl:document href="{$basedir}06-docbook-xsl" method="text">
     
    247256      <xsl:call-template name="footer"/>
    248257    </exsl:document>-->
    249       <!--  -->
     258
     259      <!-- gpm -->
    250260    <exsl:document href="{$basedir}07-gpm" method="text">
    251261      <xsl:call-template name="header"/>
     
    277287      <xsl:call-template name="footer"/>
    278288    </exsl:document>
    279       <!--  -->
     289
     290      <!-- lynx -->
    280291    <exsl:document href="{$basedir}08-lynx" method="text">
    281292      <xsl:call-template name="header"/>
     
    307318      <xsl:call-template name="footer"/>
    308319    </exsl:document>
    309       <!--  -->
     320
     321      <!-- sudo -->
    310322    <exsl:document href="{$basedir}09-sudo" method="text">
    311323      <xsl:call-template name="header"/>
     
    335347      <xsl:call-template name="footer"/>
    336348    </exsl:document>
    337       <!--  -->
     349
     350      <!-- wget -->
    338351    <exsl:document href="{$basedir}10-wget" method="text">
    339352      <xsl:call-template name="header"/>
     
    358371      <xsl:call-template name="footer"/>
    359372    </exsl:document>
    360       <!--  -->
     373
     374      <!-- subversion -->
    361375    <exsl:document href="{$basedir}11-subversion" method="text">
    362376      <xsl:call-template name="header"/>
  • common/libs/func_book_parser

    r9c60012 r66c3162  
    8181  echo -n "Extracting commands for"
    8282
    83   # Dump the commands in shell script form from the HLFS book.
     83  # Dump the commands in shell script form from the book.
    8484  case ${PROGNAME} in
    8585    clfs)
     
    145145                 --stringparam page $PAGE \
    146146                 --stringparam lang $LANG \
     147                 --stringparam custom-tools $CUSTOM_TOOLS \
     148                 --stringparam blfs-tool $BLFS_TOOL \
    147149                 -o ./${PROGNAME}-commands/ $XSL $BOOK/index.xml >>$LOGDIR/$LOG 2>&1
    148150      ;;
     
    150152        exit 1 ;;
    151153  esac
    152 
    153   [[ "${BLFS_TOOL}" = "y" ]] && copy_blfs_deps_scripts
    154154
    155155  echo "done"
Note: See TracChangeset for help on using the changeset viewer.