summaryrefslogtreecommitdiff
path: root/libpcap/libpcap_0.7.2.oe
blob: c02bd2b4d1eb2fa0f0c8d4ccefb01d7d81b560e7 (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
28
29
30
31
32
DESCRIPTION = "Network Packet Capture Library"
SECTION = "libs"
PRIORITY = "required"
MAINTAINER = "Greg Gilbert <treke@handhelds.org>"
DEPENDS = "virtual/libc"

SRC_URI = "http://www.tcpdump.org/release/libpcap-${PV}.tar.gz;"
SRC_URI_append = " file://${FILESDIR}/libpcap-shared.patch;patch=1"
SRC_URI_append = " file://${FILESDIR}/configure.patch;patch=1"
SRC_URI_append = " file://${FILESDIR}/ldflags.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 -d ${STAGING_INCDIR}/net
	install -m 0644 net/bpf.h ${STAGING_INCDIR}/net/bpf.h
	install -m 0644 pcap.h ${STAGING_INCDIR}/pcap.h
	install -m 0644 pcap-namedb.h ${STAGING_INCDIR}/pcap-namedb.h
	oe_soinstall libpcap.so.${PV} ${STAGING_LIBDIR}/
	install -m 0644 libpcap.a ${STAGING_LIBDIR}/
}