Changeset 28832


Ignore:
Timestamp:
2014-02-04T20:22:09+13:00 (10 years ago)
Author:
ak19
Message:

Moving Windows shortcut icon from the bin folder to a new resources folder in the install location

Location:
other-projects/expeditee-release-kits/kits/rke
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • other-projects/expeditee-release-kits/kits/rke/ant-scripts/compile.xml

    r28822 r28832  
    3131            <copy file="${rk.home}/shared/core/search4j/search4j.exe" todir="${basedir}/compiled/bin" />
    3232            <!-- copy icon for windows -->
    33             <copy file="${rk.home}/shared/core/icon/icon.ico" todir="${basedir}/compiled/bin" />
     33            <mkdir dir="${basedir}/compiled/resources"/>
     34            <copy file="${rk.home}/shared/core/icon/icon.ico" todir="${basedir}/compiled/resources" />
    3435        </if>
    3536        <!-- copy run scripts -->
  • other-projects/expeditee-release-kits/kits/rke/installer/build.xml

    r28822 r28832  
    9595        <chmod dir="${installDir}" includes="*.sh,*.bash" perm="775"/>
    9696        <chmod dir="${installDir}/bin" includes="*" perm="755"/>
    97         <!-- <chmod dir="${installDir}/bin" includes="*" perm="775"/>
    98         <chmod dir="${installDir}/cgi-bin/${shell.name}" includes="*" perm="775"/>
    99         <chmod dir="${installDir}/bin/script" includes="**/*" perm="775"/>
    100         <chmod dir="${installDir}/gli" includes="*.sh" perm="775"/> -->
    101         <!-- if linux|mac -->
    102         <!-- <chmod dir="${installDir}/bin/${shell.name}" includes="**/*" perm="775"/> -->
    103         <!-- /if -->
    10497
    105         <!-- if linux|mac -->
    106         <!--
    107         <echo>Set the installation locale in config files</echo>
    108         <rsr file="${installDir}/setup.bash" pattern="^gsdllang=.*" replacement="gsdllang=${language}"/>
    109         <rsr file="${installDir}/gli/gli.sh" pattern="^glilang=.*" replacement="glilang=${language}"/>
    110         <rsr file="${installDir}/gli/gems.sh" pattern="^glilang=.*" replacement="glilang=${language}"/>
    111         -->
    112         <!-- /if -->
    113         <!--
    114         <rsr
    115             file="${installDir}/gli/classes/xml/config.xml"
    116             pattern="(&lt;Argument name=&quot;general.locale&quot;&gt;).*(&lt;/Argument&gt;)"
    117             replacement="$1${language}$2"/>
    118 
    119         <echo file="${installDir}/etc/main.cfg" append="true"
    120             >cgiarg          shortname=l argdefault=${language}</echo>
    121 
    122         <echo message="Creating installation properties file"/>
    123         -->
    124         <!-- if linux|mac -->
    125         <!-- <echo file="${installDir}/etc/installation.properties">#this file is just a placeholder for now</echo> -->
    126         <!-- /if -->
    127         <!-- if windows -->
    128         <!-- <echo file="${installDir}\etc\installation.properties">installed.startmenu.path:${startmenu.path.unix}</echo> -->
    129         <!-- /if -->
    130        
    131         <!-- if mac -->
    132         <!--
    133         <copy file="${installDir}/gli.app/Contents/document.wflow.in" tofile="${installDir}/gli.app/Contents/document.wflow"/>
    134         <rsr file="${installDir}/gli.app/Contents/document.wflow" pattern="\*\*GSDLHOME\*\*" replacement="${installDir}"/>
    135        
    136         <copy file="${installDir}/gs2-server.app/Contents/document.wflow.in" tofile="${installDir}/gs2-server.app/Contents/document.wflow"/>
    137         <rsr file="${installDir}/gs2-server.app/Contents/document.wflow" pattern="\*\*GSDLHOME\*\*" replacement="${installDir}"/>
    138        
    139         <copy file="${installDir}/gems.app/Contents/document.wflow.in" tofile="${installDir}/gems.app/Contents/document.wflow"/>
    140         <rsr file="${installDir}/gems.app/Contents/document.wflow" pattern="\*\*GSDLHOME\*\*" replacement="${installDir}"/>
    141        
    142         <copy file="${installDir}/client-gli.app/Contents/document.wflow.in" tofile="${installDir}/client-gli.app/Contents/document.wflow"/>
    143         <rsr file="${installDir}/client-gli.app/Contents/document.wflow" pattern="\*\*GSDLHOME\*\*" replacement="${installDir}"/>
    144 
    145         <chmod dir="${installDir}" includes="*.app" perm="755"/>
    146         <chmod dir="${installDir}" includes="*.app/**/*" perm="755"/>
    147         -->
    148         <!-- /if -->
    14998    </target>
    15099
     
    164113
    165114        <!-- Expeditee shortcut -->
    166         <property name="expediteeicon" value="${installDir}\bin\icon.ico"/>
     115        <property name="expediteeicon" value="${installDir}\resources\icon.ico"/>
    167116       
    168117        <shortcut
Note: See TracChangeset for help on using the changeset viewer.