Update of /cvsroot/jake2/jake2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1754
Modified Files:
build.xml
Log Message:
include joal patch for webstart version
Index: build.xml
===================================================================
RCS file: /cvsroot/jake2/jake2/build.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** build.xml 24 Oct 2004 20:40:06 -0000 1.13
--- build.xml 31 Oct 2004 19:39:48 -0000 1.14
***************
*** 15,18 ****
--- 15,19 ----
<property name="version" value="cvs"/>
<property name="src" location="src"/>
+ <property name="patch" location="patch"/>
<property name="test" location="test"/>
<property name="build" location="build"/>
***************
*** 114,118 ****
<target name="jar" depends="compile,copyres">
<jar destfile="jake2.jar" basedir="${build}">
! <include name="**"/>
</jar>
<proguard printseeds="on" printusage="off" outjar="${dist}/lib/jake2.jar"
--- 115,121 ----
<target name="jar" depends="compile,copyres">
<jar destfile="jake2.jar" basedir="${build}">
! <include name="jake2/**"/>
! <include name="*.png"/>
! <include name="mirrors"/>
</jar>
<proguard printseeds="on" printusage="off" outjar="${dist}/lib/jake2.jar"
***************
*** 201,205 ****
<!-- webstart -->
! <target name="webstart" depends="dist">
<mkdir dir="webstart/lib"/>
<copy todir="webstart/lib">
--- 204,208 ----
<!-- webstart -->
! <target name="webstart" depends="dist,patch">
<mkdir dir="webstart/lib"/>
<copy todir="webstart/lib">
***************
*** 207,210 ****
--- 210,216 ----
<include name="**/*.jar"/>
</fileset>
+ <fileset dir=".">
+ <include name="patch.jar"/>
+ </fileset>
</copy>
<jar destfile="webstart/lib/linux/jogl-native.jar" basedir="${dist}/lib/linux">
***************
*** 247,249 ****
--- 253,267 ----
</delete>
</target>
+
+ <!-- patch -->
+ <target name="patch">
+ <javac destdir="${build}" optimize="on" debug="off" source="1.4">
+ <src path="${patch}"/>
+ <include name="**"/>
+ <classpath refid="build.class.path"/>
+ </javac>
+ <jar destfile="patch.jar" basedir="${build}">
+ <include name="net/**"/>
+ </jar>
+ </target>
</project>
\ No newline at end of file
|