rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 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://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ |
| 12 | file://COPYING.LESSER;md5=a6f89e2100d9b6cdffcea4f398e37343" |
| 13 | |
| 14 | DEPENDS = "nettle gmp virtual/libiconv" |
| 15 | DEPENDS_append_libc-musl = " argp-standalone" |
| 16 | |
| 17 | SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}" |
| 18 | |
| 19 | SRC_URI = "https://www.gnupg.org/ftp/gcrypt/gnutls/v${SHRT_VER}/gnutls-${PV}.tar.xz" |
| 20 | |
| 21 | inherit autotools texinfo binconfig pkgconfig gettext lib_package gtk-doc |
| 22 | |
| 23 | PACKAGECONFIG ??= "zlib" |
| 24 | |
| 25 | PACKAGECONFIG[libtasn1] = "--with-included-libtasn1=no,--with-included-libtasn1,libtasn1" |
| 26 | PACKAGECONFIG[p11-kit] = "--with-p11-kit,--without-p11-kit,p11-kit" |
| 27 | PACKAGECONFIG[tpm] = "--with-tpm,--without-tpm,trousers" |
| 28 | PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib" |
| 29 | |
| 30 | EXTRA_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 | |
| 41 | LDFLAGS_append_libc-musl = " -largp" |
| 42 | LDFLAGS_append_libc-uclibc = " -luargp -pthread" |
| 43 | |
| 44 | do_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 | |
| 50 | PACKAGES =+ "${PN}-openssl ${PN}-xx" |
| 51 | |
| 52 | FILES_${PN}-dev += "${bindir}/gnutls-cli-debug" |
| 53 | FILES_${PN}-openssl = "${libdir}/libgnutls-openssl.so.*" |
| 54 | FILES_${PN}-xx = "${libdir}/libgnutlsxx.so.*" |
| 55 | |
| 56 | BBCLASSEXTEND = "native nativesdk" |