blob: 7f6d187f4a7670f5915a360c0da4bc0e9eecdbf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DEPENDS = "virtual/libc"
DESCRIPTION = "The sysklogd package implements \
two system log daemons."
SRC_URI = "http://www.ibiblio.org/pub/Linux/system/daemons/sysklogd-${PV}.tar.gz \
file://nonrootinstall.patch;patch=1"
CFLAGS_append = " -DSYSV"
do_install () {
install -d ${D}/${mandir}/man8 \
${D}/${mandir}/man5 \
${D}/${bindir}
oe_runmake 'BINDIR=${D}/${bindir}' \
'MANDIR=${D}/${mandir}' install
}
|