aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/js/js_1.7.0+1.8.0rc1.bb
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2014-03-06 15:26:01 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-07 14:49:31 +0000
commit7056054f61b354adcafb8957fe166fda88ca58c0 (patch)
treec764b60dc35c3aee269eb9d68ce84c853b2c805a /meta/recipes-support/js/js_1.7.0+1.8.0rc1.bb
parentc7f0d76faf79947ff48e07c807e71120f08a1142 (diff)
downloadopenembedded-core-contrib-7056054f61b354adcafb8957fe166fda88ca58c0.tar.gz
js: remove
This is a very old version of Mozilla's Javascript engine, isn't actually used by anything in OE-Core now that web is gone, and in public layers outside of OE-Core is apparently only used by mediatomb within meta-baryon. (From OE-Core rev: 8b94925adf4428c4e155ef9fd79d33703968d9da) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/js/js_1.7.0+1.8.0rc1.bb')
-rw-r--r--meta/recipes-support/js/js_1.7.0+1.8.0rc1.bb51
1 files changed, 0 insertions, 51 deletions
diff --git a/meta/recipes-support/js/js_1.7.0+1.8.0rc1.bb b/meta/recipes-support/js/js_1.7.0+1.8.0rc1.bb
deleted file mode 100644
index e32050446c..0000000000
--- a/meta/recipes-support/js/js_1.7.0+1.8.0rc1.bb
+++ /dev/null
@@ -1,51 +0,0 @@
-SUMMARY = "Spidermonkey: a javascript engine written in C"
-HOMEPAGE = "http://www.mozilla.org/js/spidermonkey/"
-SECTION = "libs"
-
-# the package is licensed under either of the following
-LICENSE = "MPL-1 | GPLv2+ | LGPLv2.1+"
-LIC_FILES_CHKSUM = "file://jsapi.c;beginline=4;endline=39;md5=347c6bbf4fb4547de1fa5ad830030063"
-PR = "r4"
-
-SRC_URI = "http://ftp.mozilla.org/pub/mozilla.org/js/js-1.8.0-rc1.tar.gz \
- file://link_with_gcc.patch \
- file://usepic.patch \
- file://buildcc.patch;striplevel=2 \
- file://jsautocfg.h \
- file://configure.ac"
-
-SRC_URI[md5sum] = "eaad8815dcc66a717ddb87e9724d964e"
-SRC_URI[sha256sum] = "374398699ac3fd802d98d642486cf6b0edc082a119c9c9c499945a0bc73e3413"
-
-S = "${WORKDIR}/js/src"
-
-# use local autoconf script to generate a usable jsautocfg.h
-# don't bother with automake
-inherit autotools-brokensep
-
-do_configure_prepend() {
- cp -f ${WORKDIR}/configure.ac ${S}
- cp -f ${WORKDIR}/jsautocfg.h ${S}
-}
-
-EXTRA_OEMAKE = "'CC=${CC}' 'LD=${LD}' 'XCFLAGS=${CFLAGS}' 'XLDFLAGS=${LDFLAGS} -Wl,-soname=libjs' \
- 'BUILD_CC=${BUILD_CC}' 'BUILD_CFLAGS=${BUILD_CFLAGS}' 'BUILD_LDFLAGS=${BUILD_LDFLAGS}'"
-
-PARALLEL_MAKE = ""
-
-do_compile() {
- oe_runmake -f Makefile.ref JS_EDITLINE=1 PREBUILT_CPUCFG=1 BUILD_OPT=1
-}
-
-do_install() {
- install -d ${D}${libdir}
- install -d ${D}${includedir}
- install -d ${D}${includedir}/js
- oe_libinstall -so -C Linux_All_OPT.OBJ libjs ${D}${libdir}
- install -m 0644 ${S}/*.h ${D}${includedir}/js
- install -m 0644 ${S}/jsproto.tbl ${D}${includedir}/js
-}
-
-FILES_SOLIBSDEV = ""
-FILES_${PN} = "${libdir}/lib*.so"
-