[ar71xx] select ar8216 support for the WRT400N (thanks to netprince)
[openwrt/svn-archive/archive.git] / package / libpcap / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=libpcap
11 PKG_VERSION:=1.0.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.tcpdump.org/release/
16 PKG_MD5SUM:=9ad1358c5dec48456405eac197a46d3d
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/libpcap
21 SECTION:=libs
22 CATEGORY:=Libraries
23 TITLE:=Low-level packet capture library
24 URL:=http://www.tcpdump.org/
25 endef
26
27 define Package/libpcap/description
28 This package contains a system-independent library for user-level network
29 packet capture.
30 endef
31
32 define Package/libpcap/config
33 config PCAP_HAS_USB
34 bool "Include USB support"
35 depends PACKAGE_libpcap
36 depends PACKAGE_kmod-usb-core
37 default n
38
39 config PCAP_HAS_BT
40 bool "Include bluetooth support"
41 depends PACKAGE_libpcap
42 depends PACKAGE_kmod-bluetooth
43 default n
44
45 endef
46
47 TARGET_CFLAGS += \
48 -ffunction-sections -fdata-sections
49
50 CONFIGURE_ARGS += \
51 --enable-shared \
52 --enable-static \
53 --disable-yydebug \
54 --enable-ipv6 \
55 --with-build-cc="$(HOSTCC)" \
56 --with-pcap=linux \
57 --without-septel \
58 --without-dag
59
60 define Build/Compile
61 rm -rf $(PKG_INSTALL_DIR)
62 $(if $(CONFIG_PCAP_HAS_USB),,$(SED) '/^#define PCAP_SUPPORT_USB/D' $(PKG_BUILD_DIR)/config.h)
63 $(if $(CONFIG_PCAP_HAS_USB),,$(SED) 's/pcap-usb-linux.c *//' $(PKG_BUILD_DIR)/Makefile)
64 $(if $(CONFIG_PCAP_HAS_BT),,$(SED) '/^#define PCAP_SUPPORT_BT/D' $(PKG_BUILD_DIR)/config.h)
65 $(MAKE) -C $(PKG_BUILD_DIR) \
66 CCOPT="$(TARGET_CFLAGS) -I$(BUILD_DIR)/linux/include" \
67 DESTDIR="$(PKG_INSTALL_DIR)" \
68 all install
69 endef
70
71 define Build/InstallDev
72 mkdir -p $(1)/usr/include $(1)/usr/lib
73 $(CP) \
74 $(PKG_INSTALL_DIR)/usr/include/pcap* \
75 $(1)/usr/include/
76 $(CP) \
77 $(PKG_INSTALL_DIR)/usr/lib/libpcap.{a,so*} \
78 $(1)/usr/lib/
79 endef
80
81 define Package/libpcap/install
82 $(INSTALL_DIR) $(1)/usr/lib
83 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.so.* $(1)/usr/lib/
84 endef
85
86 $(eval $(call BuildPackage,libpcap))