blob: 428248fb565783e209afce6999f86b4fe036e940 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001SUMMARY = "GNU Transport Layer Security Library"
2HOMEPAGE = "http://www.gnu.org/software/gnutls/"
3BUGTRACKER = "https://savannah.gnu.org/support/?group=gnutls"
4
5LICENSE = "GPLv3+ & LGPLv2.1+"
6LICENSE_${PN} = "LGPLv2.1+"
7LICENSE_${PN}-xx = "LGPLv2.1+"
8LICENSE_${PN}-bin = "GPLv3+"
9LICENSE_${PN}-openssl = "GPLv3+"
10
11LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
12 file://COPYING.LESSER;md5=a6f89e2100d9b6cdffcea4f398e37343"
13
14DEPENDS = "nettle gmp virtual/libiconv"
15DEPENDS_append_libc-musl = " argp-standalone"
16
17SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}"
18
19SRC_URI = "https://www.gnupg.org/ftp/gcrypt/gnutls/v${SHRT_VER}/gnutls-${PV}.tar.xz"
20
21inherit autotools texinfo binconfig pkgconfig gettext lib_package gtk-doc
22
23PACKAGECONFIG ??= "zlib"
24
25PACKAGECONFIG[libtasn1] = "--with-included-libtasn1=no,--with-included-libtasn1,libtasn1"
26PACKAGECONFIG[p11-kit] = "--with-p11-kit,--without-p11-kit,p11-kit"
27PACKAGECONFIG[tpm] = "--with-tpm,--without-tpm,trousers"
28PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib"
29
30EXTRA_OECONF = " \
31 --enable-doc \
32 --disable-crywrap \
33 --disable-libdane \
34 --disable-guile \
35 --disable-rpath \
36 --enable-local-libopts \
37 --enable-openssl-compatibility \
38 --with-libpthread-prefix=${STAGING_DIR_HOST}${prefix} \
39"
40
41LDFLAGS_append_libc-musl = " -largp"
42LDFLAGS_append_libc-uclibc = " -luargp -pthread"
43
44do_configure_prepend() {
45 for dir in . lib; do
46 rm -f ${dir}/aclocal.m4 ${dir}/m4/libtool.m4 ${dir}/m4/lt*.m4
47 done
48}
49
50PACKAGES =+ "${PN}-openssl ${PN}-xx"
51
52FILES_${PN}-dev += "${bindir}/gnutls-cli-debug"
53FILES_${PN}-openssl = "${libdir}/libgnutls-openssl.so.*"
54FILES_${PN}-xx = "${libdir}/libgnutlsxx.so.*"
55
56BBCLASSEXTEND = "native nativesdk"