2010-03-05 20:24:13 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-05-24 07:18:36 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libpcap
|
2009-04-25 03:30:10 +00:00
|
|
|
PKG_VERSION:=1.0.0
|
2010-03-05 20:24:13 +00:00
|
|
|
PKG_RELEASE:=2
|
2006-05-24 07:18:36 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://www.tcpdump.org/release/
|
2009-04-25 03:30:10 +00:00
|
|
|
PKG_MD5SUM:=9ad1358c5dec48456405eac197a46d3d
|
2006-05-24 07:18:36 +00:00
|
|
|
|
2010-03-05 20:24:13 +00:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2009-08-21 22:32:14 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2006-05-24 07:18:36 +00:00
|
|
|
|
|
|
|
define Package/libpcap
|
2006-09-23 19:29:00 +00:00
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=Low-level packet capture library
|
|
|
|
URL:=http://www.tcpdump.org/
|
2006-05-24 07:18:36 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define Package/libpcap/description
|
2010-03-05 20:24:13 +00:00
|
|
|
This package contains a system-independent library for user-level network packet
|
|
|
|
capture.
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
2009-04-25 03:30:10 +00:00
|
|
|
define Package/libpcap/config
|
2010-03-05 20:24:13 +00:00
|
|
|
source "$(SOURCE)/Config.in"
|
2009-04-25 03:30:10 +00:00
|
|
|
endef
|
|
|
|
|
2008-12-19 06:35:23 +00:00
|
|
|
TARGET_CFLAGS += \
|
2010-03-05 20:24:13 +00:00
|
|
|
-ffunction-sections \
|
|
|
|
-fdata-sections
|
2008-08-06 22:10:29 +00:00
|
|
|
|
2009-08-21 22:32:14 +00:00
|
|
|
CONFIGURE_VARS += \
|
|
|
|
ac_cv_linux_vers=$(LINUX_VERSION)
|
|
|
|
|
2007-02-25 23:34:57 +00:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--disable-yydebug \
|
|
|
|
--enable-ipv6 \
|
|
|
|
--with-build-cc="$(HOSTCC)" \
|
2009-04-25 03:30:10 +00:00
|
|
|
--with-pcap=linux \
|
|
|
|
--without-septel \
|
|
|
|
--without-dag
|
2006-05-24 07:18:36 +00:00
|
|
|
|
2010-03-05 20:24:13 +00:00
|
|
|
MAKE_FLAGS += \
|
|
|
|
CCOPT="$(TARGET_CFLAGS) -I$(BUILD_DIR)/linux/include"
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
$(call Build/Configure/Default)
|
2009-04-25 03:30:10 +00:00
|
|
|
$(if $(CONFIG_PCAP_HAS_USB),,$(SED) '/^#define PCAP_SUPPORT_USB/D' $(PKG_BUILD_DIR)/config.h)
|
|
|
|
$(if $(CONFIG_PCAP_HAS_USB),,$(SED) 's/pcap-usb-linux.c *//' $(PKG_BUILD_DIR)/Makefile)
|
|
|
|
$(if $(CONFIG_PCAP_HAS_BT),,$(SED) '/^#define PCAP_SUPPORT_BT/D' $(PKG_BUILD_DIR)/config.h)
|
2009-04-26 19:35:05 +00:00
|
|
|
$(if $(CONFIG_PCAP_HAS_BT),,$(SED) 's/pcap-bt-linux.c *//' $(PKG_BUILD_DIR)/Makefile)
|
2006-05-24 07:18:36 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
2010-03-05 20:24:13 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/pcap* $(1)/usr/include/
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.{a,so*} $(1)/usr/lib/
|
2006-05-24 07:18:36 +00:00
|
|
|
endef
|
|
|
|
|
2006-06-18 18:30:40 +00:00
|
|
|
define Package/libpcap/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2010-03-05 20:24:13 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.so* $(1)/usr/lib/
|
2006-05-24 07:18:36 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libpcap))
|