diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-09-23 05:10:26 +0000 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-09-23 05:10:26 +0000 |
commit | 7afb7925a28564351334c1faac834ae490c32888 (patch) | |
tree | d8ce608964e1539c5ebfeb6ccd0034afd47274cf /packages/ecj/ecj-bootstrap-native.bb | |
parent | b18add6e1ca17aba2a5ee987c6ee14fa4f5db1a0 (diff) |
Part 2 (last one) of ecj rework
ecj-bootstrap-native: New recipe (ommitted version by purpose).
ecj-initial: New recipe (ommitted version by purpose).
libecj-boostrap: New recipes (3.3, 3.3.2, 3.4)
Diffstat (limited to 'packages/ecj/ecj-bootstrap-native.bb')
-rw-r--r-- | packages/ecj/ecj-bootstrap-native.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/packages/ecj/ecj-bootstrap-native.bb b/packages/ecj/ecj-bootstrap-native.bb new file mode 100644 index 0000000000..04f8ba4062 --- /dev/null +++ b/packages/ecj/ecj-bootstrap-native.bb @@ -0,0 +1,36 @@ +# ECJ as a bootstrap compiler is a drop-in replacement for Sun's javac. It offers no more +# and no less features. +# +# This recipe uses the jar created by libecj-bootstrap. + +DESCRIPTION = "JDT Core Batch Compiler - Bootstrap variant" +HOMEPAGE = "http://www.eclipse.org/" +SECTION = "devel" +PRIORITY = "optional" +LICENSE = "EPL" + +DEPENDS = "libecj-bootstrap" + +PROVIDES = "virtual/javac-native" + +SRC_URI = "file://ecj.in" + +S = "${WORKDIR}" + +JAR = "ecj-bootstrap.jar" + +inherit native + +do_compile() { + # Create the start script + echo "#!/bin/sh" > ecj-bootstrap + echo "ECJ_JAR=${STAGING_DATADIR}/java/${JAR}" >> ecj-bootstrap + echo "RUNTIME=java" >> ecj-bootstrap + cat ecj.in >> ecj-bootstrap +} + +do_stage() { + install -d ${STAGING_BINDIR} + install -m 755 ${S}/ecj-bootstrap ${STAGING_BINDIR} + install -m 755 ${S}/ecj-bootstrap ${STAGING_BINDIR}/javac +} |