blob: ae9ed2b13b2858aeab6cf82887f1fb1b237be49e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
require samhain.inc
SRC_URI += "file://samhain-not-run-ptest-on-host.patch \
file://0001-Don-t-expose-configure-args.patch \
file://run-ptest \
"
PROVIDES += "samhain"
MODE_NAME = "standalone"
SAMHAIN_MODE = "no"
SYSTEMD_SERVICE:${PN} = "samhain.service"
inherit ptest
do_compile() {
if [ "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', 'yes', 'no', d)}" = "yes" ]; then
oe_runmake cutest
rm -f ${S}*.o config_xor.h internal.h
fi
oe_runmake "$@"
}
do_install:append() {
ln -sf ${INITSCRIPT_NAME} ${D}${sysconfdir}/init.d/samhain
}
do_install_ptest() {
mkdir -p ${D}${PTEST_PATH}
install ${S}/cutest ${D}${PTEST_PATH}
}
RPROVIDES:${PN} += "samhain"
RCONFLICTS:${PN} = "samhain-client samhain-server"
|