summaryrefslogtreecommitdiff
path: root/libpcap/libpcap_0.8.3.oe
blob: 49fcf164034afe95983c1fa84119e690b5f64987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
DESCRIPTION = "Network Packet Capture Library"
SECTION = "libs"
PRIORITY = "required"

SRC_URI = "http://www.tcpdump.org/release/libpcap-${PV}.tar.gz; \
	   file://shared.patch;patch=1"
#	   file://configure.patch;patch=1"

inherit autotools

EXTRA_OECONF = "--with-pcap=linux"
CPPFLAGS_prepend = "-I${S} "
CFLAGS_prepend = "-I${S} "
CXXFLAGS_prepend = "-I${S} "

do_configure_prepend () {
	if [ ! -e acinclude.m4 ]; then
		cat aclocal.m4 > acinclude.m4
	fi
}

do_stage () {
	install -m 0644 pcap.h ${STAGING_INCDIR}/pcap.h
	install -m 0644 pcap-namedb.h ${STAGING_INCDIR}/pcap-namedb.h
	install -m 0644 pcap-bpf.h ${STAGING_INCDIR}/pcap-bpf.h
	oe_libinstall -a -so libpcap ${STAGING_LIBDIR}
}