| 1 | # |
| 2 | # Copyright (C) 2006-2010 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:=2 |
| 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 | PKG_INSTALL:=1 |
| 19 | |
| 20 | include $(INCLUDE_DIR)/package.mk |
| 21 | include $(INCLUDE_DIR)/kernel.mk |
| 22 | |
| 23 | define Package/libpcap |
| 24 | SECTION:=libs |
| 25 | CATEGORY:=Libraries |
| 26 | TITLE:=Low-level packet capture library |
| 27 | URL:=http://www.tcpdump.org/ |
| 28 | MENU:=1 |
| 29 | endef |
| 30 | |
| 31 | define Package/libpcap/description |
| 32 | This package contains a system-independent library for user-level network packet |
| 33 | capture. |
| 34 | endef |
| 35 | |
| 36 | define Package/libpcap/config |
| 37 | source "$(SOURCE)/Config.in" |
| 38 | endef |
| 39 | |
| 40 | TARGET_CFLAGS += \ |
| 41 | -ffunction-sections \ |
| 42 | -fdata-sections |
| 43 | |
| 44 | CONFIGURE_VARS += \ |
| 45 | ac_cv_linux_vers=$(LINUX_VERSION) |
| 46 | |
| 47 | CONFIGURE_ARGS += \ |
| 48 | --enable-shared \ |
| 49 | --enable-static \ |
| 50 | --disable-yydebug \ |
| 51 | --enable-ipv6 \ |
| 52 | --with-build-cc="$(HOSTCC)" \ |
| 53 | --with-pcap=linux \ |
| 54 | --without-septel \ |
| 55 | --without-dag |
| 56 | |
| 57 | MAKE_FLAGS += \ |
| 58 | CCOPT="$(TARGET_CFLAGS) -I$(BUILD_DIR)/linux/include" |
| 59 | |
| 60 | define Build/Configure |
| 61 | $(call Build/Configure/Default) |
| 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 | $(if $(CONFIG_PCAP_HAS_BT),,$(SED) 's/pcap-bt-linux.c *//' $(PKG_BUILD_DIR)/Makefile) |
| 66 | endef |
| 67 | |
| 68 | define Build/InstallDev |
| 69 | $(INSTALL_DIR) $(1)/usr/include |
| 70 | $(CP) $(PKG_INSTALL_DIR)/usr/include/pcap* $(1)/usr/include/ |
| 71 | |
| 72 | $(INSTALL_DIR) $(1)/usr/lib |
| 73 | $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.{a,so*} $(1)/usr/lib/ |
| 74 | endef |
| 75 | |
| 76 | define Package/libpcap/install |
| 77 | $(INSTALL_DIR) $(1)/usr/lib |
| 78 | $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.so* $(1)/usr/lib/ |
| 79 | endef |
| 80 | |
| 81 | $(eval $(call BuildPackage,libpcap)) |
| 82 | |