Changeset 19624


Ignore:
Timestamp:
2009-05-27T15:52:36+12:00 (15 years ago)
Author:
oranfry
Message:

documented examples are now a component of cdrom installations

Location:
release-kits
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • release-kits/lirk2/installer/antinstall-config.xml

    r19599 r19624  
    8989        <!-- end bundled components -->
    9090
     91        <!-- start cdrom -->
     92
     93        <!-- the size of this component has to be maintained manually as we can't
     94            know at compile time how big the documented examples are -->
     95        <target
     96            target="Installing Documented Examples"
     97            diskRequirement="108 MB"
     98            defaultValue="true"
     99            displayText=""/>
     100        <!-- end cdrom -->
     101
     102
    91103    </page>
    92104
  • release-kits/lirk2/installer/build.xml

    r19610 r19624  
    157157    </target>
    158158
     159    <target name="Installing Documented Examples">
     160        <copy todir="${installDir}/collect">
     161            <fileset dir="${orig.dir}/Documented Examples" includes="documented-examples/**/*"/>
     162        </copy>
     163    </target>
     164
     165
    159166</project>
  • release-kits/mark2/installer/antinstall-config.xml

    r19599 r19624  
    8484        <!-- end bundled components -->
    8585
     86        <!-- start cdrom -->
     87
     88        <!-- the size of this component has to be maintained manually as we can't
     89            know at compile time how big the documented examples are -->
     90        <target
     91            target="Installing Documented Examples"
     92            diskRequirement="108 MB"
     93            defaultValue="true"
     94            displayText=""/>
     95        <!-- end cdrom -->
     96
     97
    8698    </page>
    8799
  • release-kits/mark2/installer/build.xml

    r19512 r19624  
    146146    </target>
    147147
     148    <target name="Installing Documented Examples">
     149        <copy todir="${installDir}/collect">
     150            <fileset dir="${orig.dir}/Documented Examples" includes="documented-examples/**/*"/>
     151        </copy>
     152    </target>
     153
    148154
    149155</project>
  • release-kits/shared/core/ant-scripts/init.xml

    r19510 r19624  
    154154        <copy file="${basedir}/installer/antinstall-config.xml" tofile="${basedir}/installer/antinstall-config-binary.xml"/>
    155155        <dcff file="${basedir}/installer/antinstall-config-binary.xml" startTag=".*&lt;!-- start source release --&gt;.*" endTag=".*&lt;!-- end source release --&gt;.*" />
     156        <dcff file="${basedir}/installer/antinstall-config-binary.xml" startTag=".*&lt;!-- start cdrom --&gt;.*" endTag=".*&lt;!-- end cdrom --&gt;.*" />
    156157
    157158        <copy file="${basedir}/installer/build.xml" tofile="${basedir}/installer/build-binary.xml"/>
    158159        <dcff file="${basedir}/installer/build-binary.xml" startTag=".*&lt;!-- start cdrom --&gt;.*" endTag=".*&lt;!-- end cdrom --&gt;.*" />
     160
     161
    159162
    160163        <installer file="${basedir}/installer/Greenstone-${version}-${os.suffix}.jar"
     
    179182        <copy file="${basedir}/installer/antinstall-config.xml" tofile="${basedir}/installer/antinstall-config-cdrom.xml"/>
    180183        <dcff file="${basedir}/installer/antinstall-config-cdrom.xml" startTag=".*&lt;!-- start source release --&gt;.*" endTag=".*&lt;!-- end source release --&gt;.*" />
     184        <dcff file="${basedir}/installer/antinstall-config-cdrom.xml" startTag=".*&lt;!-- start web --&gt;.*" endTag=".*&lt;!-- end web --&gt;.*" />
    181185
    182186        <copy file="${basedir}/installer/build.xml" tofile="${basedir}/installer/build-cdrom.xml"/>
     
    222226        <copy file="${basedir}/installer/antinstall-config.xml" tofile="${basedir}/installer/antinstall-config-source.xml"/>
    223227        <dcff file="${basedir}/installer/antinstall-config-source.xml" startTag=".*&lt;!-- start binary release --&gt;.*" endTag=".*&lt;!-- end binary release --&gt;.*" />
     228
    224229        <installer file="${basedir}/installer/Greenstone-${version}-${os.suffix}-source.jar"
    225230            compress="true"
     
    314319        <math result="component.megabytesize.ant" operand1="${component.bytesize.ant}" operation="/" operand2="1048576" datatype="int"/>
    315320        <property name="component.size.ant" value="${component.megabytesize.ant} MB"/>
    316        
     321
    317322        <!-- put the concrete values of things in the config -->
    318323        <rsr>
  • release-kits/wirk2/installer/antinstall-config.xml

    r19599 r19624  
    9797            displayText=""/>
    9898        <!-- end bundled components -->
     99
     100        <!-- start cdrom -->
     101
     102        <!-- the size of this component has to be maintained manually as we can't
     103            know at compile time how big the documented examples are -->
     104        <target
     105            target="Installing Documented Examples"
     106            diskRequirement="108 MB"
     107            defaultValue="true"
     108            displayText=""/>
     109        <!-- end cdrom -->
     110
    99111       
    100112    </page>
  • release-kits/wirk2/installer/build.xml

    r19510 r19624  
    263263    </target>
    264264
     265    <target name="Installing Documented Examples">
     266        <copy todir="${installDir}/collect">
     267            <fileset dir="${orig.dir}/Documented Examples" includes="documented-examples/**/*"/>
     268        </copy>
     269    </target>
    265270
    266271
Note: See TracChangeset for help on using the changeset viewer.