[oe-commits] Robert Schuster : Replace non-working antlr recipe with working ones from Jalimo repo.

GIT User account git at amethyst.openembedded.net
Fri Nov 28 09:03:47 UTC 2008


Module: openembedded.git
Branch: koen/darwin-host-fixes
Commit: e25498c0506d39145725647b3d7397bccd2e207d
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=e25498c0506d39145725647b3d7397bccd2e207d

Author: Robert Schuster <thebohemian at gmx.net>
Date:   Tue Nov 25 14:49:51 2008 +0100

Replace non-working antlr recipe with working ones from Jalimo repo.
antlr 2.7.7: New recipe.
antlr-native 2.7.7: New recipe.

---

 packages/antlr/antlr-native_2.7.7.bb |   17 +++++++++++++++++
 packages/antlr/antlr_2.7.7.bb        |   16 ++++++++++++++++
 packages/antlr/files/runantlr        |   11 +++++++++++
 3 files changed, 44 insertions(+), 0 deletions(-)

diff --git a/packages/antlr/antlr-native_2.7.7.bb b/packages/antlr/antlr-native_2.7.7.bb
new file mode 100644
index 0000000..bd95ce7
--- /dev/null
+++ b/packages/antlr/antlr-native_2.7.7.bb
@@ -0,0 +1,17 @@
+require antlr_${PV}.bb
+
+SRC_URI += "file://runantlr"
+
+inherit native
+
+do_configure() {
+	sed -i -e"s|@JAR_FILE@|${STAGING_DATADIR_NATIVE}/java/antlr.jar|" ${WORKDIR}/runantlr
+}
+
+do_stage() {
+	java_stage
+
+	install -d ${STAGING_BINDIR}
+
+	install -m 0755 ${WORKDIR}/runantlr ${STAGING_BINDIR}
+}
diff --git a/packages/antlr/antlr_2.7.7.bb b/packages/antlr/antlr_2.7.7.bb
new file mode 100644
index 0000000..431b7b5
--- /dev/null
+++ b/packages/antlr/antlr_2.7.7.bb
@@ -0,0 +1,16 @@
+DESCRIPTION = "Framework for constructing recognizers, interpreters, compilers, and translators"
+# see http://www.antlr2.org/license.html
+LICENSE = "Public Domain"
+HOMEPAGE = "http://www.antlr2.org"
+
+SRC_URI = "http://www.antlr2.org/download/${BP}.tar.gz"
+
+inherit java-library
+
+do_compile() {
+  mkdir -p build
+
+  javac -sourcepath . -d build `find antlr -name "*.java"`
+
+  fastjar -C build -c -f ${JARFILENAME} .
+}
diff --git a/packages/antlr/files/runantlr b/packages/antlr/files/runantlr
new file mode 100755
index 0000000..b924bf4
--- /dev/null
+++ b/packages/antlr/files/runantlr
@@ -0,0 +1,11 @@
+#!/bin/sh
+echo Running 'java antlr.Tool $*' with @JAR_FILE@ appended to the CLASSPATH variable
+
+export CLASSPATH
+CLASSPATH=$CLASSPATH:@JAR_FILE@
+
+if [ ! $JAVA ];then
+	JAVA=java
+fi
+
+$JAVA antlr.Tool $*





More information about the Openembedded-commits mailing list