diff options
author | Andrei Gherzan <andrei@gherzan.ro> | 2012-02-05 22:58:32 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-23 23:59:15 +0000 |
commit | cbe6eced99566129c575b43a58cdde2ac669a741 (patch) | |
tree | 85d31e1e9861b373e52a48d2354886b74c028a68 /meta/recipes-support/nspr | |
parent | 1cd882c47865a501d5401bad44e1c7f460ce2699 (diff) | |
download | openembedded-core-contrib-cbe6eced99566129c575b43a58cdde2ac669a741.tar.gz |
nspr: Integrate version 4.8.9
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
Signed-off-by: Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>
Diffstat (limited to 'meta/recipes-support/nspr')
-rw-r--r-- | meta/recipes-support/nspr/files/nspr.pc.in | 11 | ||||
-rw-r--r-- | meta/recipes-support/nspr/nspr_4.8.9.bb | 37 |
2 files changed, 48 insertions, 0 deletions
diff --git a/meta/recipes-support/nspr/files/nspr.pc.in b/meta/recipes-support/nspr/files/nspr.pc.in new file mode 100644 index 00000000000..e7af08d271b --- /dev/null +++ b/meta/recipes-support/nspr/files/nspr.pc.in @@ -0,0 +1,11 @@ +os_libs=-lpthread -ldl +prefix=OEPREFIX +exec_prefix=OEEXECPREFIX +libdir=OELIBDIR +includedir=OEINCDIR + +Name: NSPR +Description: The Netscape Portable Runtime +Version: 4.8.9 +Libs: -L${libdir} -lplds4 -lplc4 -lnspr4 -lpthread -ldl +Cflags: diff --git a/meta/recipes-support/nspr/nspr_4.8.9.bb b/meta/recipes-support/nspr/nspr_4.8.9.bb new file mode 100644 index 00000000000..da324fcaad5 --- /dev/null +++ b/meta/recipes-support/nspr/nspr_4.8.9.bb @@ -0,0 +1,37 @@ +DESCRIPTION = "Netscape Portable Runtime Library" +HOMEPAGE = "http://www.mozilla.org/projects/nspr/" +LICENSE = "GPL-2.0 | MPL-1.1 | LGPL-2.1" +LIC_FILES_CHKSUM = "file://configure.in;beginline=3;endline=40;md5=99d4d7d68bbc4bc60ebf8c15ed295f28 \ + file://Makefile.in;beginline=4;endline=38;md5=c2b512182a334e1bfa1edc4d1c84a298 " +SECTION = "libs/network" + +PR = "r0" + +SRC_URI = "ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${PV}/src/nspr-${PV}.tar.gz" + +SRC_URI += "file://nspr.pc.in " + +SRC_URI[md5sum] = "60770d45dc08c0f181b22cdfce5be3e8" +SRC_URI[sha256sum] = "ff43c7c819e72f03bb908e7652c5d5f59a5d31ee86c333e692650207103d1cce" + +S = "${WORKDIR}/nspr-${PV}/mozilla/nsprpub" + +inherit autotools + +do_configure() { + oe_runconf +} + +do_compile_prepend() { + oe_runmake CROSS_COMPILE=1 CFLAGS="-DXP_UNIX" LDFLAGS="" CC=gcc -C config export +} + +do_install_append() { + install -D ${WORKDIR}/nspr.pc.in ${D}${libdir}/pkgconfig/nspr.pc + sed -i s:OEPREFIX:${prefix}:g ${D}${libdir}/pkgconfig/nspr.pc + sed -i s:OELIBDIR:${libdir}:g ${D}${libdir}/pkgconfig/nspr.pc + sed -i s:OEINCDIR:${includedir}:g ${D}${libdir}/pkgconfig/nspr.pc + sed -i s:OEEXECPREFIX:${exec_prefix}:g ${D}${libdir}/pkgconfig/nspr.pc +} + + |