mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-13 17:39:57 +00:00
61ca38f45d
The recipe contains two CVE_CHECK_IGNORE declarations, and the second one overwrites the first one - however the first one is also important. Instead of overwriting it, just append them to each other. Also, move the operations closer to each other, so it's easier to see what's going on. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
65 lines
2.1 KiB
PHP
65 lines
2.1 KiB
PHP
SUMMARY = "OpenFlow communications protocol"
|
|
DESCRIPTION = "\
|
|
Open standard that enables researchers to run experimental protocols in \
|
|
contained networks. OpenFlow is a communications interface between \
|
|
control and forwarding planes of a software-defined networking architecture.\
|
|
"
|
|
HOMEPAGE = "http://www.openflow.org"
|
|
|
|
SECTION = "net"
|
|
LICENSE = "GPL-2.0-only"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=e870c934e2c3d6ccf085fd7cf0a1e2e2"
|
|
|
|
SRC_URI = "git://github.com/mininet/openflow;protocol=https;branch=master"
|
|
|
|
CVE_CHECK_IGNORE = "\
|
|
CVE-2015-1611 \
|
|
CVE-2015-1612 \
|
|
"
|
|
|
|
# This CVE is not for this product but cve-check assumes it is
|
|
# because two CPE collides when checking the NVD database
|
|
CVE_CHECK_IGNORE += "CVE-2018-1078"
|
|
|
|
DEPENDS = "virtual/libc"
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[openssl] = "--enable-ssl,--disable-ssl, openssl openssl-native, libssl"
|
|
|
|
EXTRA_OECONF += " \
|
|
KARCH=${TARGET_ARCH} \
|
|
${@bb.utils.contains('PACKAGECONFIG', 'openssl', 'SSL_LIBS="-lssl -lcrypto"', '', d)} \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools-brokensep pkgconfig
|
|
|
|
do_configure:prepend() {
|
|
./boot.sh
|
|
}
|
|
|
|
do_install:append() {
|
|
# Remove /var/run as it is created on startup
|
|
rm -rf ${D}${localstatedir}/run
|
|
|
|
# /var/log/openflow needs to be created in runtime. Use rmdir to catch if
|
|
# upstream stops creating /var/log/openflow, or adds something else in
|
|
# /var/log.
|
|
rmdir ${D}${localstatedir}/log/${BPN} ${D}${localstatedir}/log
|
|
rmdir --ignore-fail-on-non-empty ${D}${localstatedir}
|
|
|
|
# Create /var/log/openflow in runtime.
|
|
if [ "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" ]; then
|
|
install -d ${D}${nonarch_libdir}/tmpfiles.d
|
|
echo "d ${localstatedir}/log/${BPN} - - - -" > ${D}${nonarch_libdir}/tmpfiles.d/${BPN}.conf
|
|
fi
|
|
if [ "${@bb.utils.filter('DISTRO_FEATURES', 'sysvinit', d)}" ]; then
|
|
install -d ${D}${sysconfdir}/default/volatiles
|
|
echo "d root root 0755 ${localstatedir}/log/${BPN} none" > ${D}${sysconfdir}/default/volatiles/99_${BPN}
|
|
fi
|
|
}
|
|
|
|
FILES:${PN} += "${nonarch_libdir}/tmpfiles.d"
|