blob: 08abf41c33c17cce283bc85b64c76af5507f759d (
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
28
29
30
31
32
33
34
|
require cacao-native.inc
PROVIDES = "virtual/java-initial"
DEPENDS = "zlib-native libtool-native fastjar-native classpath-initial jikes-initial"
PR = "r0"
SRC_URI = "\
http://www.complang.tuwien.ac.at/cacaojvm/download/cacao-${PV}/cacao-${PV}.tar.bz2; \
file://cacao-0.98-initial.patch;patch=1;pnum=1 \
"
# libjvm disabled - it would conflict with cacao-native installations
EXTRA_OECONF = "\
--enable-debug \
--with-classpath-libdir=${libdir} \
--with-classpath-includedir=${includedir}/classpath-initial \
--with-classpath-classes=${datadir}/classpath-initial/glibj.zip \
--with-vm-zip=${datadir}/cacao-initial/vm.zip \
--program-suffix=-initial \
--disable-libjvm \
"
# enforces the usage of jikes-initial
export JAVAC=jikes-initial
# enforces the usage of fastjar
export JAR=fastjar
do_configure_append() {
# Fix the executable name in the wrapper script.
sed -i -e "s|exec cacao|exec cacao-initial|" src/scripts/java.in
}
|