diff options
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 0000000000..e7af08d271 --- /dev/null +++ b/meta/recipes-support/nspr/files/nspr.pc.in | |||
@@ -0,0 +1,11 @@ | |||
1 | os_libs=-lpthread -ldl | ||
2 | prefix=OEPREFIX | ||
3 | exec_prefix=OEEXECPREFIX | ||
4 | libdir=OELIBDIR | ||
5 | includedir=OEINCDIR | ||
6 | |||
7 | Name: NSPR | ||
8 | Description: The Netscape Portable Runtime | ||
9 | Version: 4.8.9 | ||
10 | Libs: -L${libdir} -lplds4 -lplc4 -lnspr4 -lpthread -ldl | ||
11 | 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 0000000000..da324fcaad --- /dev/null +++ b/meta/recipes-support/nspr/nspr_4.8.9.bb | |||
@@ -0,0 +1,37 @@ | |||
1 | DESCRIPTION = "Netscape Portable Runtime Library" | ||
2 | HOMEPAGE = "http://www.mozilla.org/projects/nspr/" | ||
3 | LICENSE = "GPL-2.0 | MPL-1.1 | LGPL-2.1" | ||
4 | LIC_FILES_CHKSUM = "file://configure.in;beginline=3;endline=40;md5=99d4d7d68bbc4bc60ebf8c15ed295f28 \ | ||
5 | file://Makefile.in;beginline=4;endline=38;md5=c2b512182a334e1bfa1edc4d1c84a298 " | ||
6 | SECTION = "libs/network" | ||
7 | |||
8 | PR = "r0" | ||
9 | |||
10 | SRC_URI = "ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${PV}/src/nspr-${PV}.tar.gz" | ||
11 | |||
12 | SRC_URI += "file://nspr.pc.in " | ||
13 | |||
14 | SRC_URI[md5sum] = "60770d45dc08c0f181b22cdfce5be3e8" | ||
15 | SRC_URI[sha256sum] = "ff43c7c819e72f03bb908e7652c5d5f59a5d31ee86c333e692650207103d1cce" | ||
16 | |||
17 | S = "${WORKDIR}/nspr-${PV}/mozilla/nsprpub" | ||
18 | |||
19 | inherit autotools | ||
20 | |||
21 | do_configure() { | ||
22 | oe_runconf | ||
23 | } | ||
24 | |||
25 | do_compile_prepend() { | ||
26 | oe_runmake CROSS_COMPILE=1 CFLAGS="-DXP_UNIX" LDFLAGS="" CC=gcc -C config export | ||
27 | } | ||
28 | |||
29 | do_install_append() { | ||
30 | install -D ${WORKDIR}/nspr.pc.in ${D}${libdir}/pkgconfig/nspr.pc | ||
31 | sed -i s:OEPREFIX:${prefix}:g ${D}${libdir}/pkgconfig/nspr.pc | ||
32 | sed -i s:OELIBDIR:${libdir}:g ${D}${libdir}/pkgconfig/nspr.pc | ||
33 | sed -i s:OEINCDIR:${includedir}:g ${D}${libdir}/pkgconfig/nspr.pc | ||
34 | sed -i s:OEEXECPREFIX:${exec_prefix}:g ${D}${libdir}/pkgconfig/nspr.pc | ||
35 | } | ||
36 | |||
37 | |||