blob: 26d3d37f5870983811cfa4607dcecebee1d465b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
DESCRIPTION = "CacaoVM for use as OpenEmbedded's Java VM"
HOMEPAGE = "http://www.cacaojvm.org/"
LICENSE = "GPL"
PRIORITY = "optional"
SECTION = "interpreters"
DEPENDS = "zlib-native libtool-native classpath-native ecj-initial fastjar-native"
PROVIDES = "virtual/java-native"
S = "${WORKDIR}/cacao-${PV}"
inherit native autotools
EXTRA_OECONF = "\
--enable-debug \
--with-classpath-libdir=${libdir} \
--with-classpath-includedir=${includedir}/classpath \
--with-classpath-classes=${datadir}/classpath/glibj.zip \
--with-vm-zip=${datadir}/cacao/vm.zip \
"
# force usage of ecj-initial (but Java5-compatible class library)
export JAVAC="${STAGING_BINDIR_NATIVE}/ecj-initial -bootclasspath ${STAGING_DATADIR_NATIVE}/classpath/glibj.zip"
# force usage of fastjar
export JAR=fastjar
|