From 47d281af2916c46fa9c31c59a1253e1df54a0c52 Mon Sep 17 00:00:00 2001 From: Henning Heinold Date: Fri, 17 Feb 2012 21:48:26 +0100 Subject: rhino: add version 1.7r2 --- recipes/mozilla/rhino-native_1.7r2.bb | 5 ++++ recipes/mozilla/rhino_1.7r2.bb | 45 +++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 recipes/mozilla/rhino-native_1.7r2.bb create mode 100644 recipes/mozilla/rhino_1.7r2.bb diff --git a/recipes/mozilla/rhino-native_1.7r2.bb b/recipes/mozilla/rhino-native_1.7r2.bb new file mode 100644 index 0000000000..1b563603f8 --- /dev/null +++ b/recipes/mozilla/rhino-native_1.7r2.bb @@ -0,0 +1,5 @@ +require rhino_${PV}.bb + +inherit java-native + +RDEPENDS_${PN} = "" diff --git a/recipes/mozilla/rhino_1.7r2.bb b/recipes/mozilla/rhino_1.7r2.bb new file mode 100644 index 0000000000..0e9e14e81b --- /dev/null +++ b/recipes/mozilla/rhino_1.7r2.bb @@ -0,0 +1,45 @@ +DESCRIPTION = "Lexical analyzer generator for Java" + +LICENSE = "GPL MPL" + +DEPENDS = "fastjar-native" + +inherit java-library + +SRC_URI = "\ + ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_7R2.zip \ + file://rhino \ + file://rhino-jsc \ + " + +S = "${WORKDIR}/rhino1_7R2" + +PACKAGES = "${JPN} rhino" + +FILES_${PN} = "${bindir}/rhino ${bindir}/rhino-jsc" +RDEPENDS_${PN} = "java2-runtime ${JPN}" + +do_compile() { + mkdir -p build + + # Compatibility fix for jamvm which has non-genericised + # java.lang classes. :( + bcp_arg="-bootclasspath ${STAGING_DATADIR_NATIVE}/classpath/glibj.zip" + + javac $bcp_arg -source 1.5 -sourcepath src -d build `find src -name "*.java"` + + mkdir -p build/org/mozilla/javascript/resources + cp src/org/mozilla/javascript/resources/*.properties build/org/mozilla/javascript/resources + + fastjar -m ${S}/src/manifest -C build -c -f ${JARFILENAME} . +} + +do_install_append() { + install -d ${D}${bindir} + + install -m 0755 ${WORKDIR}/rhino ${D}${bindir} + install -m 0755 ${WORKDIR}/rhino-jsc ${D}${bindir} +} + +SRC_URI[md5sum] = "40d0a9abec8169e42920214b37fa8e0e" +SRC_URI[sha256sum] = "677f7dc1b67a1587bc03974d5f0720474a56b8f29835e1d860739908df8462dc" -- cgit 1.2.3-korg