blob: b7601b05c70ae6b88a027e035871a6b6be96fcfb [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Interface for user-level network packet capture"
2DESCRIPTION = "Libpcap provides a portable framework for low-level network \
3monitoring. Libpcap can provide network statistics collection, \
4security monitoring and network debugging."
5HOMEPAGE = "http://www.tcpdump.org/"
6BUGTRACKER = "http://sourceforge.net/tracker/?group_id=53067&atid=469577"
7SECTION = "libs/network"
8LICENSE = "BSD"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05009LIC_FILES_CHKSUM = "file://LICENSE;md5=5eb289217c160e2920d2e35bddc36453 \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010 file://pcap.h;beginline=1;endline=32;md5=39af3510e011f34b8872f120b1dc31d2"
11DEPENDS = "flex-native bison-native"
12
13INC_PR = "r5"
14
15SRC_URI = "http://www.tcpdump.org/release/${BP}.tar.gz"
16
17BINCONFIG = "${bindir}/pcap-config"
18
19inherit autotools binconfig-disabled pkgconfig bluetooth
20
21EXTRA_OECONF = "--with-pcap=linux"
22
23PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', '${BLUEZ}', '', d)}"
24PACKAGECONFIG[bluez4] = "--enable-bluetooth,--disable-bluetooth,bluez4"
25# Add a dummy PACKAGECONFIG for bluez5 since it is not supported by libpcap.
26PACKAGECONFIG[bluez5] = ",,"
27PACKAGECONFIG[canusb] = "--enable-canusb,--enable-canusb=no,libusb"
28PACKAGECONFIG[dbus] = "--enable-dbus,--disable-dbus,dbus"
29PACKAGECONFIG[libnl] = "--with-libnl,--without-libnl,libnl"
30
31CPPFLAGS_prepend = "-I${S} "
32CFLAGS_prepend = "-I${S} "
33CXXFLAGS_prepend = "-I${S} "
34
35do_configure_prepend () {
36 if [ ! -e ${S}/acinclude.m4 ]; then
37 cat ${S}/aclocal.m4 > ${S}/acinclude.m4
38 fi
39 sed -i -e's,^V_RPATH_OPT=.*$,V_RPATH_OPT=,' ${S}/pcap-config.in
40}