diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-10-02 10:36:35 +0000 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-10-02 10:36:35 +0000 |
commit | 59e718c0ebbbe1d543812023f8d02b8dec9e6f09 (patch) | |
tree | 7b89b0371614d52d1433adaa7c6e080db9ca6817 /packages/cacao/cacao.inc | |
parent | 88c545e13bae1ce89a9809f289a01b57b19a02fe (diff) |
Clean up cacao recipes and patches, remove old versions (pre-releases).
cacao-native 0.98+hg20071001: Removed (use 0.99.3 instead).
cacao:
* simplified cacao.inc
* removed 0.98+hg20071001 and 0.98+hg20080519
* removed patches
cacaoh-native:
* simplified cacaoh-native.inc
* removed 0.98+hg20071001 and 0.98+hg20080519
Diffstat (limited to 'packages/cacao/cacao.inc')
-rw-r--r-- | packages/cacao/cacao.inc | 27 |
1 files changed, 7 insertions, 20 deletions
diff --git a/packages/cacao/cacao.inc b/packages/cacao/cacao.inc index 1c7941e4f6..9c10ee155a 100644 --- a/packages/cacao/cacao.inc +++ b/packages/cacao/cacao.inc @@ -14,31 +14,18 @@ RPROVIDES_cacao = "java2-runtime" inherit java autotools update-alternatives -# Old and new options do not interfere. +# Configure options compatible with Cacao >= 0.99 only! EXTRA_OECONF = "\ ${@['','--enable-softfloat'][bb.data.getVar('TARGET_FPU',d,1) == 'soft']} \ --enable-debug \ + --enable-disassembler \ --with-vm-zip=${datadir}/cacao/vm.zip \ --with-cacaoh=${STAGING_BINDIR_NATIVE}/cacaoh-${PV} \ - ${OLD_CACAO_OECONF} \ - ${NEW_CACAO_OECONF} \ - " - -# Options needed for Cacao < 0.99 (including hg snapshots) -OLD_CACAO_OECONF = "\ - --with-classpath-includedir=${STAGING_INCDIR}/classpath \ - --with-classpath-classes=${STAGING_DATADIR}/classpath/glibj.zip \ - --with-target-classpath-classes=${datadir}/classpath/glibj.zip \ - --with-classpath-libdir=${libdir_jni}:${libdir} \ - " - -# Options needed for Cacao >= 0.99 -NEW_CACAO_OECONF = "\ - --with-build-java-runtime-library-classes=${STAGING_DATADIR}/classpath/glibj.zip \ - --with-java-runtime-library-classes=${datadir}/classpath/glibj.zip \ - --with-java-runtime-library-libdir=${libdir_jni}:${libdir} \ - --with-jni_md_h=${STAGING_INCDIR}/classpath \ - --with-jni_h=${STAGING_INCDIR}/classpath \ + --with-build-java-runtime-library-classes=${STAGING_DATADIR}/classpath/glibj.zip \ + --with-java-runtime-library-classes=${datadir}/classpath/glibj.zip \ + --with-java-runtime-library-libdir=${libdir_jni}:${libdir} \ + --with-jni_md_h=${STAGING_INCDIR}/classpath \ + --with-jni_h=${STAGING_INCDIR}/classpath \ " PACKAGES = "${PN} ${PN}-doc ${PN}-dbg" |