blob: 20b29fe7821174ae910ee6e8fab6bfb338c6f8e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DEPENDS = "virtual/libc libnet libpcap"
RDEPENDS = "libc6 libnet libpcap"
DESCRIPTION = "Libnids performs assembly of TCP segments \
into TCP streams, IP defragmentation, and TCP port \
scan detection."
SRC_URI = ${SOURCEFORGE_MIRROR}/libnids/libnids-${PV}.tar.gz \
file://${FILESDIR}/configure.patch;patch=1
inherit autotools
EXTRA_OECONF='--with-libpcap=${STAGING_DIR}/target \
--with-libnet=${STAGING_DIR}/target'
EXTRA_OEMAKE='"install_prefix=${D}"'
do_stage () {
install -m 0644 src/nids.h ${STAGING_DIR}/target/include/
install -m 0644 src/libnids.a ${STAGING_LIBDIR}/
}
|