blob: 9dd42e0969a5f450b948fcf22516b1378d040bdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
}
|