| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #
- # Copyright (C) 2006 OpenWrt.org
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
- # $Id$
- include $(TOPDIR)/rules.mk
- PKG_NAME:=libpcap
- PKG_VERSION:=0.9.8
- PKG_RELEASE:=1
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
- PKG_SOURCE_URL:=http://www.tcpdump.org/release/
- PKG_MD5SUM:=5208f24d0328ee7c20b52c43eaa9aa0e
- include $(INCLUDE_DIR)/package.mk
- define Package/libpcap
- SECTION:=libs
- CATEGORY:=Libraries
- TITLE:=Low-level packet capture library
- URL:=http://www.tcpdump.org/
- endef
- define Package/libpcap/description
- This package contains a system-independent library for user-level network
- packet capture.
- endef
- TARGET_CFLAGS += \
- -ffunction-sections -fdata-sections
- CONFIGURE_ARGS += \
- --enable-shared \
- --enable-static \
- --disable-yydebug \
- --enable-ipv6 \
- --with-build-cc="$(HOSTCC)" \
- --with-pcap=linux
- define Build/Compile
- $(MAKE) -C $(PKG_BUILD_DIR) \
- CCOPT="$(TARGET_CFLAGS) -I$(BUILD_DIR)/linux/include" \
- DESTDIR="$(PKG_INSTALL_DIR)" \
- all install
- endef
- define Build/InstallDev
- mkdir -p $(1)/usr/include
- $(CP) $(PKG_INSTALL_DIR)/usr/include/pcap{,-bpf,-namedb}.h \
- $(1)/usr/include/
- mkdir -p $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.{a,so*} \
- $(1)/usr/lib/
- endef
- define Package/libpcap/install
- $(INSTALL_DIR) $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcap.so.* $(1)/usr/lib/
- endef
- $(eval $(call BuildPackage,libpcap))
|