X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=package%2Fipset%2FMakefile;h=efd439b7febc5014495b0ac99566903f0ca26281;hp=9f6326b8cb17689a1ad375b2b78cd57b0046015c;hb=ff3d5025ac0c398277bf234e9608ab6490330b11;hpb=a9d683ca912b2c4837b2e65909c09ca01babe3df diff --git a/package/ipset/Makefile b/package/ipset/Makefile index 9f6326b8cb..efd439b7fe 100644 --- a/package/ipset/Makefile +++ b/package/ipset/Makefile @@ -1,45 +1,84 @@ # -# Copyright (C) 2006 OpenWrt.org +# Copyright (C) 2009 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -# $Id$ # include $(TOPDIR)/rules.mk +include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=ipset -PKG_VERSION:=2.2.9a -PKG_RELEASE:=2 +PKG_VERSION:=4.2 +PKG_RELEASE:=1 -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-20061009.tar.bz2 +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://ipset.netfilter.org -PKG_MD5SUM:=74ce3226b30cdd386630250bdc3488ef +PKG_MD5SUM:=9060d549a18c1c0794fa47a71343d627 include $(INCLUDE_DIR)/package.mk +define Package/ipset/Default + DEPENDS:= @(!(TARGET_ps3||TARGET_pxcab)||BROKEN) +endef + define Package/ipset +$(call Package/ipset/Default) SECTION:=net CATEGORY:=Network - DEPENDS:=@!TARGET_etrax - TITLE:=Netfilter ip sets administration utility + DEPENDS+= +iptables-mod-ipset +kmod-ipt-ipset + TITLE:=IPset administration utility URL:=http://ipset.netfilter.org/ endef +include $(INCLUDE_DIR)/kernel-defaults.mk + +IPSET_MAKEOPTS:= -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + COPT_FLAGS="$(TARGET_CFLAGS)" \ + LDFLAGS="-rdynamic -static-libgcc" \ + NO_EXTRA_WARN_FLAGS=yes \ + KERNEL_DIR="$(LINUX_DIR)" \ + PREFIX=/usr \ + +IPSET_MODULES:= \ + ip_set \ + ip_set_iphash \ + ip_set_ipmap \ + ip_set_ipporthash \ + ip_set_ipportiphash \ + ip_set_ipportnethash \ + ip_set_iptree \ + ip_set_iptreemap \ + ip_set_macipmap \ + ip_set_nethash \ + ip_set_portmap \ + ip_set_setlist \ + ipt_set \ + ipt_SET \ + define Build/Compile - $(call Build/Compile/Default, \ - COPT_FLAGS="$(TARGET_CFLAGS)" \ - KERNEL_DIR="$(LINUX_DIR)" \ - PREFIX="/usr" \ - ) + mkdir -p $(PKG_INSTALL_DIR) + $(MAKE) $(IPSET_MAKEOPTS) binaries + $(MAKE) $(KERNEL_MAKEOPTS) M="$(PKG_BUILD_DIR)/kernel" IP_NF_SET_MAX="256" IP_NF_SET_HASHSIZE="1024" modules + $(MAKE) $(IPSET_MAKEOPTS) DESTDIR="$(PKG_INSTALL_DIR)" binaries_install endef define Package/ipset/install - $(MAKE) -C $(PKG_BUILD_DIR) \ - DESTDIR="$(1)" \ - PREFIX="/usr" \ - install - rm -rf $(1)/usr/man + $(INSTALL_DIR) $(1)/usr/sbin + $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ipset $(1)/usr/sbin/ + $(INSTALL_DIR) $(1)/usr/lib/ipset + $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipset/libipset*.so $(1)/usr/lib/ipset/ +endef + +define KernelPackage/ipt-ipset +$(call Package/ipset/Default) + SUBMENU:=Netfilter Extensions + TITLE:=IPset netfilter modules + DEPENDS+= kmod-ipt-core + FILES:=$(foreach mod,$(IPSET_MODULES),$(PKG_BUILD_DIR)/kernel/$(mod).ko) + AUTOLOAD:=$(call AutoLoad,46,$(IPSET_MODULES)) endef $(eval $(call BuildPackage,ipset)) +$(eval $(call KernelPackage,ipt-ipset))