Changeset 37365


Ignore:
Timestamp:
2023-02-28T13:49:07+13:00 (14 months ago)
Author:
kjdon
Message:

download the gnome-lib-minimal here, so we can use the svn trust-server-cert option, rather than relying on makegs2 to get it. code copied from rk3

File:
1 edited

Legend:

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

    r37346 r37365  
    3838            </exec>
    3939        </if>
     40        <!-- kjdon -->
     41        <condition property="specific.os.type" value="${os.shell}-Lion" else="${os.shell}">
     42                  <and>
     43                    <contains string="${os.shell}" substring="darwin" casesensitive="false"/>
     44            <matches pattern="^(10\.7\.[4-9]|10\.[8-9]|1[1-9]|[2-9])" string="${os.version}"/>
     45                  </and>
     46                </condition>
     47
     48
     49        <if>
     50          <bool><not><available file="gs2build/ext/gnome-lib-minimal"/></not></bool>
     51        <echo>EXPORTING GNOME LIB EXTENSION</echo>
     52<echo>${svn.root}/gs2-extensions/gnome-lib/trunk/gnome-\
     53lib-minimal-${specific.os.type}${arch}${extension-x64}.tar.gz</echo>
     54        <exec executable="svn">
     55                  <arg line="${global-svn-args}"/>
     56                  <arg value="export"/>
     57                  <arg value="${svn.root}/gs2-extensions/gnome-lib/trunk/gnome-lib-minimal-${specific.os.type}${arch}${extension-x64}.tar.gz"/>
     58                  <arg value="gs2build/ext/gnome-lib-${specific.os.type}.tar.gz"/>
     59                </exec>
     60       
     61                <exec executable="tar" dir="gs2build/ext">
     62                  <arg value="xvzf"/>
     63                  <arg value="gnome-lib-${specific.os.type}.tar.gz"/>
     64                </exec>
     65
     66                <exec executable="/bin/bash" dir="gs2build/ext/gnome-lib-minimal">
     67                  <arg value="-c"/>
     68                  <arg value="source setup.bash_old &amp;&amp; source devel.bash"/>
     69                </exec>
     70                <echo>DONE COMPILING GNOME LIB EXTENSION</echo>
     71                </if>
     72       
     73        <!-- to here-->
    4074        <!-- Nowadays need to get and compile gnome-lib in order for wvware to compile
    4175             So use the makegs2.sh script to get gnome-lib and compile gs2 -->
Note: See TracChangeset for help on using the changeset viewer.