f57a07587f
SVN-Revision: 24461
76 lines
1.7 KiB
Makefile
76 lines
1.7 KiB
Makefile
#
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libnet
|
|
PKG_VERSION:=1.1.2.1
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME).tar.gz
|
|
PKG_SOURCE_URL:=http://www.packetfactory.net/libnet/dist/
|
|
PKG_MD5SUM:=be845c41170d72c7db524f3411b50256
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/libnet
|
|
|
|
PKG_FIXUP:=libtool autoreconf
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libnet1
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
DEPENDS:=+libpcap
|
|
TITLE:=Low-level packet creation library (v1.1.x)
|
|
URL:=http://www.packetfactory.net/libnet/
|
|
endef
|
|
|
|
ENDIANESS:=lil
|
|
ifeq ($(CONFIG_BIG_ENDIAN),y)
|
|
ENDIANESS:=big
|
|
endif
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--with-pf_packet=yes
|
|
|
|
CONFIGURE_VARS += \
|
|
ac_cv_libnet_endianess=$(ENDIANESS) \
|
|
ac_libnet_have_pf_packet=yes \
|
|
LL_INT_TYPE=libnet_link_linux
|
|
|
|
define Build/Configure
|
|
(cd $(PKG_BUILD_DIR); touch \
|
|
configure.in \
|
|
include.m4 \
|
|
aclocal.m4 \
|
|
Makefile.in \
|
|
configure \
|
|
);
|
|
$(call Build/Configure/Default)
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/lib/libnet-1.1.x/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/libnet-config $(1)/usr/lib/libnet-1.1.x/bin/
|
|
$(INSTALL_DIR) $(1)/usr/lib/libnet-1.1.x/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/libnet* $(1)/usr/lib/libnet-1.1.x/include/
|
|
$(INSTALL_DIR) $(1)/usr/lib/libnet-1.1.x/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libnet.{a,so*} $(1)/usr/lib/libnet-1.1.x/lib/
|
|
endef
|
|
|
|
define Package/libnet1/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libnet.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libnet1))
|