diff options
Diffstat (limited to 'meta/recipes-support/libgcrypt/libgcrypt_1.10.2.bb')
| -rw-r--r-- | meta/recipes-support/libgcrypt/libgcrypt_1.10.2.bb | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/meta/recipes-support/libgcrypt/libgcrypt_1.10.2.bb b/meta/recipes-support/libgcrypt/libgcrypt_1.10.2.bb new file mode 100644 index 0000000000..58f07a116d --- /dev/null +++ b/meta/recipes-support/libgcrypt/libgcrypt_1.10.2.bb | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | SUMMARY = "General purpose cryptographic library based on the code from GnuPG" | ||
| 2 | DESCRIPTION = "A cryptography library developed as a separated module of GnuPG. \ | ||
| 3 | It can also be used independently of GnuPG, but depends on its error-reporting \ | ||
| 4 | library Libgpg-error." | ||
| 5 | HOMEPAGE = "http://directory.fsf.org/project/libgcrypt/" | ||
| 6 | BUGTRACKER = "https://bugs.g10code.com/gnupg/index" | ||
| 7 | SECTION = "libs" | ||
| 8 | |||
| 9 | # helper program gcryptrnd and getrandom are under GPL, rest LGPL | ||
| 10 | LICENSE = "GPL-2.0-or-later & LGPL-2.1-or-later" | ||
| 11 | LICENSE:${PN} = "LGPL-2.1-or-later" | ||
| 12 | LICENSE:${PN}-dev = "GPL-2.0-or-later & LGPL-2.1-or-later" | ||
| 13 | |||
| 14 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | ||
| 15 | file://COPYING.LIB;md5=bbb461211a33b134d42ed5ee802b37ff \ | ||
| 16 | file://LICENSES;md5=ef545b6cc717747072616519a1256d69 \ | ||
| 17 | " | ||
| 18 | |||
| 19 | DEPENDS = "libgpg-error" | ||
| 20 | |||
| 21 | UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html" | ||
| 22 | SRC_URI = "${GNUPG_MIRROR}/libgcrypt/libgcrypt-${PV}.tar.bz2 \ | ||
| 23 | file://0001-libgcrypt-fix-m4-file-for-oe-core.patch \ | ||
| 24 | file://0002-libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch \ | ||
| 25 | file://0004-tests-Makefile.am-fix-undefined-reference-to-pthread.patch \ | ||
| 26 | file://no-native-gpg-error.patch \ | ||
| 27 | file://no-bench-slope.patch \ | ||
| 28 | file://run-ptest \ | ||
| 29 | " | ||
| 30 | SRC_URI[sha256sum] = "3b9c02a004b68c256add99701de00b383accccf37177e0d6c58289664cce0c03" | ||
| 31 | |||
| 32 | # Below whitelisted CVEs are disputed and not affecting crypto libraries for any distro. | ||
| 33 | CVE_CHECK_IGNORE += "CVE-2018-12433 CVE-2018-12438" | ||
| 34 | |||
| 35 | BINCONFIG = "${bindir}/libgcrypt-config" | ||
| 36 | |||
| 37 | inherit autotools texinfo binconfig-disabled pkgconfig ptest | ||
| 38 | |||
| 39 | EXTRA_OECONF = "--disable-asm" | ||
| 40 | EXTRA_OEMAKE:class-target = "LIBTOOLFLAGS='--tag=CC'" | ||
| 41 | |||
| 42 | PACKAGECONFIG ??= "capabilities" | ||
| 43 | PACKAGECONFIG[capabilities] = "--with-capabilities,--without-capabilities,libcap" | ||
| 44 | |||
| 45 | do_configure:prepend () { | ||
| 46 | # Else this could be used in preference to the one in aclocal-copy | ||
| 47 | rm -f ${S}/m4/gpg-error.m4 | ||
| 48 | } | ||
| 49 | |||
| 50 | do_install_ptest() { | ||
| 51 | cd tests | ||
| 52 | oe_runmake testdrv-build testdrv | ||
| 53 | install testdrv $(srcdir=${S}/tests ./testdrv-build --files | sort | uniq) ${D}${PTEST_PATH} | ||
| 54 | } | ||
| 55 | |||
| 56 | FILES:${PN}-dev += "${bindir}/hmac256 ${bindir}/dumpsexp" | ||
| 57 | |||
| 58 | BBCLASSEXTEND = "native nativesdk" | ||
