mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 20:39:39 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1439 311d38ba-8fff-0310-9ca6-ca027cbcb966
31 lines
799 B
BlitzBasic
31 lines
799 B
BlitzBasic
PR = "r9"
|
|
DESCRIPTION = "Alternative system logger daemon"
|
|
DEPENDS = "libol flex"
|
|
|
|
SRC_URI = "http://www.balabit.com/downloads/syslog-ng/1.6/src/${PN}-${PV}.tar.gz \
|
|
file://syslog-ng.conf \
|
|
file://initscript"
|
|
|
|
S = "${WORKDIR}/${PN}-${PV}"
|
|
inherit autotools update-rc.d
|
|
|
|
EXTRA_OECONF = "--with-libol=${STAGING_BINDIR_CROSS}/"
|
|
CONFFILES_${PN} = "${sysconfdir}/${PN}/syslog-ng.conf"
|
|
INITSCRIPT_NAME = "syslog-ng"
|
|
INITSCRIPT_PARAMS = "defaults 05"
|
|
|
|
do_install_append() {
|
|
install -d ${D}/${sysconfdir}/${PN}
|
|
install ${WORKDIR}/syslog-ng.conf ${D}${sysconfdir}/${PN}/syslog-ng.conf
|
|
install -d ${D}/${sysconfdir}/init.d
|
|
install -m 755 ${WORKDIR}/initscript ${D}/${sysconfdir}/init.d/syslog-ng
|
|
}
|
|
|
|
pkg_postinst() {
|
|
update-rc.d -f syslog remove
|
|
}
|
|
|
|
pkg_postrm() {
|
|
update-rc.d syslog add 5
|
|
}
|