mirror of
https://git.yoctoproject.org/meta-security
synced 2026-01-11 15:00:34 +00:00
37 lines
1.3 KiB
BlitzBasic
37 lines
1.3 KiB
BlitzBasic
SUMMARY = "OpenDNSSEC is a policy-based zone signer that automates the process of keeping track of DNSSEC keys and the signing of zones"
|
|
|
|
LICENSE = "BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=b041dbe2da80d4efd951393fbba90937"
|
|
|
|
DEPENDS = "libxml2 openssl ldns libmicrohttpd jansson libyaml "
|
|
|
|
SRC_URI = "https://dist.opendnssec.org/source/opendnssec-${PV}.tar.gz \
|
|
file://libxml2_conf.patch \
|
|
file://libdns_conf_fix.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "c0a8427de241118dccbf7abc508e4dd53fb75b45e9f386addbadae7ecc092756"
|
|
|
|
inherit autotools pkgconfig perlnative
|
|
|
|
EXTRA_OECONF = " --with-libxml2=${STAGING_DIR_HOST}/usr --with-ldns=${STAGING_DIR_HOST}/usr \
|
|
--with-ssl=${STAGING_DIR_HOST}/usr "
|
|
|
|
CFLAGS += "-fcommon"
|
|
|
|
PACKAGECONFIG ?= "sqlite3"
|
|
|
|
PACKAGECONFIG[cunit] = "--with-cunit=${STAGING_DIR_HOST}/usr, --without-cunit,"
|
|
PACKAGECONFIG[sqlite3] = "--with-sqlite3=${STAGING_DIR_HOST}/usr, ,sqlite3, sqlite3"
|
|
PACKAGECONFIG[mysql] = "--with-mysql=yes, , mariadb, mariadb"
|
|
PACKAGECONFIG[readline] = "--with-readline, --without-readline, readline"
|
|
PACKAGECONFIG[unwind] = "--with-libunwind, --without-libunwind"
|
|
|
|
do_install:append () {
|
|
rm -rf ${D}${localstatedir}/run
|
|
}
|
|
|
|
RDEPENDS:${PN} = "softhsm"
|
|
|
|
SKIP_RECIPE[opendnssec] ?= "Needs porting to openssl 3.x"
|