blob: 60dab7859e4f22fd8402bdb75f454137bbe54a15 (
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
|
PV = "1.1.5+cvs${SRCDATE}"
DEFAULT_PREFERENCE = "-1"
PR = "r3"
SRC_URI = "cvs://readonly:readonly@cvs.kaffe.org/cvs/kaffe;module=kaffe"
S = "${WORKDIR}/kaffe"
require kaffe.inc
inherit native
EXTRA_OECONF = "--disable-alsatest \
--disable-esdtest \
--disable-sound \
--with-jikes \
--without-classpath-gtk-awt \
--without-gmp \
--enable-pure-java-math \
--disable-native-awt \
--disable-sound \
--without-x \
--without-kaffe-x-awt \
--disable-debug \
--disable-gcj"
do_stage() {
install -m 0755 kaffe/kaffeh/kaffeh ${STAGING_BINDIR}/
install -d ${STAGING_DATADIR}/kaffeh
install -m 0755 libraries/javalib/*.jar ${STAGING_DATADIR}/kaffeh/
}
|