diff options
author | Sven Gothel <[email protected]> | 2014-07-11 03:07:02 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-07-11 03:07:02 +0200 |
commit | 3c2409e9cc23b0f22c813b6903277997b46db826 (patch) | |
tree | b512d7cbbedfb29f1a42d1ff46efb8adb5119d55 /make/build.xml | |
parent | 8b2d4a72ec9f026f23e8c2320d298b47ac48aba7 (diff) |
Bug 1024: Add fallback for native-jar-file location via classpathv2.2.0
Adapt to GlueGen commit f5c48efcf546ba4e08e197ccced6df83b57e1755
Diffstat (limited to 'make/build.xml')
-rwxr-xr-x | make/build.xml | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/make/build.xml b/make/build.xml index ebc9a56..2984c84 100755 --- a/make/build.xml +++ b/make/build.xml @@ -459,14 +459,24 @@ </antcall> <!-- Create Java Web Start jar file from built file --> - <jar destfile="${build}/jar/joal-natives-${os.and.arch}.jar"> - <fileset dir="../${rootrel.build}/obj"> - <include name="*joal.${native.library.suffix}" /> - <include name="*soft_oal.${native.library.suffix}" /> - <include name="*openal.${native.library.suffix}" /> - <exclude name="*openal*.1*.${native.library.suffix}" /> - </fileset> - </jar> + <copy file="joalversion-natives" + tofile="${build}/tempversion-natives" + overwrite="true"> + <filterset> + <filter token="VERSION" value="${jogamp.version}"/> + <filter token="BUILD_VERSION" value="${joal.version}"/> + <filter token="SCM_BRANCH" value="${joal.build.branch}"/> + <filter token="SCM_COMMIT" value="${joal.build.commit}"/> + <filter token="BASEVERSION" value="${jogamp.version.base}" /> + <filter token="JAR_CODEBASE_TAG" value="${jogamp.jar.codebase}"/> + </filterset> + </copy> + + <native.tag.jar objdir="${build}/obj" + nativejarfile="${build}/jar/joal-natives-${os.and.arch}.jar" + manifestfile="${build}/tempversion-natives" + module="openal" + includelibs="*joal.${native.library.suffix} *soft_oal.${native.library.suffix} *openal.${native.library.suffix} *openal*.1*.${native.library.suffix}" /> <!-- Produce duplicates for different configurations, since non-native-jar aliasing (Bug 1023/Bug 1024) --> <copy file="${build}/jar/joal-natives-${os.and.arch}.jar" tofile="${build}/jar/joal-android-natives-${os.and.arch}.jar"/> </target> @@ -605,7 +615,7 @@ <target name="jar" depends="init"> <!-- Prepare the manifest --> <copy file="joalversion" - tofile="tempversion" + tofile="${build}/tempversion" overwrite="true"> <filterset> <filter token="VERSION" value="${jogamp.version}"/> @@ -618,7 +628,7 @@ </copy> <!-- Build the jar excluding any build specific classes. --> - <jar manifest="tempversion" destfile="${joal.jar}"> + <jar manifest="${build}/tempversion" destfile="${joal.jar}" filesonly="true"> <fileset dir="${classes}"> <include name="com/jogamp/openal/**" /> <include name="jogamp/openal/**" /> @@ -627,8 +637,6 @@ <copy file="${joal.jar}" tofile="${joal-android.jar}"/> <antcall target="android.package" inheritRefs="true" /> - - <delete file="tempversion"/> </target> <target name="android.package" depends="init" if="isAndroid"> @@ -641,7 +649,7 @@ android.abi="${android.abi}" androidmanifest.path="resources/android/AndroidManifest-joal.xml" androidresources.path="resources/android/res-joal" - jarmanifest.path="tempversion" + jarmanifest.path="${build}/tempversion" version.code="${jogamp.version.int}" version.name="${jogamp.version}" /> </target> |