blob: 6695fbd2b2f600245871d2cdb1ca9069b0f1cd5f (
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
|
# ECJ as a bootstrap compiler is a drop-in replacement for Sun's javac. It offers no more
# and no less features.
# This variant runs on the initial (not Java5-compatible runtime).
DESCRIPTION = "JDT Core Batch Compiler - Bootstrap variant"
HOMEPAGE = "http://www.eclipse.org/"
LICENSE = "EPL"
DEPENDS = "libecj-bootstrap"
PR = "r1"
SRC_URI = "file://ecj.in"
S = "${WORKDIR}"
inherit native
JAR = "ecj-bootstrap.jar"
do_compile() {
# Create the start script
echo "#!/bin/sh" > ecj-initial
echo "ECJ_JAR=${STAGING_DATADIR}/java/${JAR}" >> ecj-initial
echo "RUNTIME=java-initial" >> ecj-initial
cat ecj.in >> ecj-initial
}
do_stage() {
install -d ${STAGING_BINDIR}
install -m 755 ${S}/ecj-initial ${STAGING_BINDIR}
}
|