blob: 1e363db6e8bccda561514302eb9ed3eba20e9600 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "System Log Daemons"
2DESCRIPTION = "The sysklogd package implements two system log daemons: syslogd, klogd"
3HOMEPAGE = "http://www.infodrom.org/projects/sysklogd/"
4SECTION = "base"
5
6LICENSE = "GPLv2+ & BSD"
7LICENSE_syslogd = "BSD"
8LICENSE_klogd = "GPLv2+"
9LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \
10 file://syslogd.c;beginline=2;endline=15;md5=77ffb2fec48c46d7ca0abb2d5813e7fd \
11 file://klogd.c;beginline=2;endline=19;md5=7e87ed0ae6142de079bce738c10c899d \
12 "
13
14inherit update-rc.d update-alternatives
15
16SRC_URI = "http://www.infodrom.org/projects/sysklogd/download/sysklogd-${PV}.tar.gz \
17 file://no-strip-install.patch \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050018 file://0001-Fix-build-with-musl.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019 file://sysklogd \
20 file://syslog.conf \
21 "
22
23SRC_URI_append_e500v2 = " file://no-vectorization.patch"
24
25INITSCRIPT_NAME = "syslog"
26CONFFILES_${PN} = "${sysconfdir}/syslog.conf.${BPN}"
27
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050028EXTRA_OEMAKE = "-e MAKEFLAGS="
29
Patrick Williamsc124f4f2015-09-15 14:41:29 -050030CFLAGS_append = " -DSYSV"
31
32do_install () {
33 install -d ${D}${mandir}/man8 \
34 ${D}${mandir}/man5 \
35 ${D}${base_sbindir}
36 oe_runmake 'BINDIR=${D}${base_sbindir}' \
37 'MANDIR=${D}${mandir}' install
38 install -d ${D}${sysconfdir}
39 install -m 644 ${WORKDIR}/syslog.conf ${D}${sysconfdir}/syslog.conf
40 install -d ${D}${sysconfdir}/init.d
41 install -m 755 ${WORKDIR}/sysklogd ${D}${sysconfdir}/init.d/syslog
42}
43
44# sysklogd package has no internal systemd support, so we weigh busybox's
45# sysklogd utility over it in case of systemd
46ALTERNATIVE_PRIORITY = "${@bb.utils.contains('DISTRO_FEATURES','systemd','10','100',d)}"
47
48ALTERNATIVE_${PN} = "syslogd klogd syslog-init syslog-conf"
49
50ALTERNATIVE_LINK_NAME[syslogd] = "${base_sbindir}/syslogd"
51ALTERNATIVE_LINK_NAME[klogd] = "${base_sbindir}/klogd"
52ALTERNATIVE_LINK_NAME[syslog-init] = "${sysconfdir}/init.d/syslog"
53ALTERNATIVE_LINK_NAME[syslog-conf] = "${sysconfdir}/syslog.conf"
54
55pkg_prerm_${PN} () {
56 if test "x$D" = "x"; then
57 if test "$1" = "upgrade" -o "$1" = "remove"; then
58 /etc/init.d/syslog stop
59 fi
60 fi
61}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050062
63python () {
64 if not bb.utils.contains('DISTRO_FEATURES', 'sysvinit', True, False, d):
65 d.setVar("INHIBIT_UPDATERCD_BBCLASS", "1")
66}