Ignore:
Timestamp:
2010-03-01T15:27:36+13:00 (14 years ago)
Author:
oranfry
Message:

moved binary specific forwarding properties to rk3, and fixed sork3

Location:
main/trunk/release-kits/kits
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/release-kits/kits/rk3/ant-scripts/build.xml

    r21745 r21748  
    3131    <target name="properties" depends="core-properties,gs3-properties"/>
    3232
     33
    3334</project>
  • main/trunk/release-kits/kits/rk3/ant-scripts/compile.xml

    r21725 r21748  
    1212        </exec>
    1313
     14        <!-- make sure all c++ compilation is done statically on linux -->
     15        <if><bool><equals arg1="${rk.os}" arg2="linux"/></bool>
     16            <property name="forward.compile.static" value="true"/>
     17        </if>
     18
    1419        <!-- run greenstone3's ant prepare -->
    1520        <ant dir="compiled" inheritAll="false">
    1621            <target name="prepare"/>
    1722            <propertyset refid="forward.properties"/>
     23            <property name="properties.accepted" value="true"/>
    1824        </ant>
    1925
     
    2834            <target name="dist-tidy"/>
    2935            <propertyset refid="forward.properties"/>
     36            <property name="properties.accepted" value="true"/>
    3037        </ant>
    3138
  • main/trunk/release-kits/kits/sork3/ant-scripts/build.xml

    r21652 r21748  
    2222        <!-- export the greenstone3 base code -->
    2323        <exec executable="svn"><arg value="export"/><arg value="${svn.root}/main/${branch.path}/greenstone3"/><arg value="distributions/${dist.name}"/></exec>
     24        <antcall target="persist-forwarded-properties">
     25            <param name="greenstone3basedir" value="distributions/${dist.name}"/>
     26        </antcall>
    2427
    2528        <!-- set version numbers -->
     
    3033            <property name="properties.accepted" value="true"/>
    3134            <property name="app.version" value="${version}"/>
     35            <propertyset refid="forward.properties"/>
    3236        </ant>
    3337
     
    5357            <target name="fix-execute-permissions"/>
    5458            <target name="fix-execute-permissions-source"/>
     59            <propertyset refid="forward.properties"/>
     60            <property name="properties.accepted" value="true"/>
    5561        </ant>
    5662
     
    6470
    6571        <!-- create the sourcecode component -->
    66         <ant dir="." antfile="${rk.home}/kits/${rk.name}/ant-scripts/create-sourcecode-component.xml" target="create-sourcecode-component"/>
     72        <ant dir="${basedir}" antfile="${rk.home}/kits/${rk.name}/ant-scripts/create-sourcecode-component.xml" target="create-sourcecode-component"/>
    6773    </target>
    6874
  • main/trunk/release-kits/kits/sork3/ant-scripts/create-sourcecode-component.xml

    r21650 r21748  
    33<project name="create-sourcecode-component">
    44
    5     <import file="distributions/${dist.name}/resources/xml/components.xml"/>
    6     <import file="distributions/${dist.name}/resources/xml/executables.xml"/>
     5    <import file="${basedir}/distributions/${dist.name}/resources/xml/components.xml"/>
     6    <import file="${basedir}/distributions/${dist.name}/resources/xml/executables.xml"/>
    77
    88    <target name="create-sourcecode-component">
Note: See TracChangeset for help on using the changeset viewer.