summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/nss/nss.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/nss/nss.inc')
-rw-r--r--meta/recipes-support/nss/nss.inc170
1 files changed, 170 insertions, 0 deletions
diff --git a/meta/recipes-support/nss/nss.inc b/meta/recipes-support/nss/nss.inc
new file mode 100644
index 0000000000..87cba38bc8
--- /dev/null
+++ b/meta/recipes-support/nss/nss.inc
@@ -0,0 +1,170 @@
1SUMMARY = "Mozilla's SSL and TLS implementation"
2DESCRIPTION = "Network Security Services (NSS) is a set of libraries \
3designed to support cross-platform development of \
4security-enabled client and server applications. \
5Applications built with NSS can support SSL v2 and v3, \
6TLS, PKCS 5, PKCS 7, PKCS 11, PKCS 12, S/MIME, X.509 \
7v3 certificates, and other security standards."
8HOMEPAGE = "http://www.mozilla.org/projects/security/pki/nss/"
9SECTION = "libs"
10
11LICENSE = "MPL-1.1 GPL-2.0 LGPL-2.1"
12
13LIC_FILES_CHKSUM = "file://nss/lib/freebl/mpi/doc/LICENSE;md5=491f158d09d948466afce85d6f1fe18f \
14 file://nss/lib/freebl/mpi/doc/LICENSE-MPL;md5=6bf96825e3d7ce4de25621ae886cc859"
15SRC_URI = "\
16 file://nss-fix-support-cross-compiling.patch \
17 file://nss-no-rpath-for-cross-compiling.patch \
18"
19SRC_URI_append_class-target += "\
20 file://nss.pc.in \
21"
22inherit siteinfo
23PR = "r0"
24DEPENDS = "sqlite3 nspr zlib nss-native"
25DEPENDS_class-native = "sqlite3-native nspr-native zlib-native"
26RDEPENDS_${PN} = "perl"
27
28TD = "${S}/tentative-dist"
29TDS = "${S}/tentative-dist-staging"
30
31TARGET_CC_ARCH += "${LDFLAGS}"
32
33do_compile_prepend_class-native() {
34 export NSPR_INCLUDE_DIR=${STAGING_INCDIR_NATIVE}
35 export NSPR_LIB_DIR=${STAGING_LIBDIR_NATIVE}
36}
37
38do_compile() {
39 export CROSS_COMPILE=1
40 export NATIVE_CC="gcc"
41 export BUILD_OPT=1
42
43 export FREEBL_NO_DEPEND=1
44 export FREEBL_LOWHASH=1
45
46 export LIBDIR=${libdir}
47 export MOZILLA_CLIENT=1
48 export NS_USE_GCC=1
49 export NSS_USE_SYSTEM_SQLITE=1
50 export NSS_ENABLE_ECC=1
51
52 export OS_RELEASE=3.4
53 export OS_TARGET=Linux
54 export OS_ARCH=Linux
55
56 if [ "${TARGET_ARCH}" = "powerpc" ]; then
57 OS_TEST=ppc
58 elif [ "${TARGET_ARCH}" = "powerpc64" ]; then
59 OS_TEST=ppc64
60 elif [ "${TARGET_ARCH}" = "mips" -o "${TARGET_ARCH}" = "mipsel" -o "${TARGET_ARCH}" = "mips64" -o "${TARGET_ARCH}" = "mips64el" ]; then
61 OS_TEST=mips
62 else
63 OS_TEST="${TARGET_ARCH}"
64 fi
65
66 if [ "${SITEINFO_BITS}" = "64" ]; then
67 export USE_64=1
68 fi
69
70 make -C ./nss CCC="${CXX}" \
71 OS_TEST=${OS_TEST} \
72}
73
74do_install() {
75 export CROSS_COMPILE=1
76 export NATIVE_CC="gcc"
77 export BUILD_OPT=1
78
79 export FREEBL_NO_DEPEND=1
80
81 export LIBDIR=${libdir}
82 export MOZILLA_CLIENT=1
83 export NS_USE_GCC=1
84 export NSS_USE_SYSTEM_SQLITE=1
85 export NSS_ENABLE_ECC=1
86
87 export OS_RELEASE=3.4
88 export OS_TARGET=Linux
89 export OS_ARCH=Linux
90
91 if [ "${TARGET_ARCH}" = "powerpc" ]; then
92 OS_TEST=ppc
93 elif [ "${TARGET_ARCH}" = "powerpc64" ]; then
94 OS_TEST=ppc64
95 elif [ "${TARGET_ARCH}" = "mips" -o "${TARGET_ARCH}" = "mipsel" -o "${TARGET_ARCH}" = "mips64" -o "${TARGET_ARCH}" = "mips64el" ]; then
96 OS_TEST=mips
97 else
98 OS_TEST="${TARGET_ARCH}"
99 fi
100 if [ "${SITEINFO_BITS}" = "64" ]; then
101 export USE_64=1
102 fi
103
104 make -C ./nss \
105 CCC="${CXX}" \
106 OS_TEST=${OS_TEST} \
107 SOURCE_LIB_DIR="${TD}/${libdir}" \
108 SOURCE_BIN_DIR="${TD}/${bindir}" \
109 install
110
111 install -d ${D}/${libdir}/
112 for file in ${S}/dist/*.OBJ/lib/*.so; do
113 echo "Installing `basename $file`..."
114 cp $file ${D}/${libdir}/
115 done
116
117 for shared_lib in ${TD}/${libdir}/*.so.*; do
118 if [ -f $shared_lib ]; then
119 cp $shared_lib ${D}/${libdir}
120 ln -sf $(basename $shared_lib) ${D}/${libdir}/$(basename $shared_lib .1oe)
121 fi
122 done
123 for shared_lib in ${TD}/${libdir}/*.so; do
124 if [ -f $shared_lib -a ! -e ${D}/${libdir}/$shared_lib ]; then
125 cp $shared_lib ${D}/${libdir}
126 fi
127 done
128
129 install -d ${D}/${includedir}/nss3
130 install -m 644 -t ${D}/${includedir}/nss3 dist/public/nss/*
131
132 install -d ${D}/${bindir}
133 for binary in ${TD}/${bindir}/*; do
134 install -m 755 -t ${D}/${bindir} $binary
135 done
136}
137
138do_install_append_class-target() {
139 install -d ${D}${libdir}/pkgconfig/
140 sed 's/%NSS_VERSION%/${PV}/' ${WORKDIR}/nss.pc.in | sed 's/%NSPR_VERSION%/4.9.2/' > ${D}${libdir}/pkgconfig/nss.pc
141 sed -i s:OEPREFIX:${prefix}:g ${D}${libdir}/pkgconfig/nss.pc
142 sed -i s:OEEXECPREFIX:${exec_prefix}:g ${D}${libdir}/pkgconfig/nss.pc
143 sed -i s:OELIBDIR:${libdir}:g ${D}${libdir}/pkgconfig/nss.pc
144 sed -i s:OEINCDIR:${includedir}/nss3:g ${D}${libdir}/pkgconfig/nss.pc
145
146 # Create a blank certificate
147 mkdir -p ${D}/etc/pki/nssdb/
148 touch ./empty_password
149 certutil -N -d ${D}/etc/pki/nssdb/ -f ./empty_password
150 chmod 644 ${D}/etc/pki/nssdb/*.db
151 rm ./empty_password
152}
153
154FILES_${PN} = "\
155 ${sysconfdir} \
156 ${bindir} \
157 ${libdir}/lib*.chk \
158 ${libdir}/lib*.so \
159 "
160FILES_${PN}-dev = "\
161 ${libdir}/nss \
162 ${libdir}/pkgconfig/* \
163 ${includedir}/* \
164 "
165FILES_${PN}-dbg = "\
166 ${bindir}/.debug/* \
167 ${libdir}/.debug/* \
168 "
169
170BBCLASSEXTEND = "native"