Changeset 40d4ca7 for BLFS/libs


Ignore:
Timestamp:
06/18/2006 11:41:47 AM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
07eac51
Parents:
e52ffe5
Message:

Skipped SourceForge downloads.

Fixed also the use of
\
File:
1 edited

Legend:

Unmodified
Added
Removed
  • BLFS/libs/scripts.xsl

    re52ffe5 r40d4ca7  
    304304        <xsl:text>    cp $SRC_ARCHIVE/$PACKAGE $PACKAGE&#xA;  else&#xA;</xsl:text>
    305305        <!-- The FTP_SERVER mirror -->
    306         <xsl:text>    wget $FTP_SERVER/BLFS/conglomeration/$PKG_DIR/$PACKAGE || \&#xA;</xsl:text>
     306        <xsl:text>    wget $FTP_SERVER/BLFS/conglomeration/$PKG_DIR/$PACKAGE</xsl:text>
    307307        <!-- Upstream HTTP URL -->
    308         <xsl:if test="string-length(ulink/@url) &gt; '10'">
    309           <xsl:text>    wget </xsl:text>
     308        <xsl:if test="string-length(ulink/@url) &gt; '10' and
     309                      not(contains(string(ulink/@url),'sourceforge'))">
     310          <xsl:text> || \&#xA;    wget </xsl:text>
    310311          <xsl:value-of select="ulink/@url"/>
    311           <xsl:text> || \&#xA;</xsl:text>
    312312        </xsl:if>
    313313      </xsl:when>
     
    315315        <!-- Upstream FTP URL -->
    316316        <xsl:if test="string-length(ulink/@url) &gt; '10'">
    317           <xsl:text>    wget </xsl:text>
     317          <xsl:text> || \&#xA;    wget </xsl:text>
    318318          <xsl:value-of select="ulink/@url"/>
    319           <xsl:text>&#xA;</xsl:text>
    320319        </xsl:if>
    321         <xsl:text>  fi&#xA;fi&#xA;</xsl:text>
     320        <xsl:text>&#xA;  fi&#xA;fi&#xA;</xsl:text>
    322321      </xsl:when>
    323322      <xsl:when test="contains(string(),'MD5')">
     
    326325        <xsl:text>&#x20;&#x20;$PACKAGE" | md5sum -c -&#xA;</xsl:text>
    327326      </xsl:when>
    328       <!-- Patches. Need be veryfied -->
     327      <!-- Patches -->
    329328      <xsl:when test="contains(string(ulink/@url),'.patch')">
    330329        <xsl:text>wget </xsl:text>
Note: See TracChangeset for help on using the changeset viewer.