blob: 1d8e1461070a7e77c0f5ed05067b633c1d41201e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "Userspace logging daemon for netfilter/iptables related logging"
LICENSE = "GPL"
DEPENDS = "libpcap"
SRC_URI = " \
http://www.netfilter.org/projects/ulogd/files/ulogd-${PV}.tar.bz2;name=tar \
file://ulogd-kill-uname-in-rules.patch;apply=yes \
file://ulogd-hash-style-gnu.patch;apply=yes \
file://init \
"
SRC_URI[tar.md5sum] = "05b4ed2926b9a22aaeaf642917bbf8ff"
SRC_URI[tar.sha256sum] = "63a6069d9b537d8a6d6a4d99beeb4ccc0a853717414da3a6e0ce230a34d0e057"
PARALLEL_MAKE = ""
inherit autotools update-rc.d
INITSCRIPT_NAME = "ulogd"
do_install_append() {
install -d ${D}/${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/ulogd
}
|