Ignore:
Timestamp:
2009-06-08T16:23:10+12:00 (15 years ago)
Author:
oranfry
Message:

the cdrom release kit as it will be used for the 2.82cd release (or pretty close...)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/cdrk2/ant-scripts/build.xml

    r19597 r19761  
    2323
    2424    <!-- figure out where the compiled software is coming from -->
    25     <property name="software.archive.linux" value="http://www.greenstone.org/caveat-emptor/cdrom-components-${version}-candidate-${date}-linux.tar.gz"/>
    26     <property name="software.archive.windows" value="http://www.greenstone.org/caveat-emptor/cdrom-components-${version}-candidate-${date}-windows.tar.gz"/>
    27     <property name="software.archive.mac" value="http://www.greenstone.org/caveat-emptor/cdrom-components-${version}-candidate-${date}-mac.tar.gz"/>
    28     <property name="software.archive.documented-examples" value="http://www.greenstone.org/release-snapshots/Greenstone-documented-examples-${date}.tar.gz"/>
     25    <property name="software.archive.linux"                     value="http://www.greenstone.org/caveat-emptor/cdrom-components-${version}-candidate-${date}-linux.tar.gz"/>
     26    <property name="software.archive.windows"                   value="http://www.greenstone.org/caveat-emptor/cdrom-components-${version}-candidate-${date}-windows.tar.gz"/>
     27    <property name="software.archive.mac"                       value="http://www.greenstone.org/caveat-emptor/cdrom-components-${version}-candidate-${date}-mac.tar.gz"/>
     28    <property name="software.archive.documented-examples"       value="http://www.greenstone.org/caveat-emptor/Greenstone-documented-examples-${version}-candidate-${date}.tar.gz"/>
    2929
    3030    <target name="cdrk2-init">
     
    9090
    9191    <target name="build-documentation">
     92       
    9293        <svn>
    9394            <checkout url="${svn.root}/documentation/${branch.path}/manuals" destPath="documentation/manuals"/>
     
    122123        <copy todir="cdrom/Documentation/Russian"><fileset dir="documentation/manuals/build/ru/pdf"/></copy>
    123124        <copy todir="cdrom/Documentation/Arabic"><fileset dir="documentation/manuals/build/ar/pdf"/></copy>
     125
     126        <!-- top it off with a few more -->
     127        <get src="http://wiki.greenstone.org/wiki/gsdoc/others/CDS-ISIS_to_DL.pdf" dest="cdrom/Documentation/English/CDS-ISIS_to_DL.pdf"/>
     128        <get src="http://www.greenstone.org/manuals/gsdl2/ar/pdf/Users_Guide_Arabic.doc" dest="cdrom/Documentation/Arabic/Users_Guide_Arabic.doc"/>
     129        <get src="http://www.greenstone.org/manuals/gsdl2/ar/pdf/Install_ar.pdf" dest="cdrom/Documentation/Arabic/Install_ar.pdf"/>
     130        <mkdir dir="cdrom/Documentation/Brazilian Portuguese"/>
     131        <get src="http://www.greenstone.org/manuals/gsdl2/pt-br/pdf/Install_pt-br.pdf" dest="cdrom/Documentation/Brazilian Portuguese/Install_pt-br.pdf"/>
     132
     133
     134
    124135    </target>
    125136
     
    146157        </path>
    147158        <java classname="ApplyXSLT" classpathref="documentation.compile.classpath" output="documentation/manuals/xml-source/${language}/help-${language}.xml">
     159            <arg value="${language}" />
    148160            <arg value="documentation/manuals/processing/gen-gli-help-to-manual-chapter.xsl" />
    149161            <arg value="documentation/gli/help/${language}/help.xml" />
     
    169181        <get src="${software.archive.linux}" dest="archives/linux.tar.gz"/>
    170182        <exec executable="tar" dir="cdrom"><arg value="-xzf"/><arg value="../archives/linux.tar.gz"/></exec>
    171         <!--<exec executable="chmod" dir="cdrom"><arg value="+x"/><arg value="Greenstone-${version}-linux"/></exec>-->
    172183    </target>
    173184
     
    176187        <mkdir dir="archives"/>
    177188        <get src="${software.archive.windows}" dest="archives/windows.tar.gz"/>
    178         <untar src="archives/windows.tar.gz" dest="cdrom" compression="gzip" overwrite="true"/>
     189        <exec executable="tar" dir="cdrom"><arg value="-xzf"/><arg value="../archives/windows.tar.gz"/></exec>
    179190    </target>
    180191
     
    183194        <mkdir dir="archives"/>
    184195        <get src="${software.archive.mac}" dest="archives/mac.tar.gz"/>
    185         <untar src="archives/mac.tar.gz" dest="cdrom" compression="gzip" overwrite="true"/>
     196        <exec executable="tar" dir="cdrom"><arg value="-xzf"/><arg value="../archives/mac.tar.gz"/></exec>
    186197    </target>
    187198
     
    191202
    192203        <exec executable="mkisofs">
     204            <arg value="-V"/>
     205            <arg value="Greenstone-${version}"/>
    193206            <arg value="-input-charset"/>
    194207            <arg value="utf-8"/>
Note: See TracChangeset for help on using the changeset viewer.