Changeset 17540 for release-kits/shared


Ignore:
Timestamp:
2008-10-15T15:02:43+13:00 (16 years ago)
Author:
oranfry
Message:

getting the language selector page going in all installers

Location:
release-kits/shared/greenstone3
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • release-kits/shared/greenstone3/ant-scripts/rk3-targets.xml

    r17424 r17540  
    1515        <echo>Calculating the size of some components</echo>
    1616
    17         <!-- core greenstone3 system (keep in sync with installer build.xml files) -->
    18         <length property="component.bytesize.core" mode="all"><fileset file="${basedir}/components/core.comp"/></length>
     17        <!-- core greenstone3 system -->
     18        <length property="component.bytesize.core-without-jre" mode="all"><fileset file="${basedir}/components/core.comp"/></length>
     19        <if><bool><equals arg1="${java.os}" arg2="windows"/></bool>
     20            <math result="component.bytesize.core" operand1="${component.bytesize.core-without-jre}" operation="+" operand2="${component.bytesize.windows-java}" datatype="int"/>
     21        <else><if><bool><equals arg1="${java.os}" arg2="linux"/></bool>
     22            <math result="component.bytesize.core" operand1="${component.bytesize.core-without-jre}" operation="+" operand2="${component.bytesize.linux-java}" datatype="int"/>
     23        <else>
     24            <property name="component.bytesize.core" value1="${component.bytesize.core-without-jre}"/>
     25        </else></if></else></if>
    1926        <math result="component.megabytesize.core" operand1="${component.bytesize.core}" operation="/" operand2="1048576" datatype="int"/>
    2027        <property name="component.size.core" value="${component.megabytesize.core} MB"/>
    2128
    22         <!-- source code (keep in sync with installer build.xml files) -->
     29        <!-- source code -->
    2330        <length property="component.bytesize.sourcecode" mode="all"><fileset file="${basedir}/components/sourcecode.comp"/></length>
    2431        <math result="component.megabytesize.sourcecode" operand1="${component.bytesize.sourcecode}" operation="/" operand2="1048576" datatype="int"/>
     
    97104
    98105        <!-- chinese -->
    99         <rsr file="${basedir}/installer/classes/resources/LanguagePack_zh_CN.properties">
     106        <rsr file="${basedir}/installer/classes/resources/LanguagePack_zh.properties">
    100107            <job pattern="@version@" replacement="${version}"/>
    101108            <job pattern="@java.min.version@" replacement="${java.min.version}"/>
     
    110117    </target>
    111118
     119<!--
    112120    <target name="compile-search4j-unix">
    113121        <copy todir="${basedir}/greenstone3"><fileset dir="${rk.home}/packages" includes="search4j/**/*"/></copy>
     
    123131        <move file="${basedir}/greenstone3/search4j/search4j.exe" todir="${basedir}/greenstone3/bin"/>
    124132    </target>
     133-->
    125134
    126135    <target name="compile-uninstaller">
Note: See TracChangeset for help on using the changeset viewer.