diff options
Diffstat (limited to 'meta/recipes-support/gnutls/gnutls_3.6.8.bb')
-rw-r--r-- | meta/recipes-support/gnutls/gnutls_3.6.8.bb | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/meta/recipes-support/gnutls/gnutls_3.6.8.bb b/meta/recipes-support/gnutls/gnutls_3.6.8.bb new file mode 100644 index 0000000000..6c6c520e8c --- /dev/null +++ b/meta/recipes-support/gnutls/gnutls_3.6.8.bb | |||
@@ -0,0 +1,64 @@ | |||
1 | SUMMARY = "GNU Transport Layer Security Library" | ||
2 | HOMEPAGE = "http://www.gnu.org/software/gnutls/" | ||
3 | BUGTRACKER = "https://savannah.gnu.org/support/?group=gnutls" | ||
4 | |||
5 | LICENSE = "GPLv3+ & LGPLv2.1+" | ||
6 | LICENSE_${PN} = "LGPLv2.1+" | ||
7 | LICENSE_${PN}-xx = "LGPLv2.1+" | ||
8 | LICENSE_${PN}-bin = "GPLv3+" | ||
9 | LICENSE_${PN}-openssl = "GPLv3+" | ||
10 | |||
11 | LIC_FILES_CHKSUM = "file://LICENSE;md5=71391c8e0c1cfe68077e7fce3b586283 \ | ||
12 | file://doc/COPYING;md5=c678957b0c8e964aa6c70fd77641a71e \ | ||
13 | file://doc/COPYING.LESSER;md5=a6f89e2100d9b6cdffcea4f398e37343" | ||
14 | |||
15 | DEPENDS = "nettle gmp virtual/libiconv libunistring" | ||
16 | DEPENDS_append_libc-musl = " argp-standalone" | ||
17 | |||
18 | SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}" | ||
19 | |||
20 | SRC_URI = "https://www.gnupg.org/ftp/gcrypt/gnutls/v${SHRT_VER}/gnutls-${PV}.tar.xz \ | ||
21 | file://arm_eabi.patch \ | ||
22 | " | ||
23 | |||
24 | SRC_URI[md5sum] = "9dcf0aa45d1a42e1b3ca5d39ec7c61a8" | ||
25 | SRC_URI[sha256sum] = "aa81944e5635de981171772857e72be231a7e0f559ae0292d2737de475383e83" | ||
26 | |||
27 | inherit autotools texinfo pkgconfig gettext lib_package gtk-doc | ||
28 | |||
29 | PACKAGECONFIG ??= "libidn" | ||
30 | |||
31 | # You must also have CONFIG_SECCOMP enabled in the kernel for | ||
32 | # seccomp to work. | ||
33 | PACKAGECONFIG[seccomp] = "ac_cv_libseccomp=yes,ac_cv_libseccomp=no,libseccomp" | ||
34 | PACKAGECONFIG[libidn] = "--with-idn,--without-idn,libidn2" | ||
35 | PACKAGECONFIG[libtasn1] = "--with-included-libtasn1=no,--with-included-libtasn1,libtasn1" | ||
36 | PACKAGECONFIG[p11-kit] = "--with-p11-kit,--without-p11-kit,p11-kit" | ||
37 | PACKAGECONFIG[tpm] = "--with-tpm,--without-tpm,trousers" | ||
38 | |||
39 | EXTRA_OECONF = " \ | ||
40 | --enable-doc \ | ||
41 | --disable-libdane \ | ||
42 | --disable-guile \ | ||
43 | --disable-rpath \ | ||
44 | --enable-local-libopts \ | ||
45 | --enable-openssl-compatibility \ | ||
46 | --with-libpthread-prefix=${STAGING_DIR_HOST}${prefix} \ | ||
47 | --with-default-trust-store-file=${sysconfdir}/ssl/certs/ca-certificates.crt \ | ||
48 | " | ||
49 | |||
50 | LDFLAGS_append_libc-musl = " -largp" | ||
51 | |||
52 | do_configure_prepend() { | ||
53 | for dir in . lib; do | ||
54 | rm -f ${dir}/aclocal.m4 ${dir}/m4/libtool.m4 ${dir}/m4/lt*.m4 | ||
55 | done | ||
56 | } | ||
57 | |||
58 | PACKAGES =+ "${PN}-openssl ${PN}-xx" | ||
59 | |||
60 | FILES_${PN}-dev += "${bindir}/gnutls-cli-debug" | ||
61 | FILES_${PN}-openssl = "${libdir}/libgnutls-openssl.so.*" | ||
62 | FILES_${PN}-xx = "${libdir}/libgnutlsxx.so.*" | ||
63 | |||
64 | BBCLASSEXTEND = "native nativesdk" | ||