mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
nettle-stdint.h was no longer use. Remove nettle/nettle-stdint.h in do_install_append() of .bb file. Changelog in ChangeLog file as follows: 2019-01-06 Niels Möller <nisse@lysator.liu.se> * nettle-types.h: Don't use nettle-stdint.h, include <stdint.h> directly. * nettle-write.h: Likewise. * configure.ac: Delete use of AX_CREATE_STDINT_H. * aclocal.m4 (AX_CREATE_STDINT_H): Delete. * Makefile.in (INSTALL_HEADERS, distclean-here): Delete mention of nettle-stdint.h. (From OE-Core rev: a44e40675e151eb079d7d9e87e734ca5cfb923b5) Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
56 lines
1.8 KiB
BlitzBasic
56 lines
1.8 KiB
BlitzBasic
SUMMARY = "A low level cryptographic library"
|
|
HOMEPAGE = "http://www.lysator.liu.se/~nisse/nettle/"
|
|
SECTION = "libs"
|
|
LICENSE = "LGPLv3+ | GPLv2+"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING.LESSERv3;md5=6a6a8e020838b23406c81b19c1d46df6 \
|
|
file://COPYINGv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
|
file://serpent-decrypt.c;beginline=14;endline=36;md5=ca0d220bc413e1842ecc507690ce416e \
|
|
file://serpent-set-key.c;beginline=14;endline=36;md5=ca0d220bc413e1842ecc507690ce416e"
|
|
|
|
DEPENDS += "gmp"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.gz \
|
|
file://Add-target-to-only-build-tests-not-run-them.patch \
|
|
file://run-ptest \
|
|
file://check-header-files-of-openssl-only-if-enable_.patch \
|
|
"
|
|
|
|
SRC_URI_append_class-target = "\
|
|
file://dlopen-test.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "0e5707b418c3826768d41130fbe4ee86"
|
|
SRC_URI[sha256sum] = "75cca1998761b02e16f2db56da52992aef622bf55a3b45ec538bc2eedadc9419"
|
|
|
|
UPSTREAM_CHECK_REGEX = "nettle-(?P<pver>\d+(\.\d+)+)\.tar"
|
|
|
|
inherit autotools ptest multilib_header
|
|
|
|
EXTRA_AUTORECONF += "--exclude=aclocal"
|
|
|
|
EXTRA_OECONF = "--disable-openssl"
|
|
CFLAGS_append = " -std=gnu99"
|
|
|
|
do_compile_ptest() {
|
|
oe_runmake buildtest
|
|
}
|
|
|
|
do_install_append() {
|
|
oe_multilib_header nettle/version.h
|
|
}
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/testsuite/
|
|
install ${S}/testsuite/gold-bug.txt ${D}${PTEST_PATH}/testsuite/
|
|
install ${S}/testsuite/*-test ${D}${PTEST_PATH}/testsuite/
|
|
# tools can be found in PATH, not in ../tools/
|
|
sed -i -e 's|../tools/||' ${D}${PTEST_PATH}/testsuite/*-test
|
|
install ${B}/testsuite/*-test ${D}${PTEST_PATH}/testsuite/
|
|
}
|
|
|
|
RDEPENDS_${PN}-ptest += "${PN}-dev"
|
|
INSANE_SKIP_${PN}-ptest += "dev-deps"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|