Update ipset to version 6.20.1
[openwrt.git] / package / network / utils / ipset / Makefile
1  
2 # Copyright (C) 2009-2012 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 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=ipset
12 PKG_VERSION:=6.20.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=http://ipset.netfilter.org
17 PKG_MD5SUM:=8af741492752fbf24d3a28a9d1473d40
18
19 PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
20
21 PKG_FIXUP:=autoreconf
22 PKG_INSTALL:=1
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/ipset/Default
27   DEPENDS:= @(!(TARGET_ps3||TARGET_pxcab)||BROKEN)
28 endef
29
30 define Package/ipset
31 $(call Package/ipset/Default)
32   SECTION:=net
33   CATEGORY:=Network
34   DEPENDS+= +kmod-ipt-ipset +libmnl
35   TITLE:=IPset administration utility
36   URL:=http://ipset.netfilter.org/
37 endef
38
39 CONFIGURE_ARGS += \
40         --with-kbuild="$(LINUX_DIR)"
41
42 MAKE_FLAGS += \
43         ARCH="$(LINUX_KARCH)" \
44         SHELL="$(BASH)"
45
46 IPSET_MODULES:= \
47         ipset/ip_set \
48         ipset/ip_set_bitmap_ip \
49         ipset/ip_set_bitmap_ipmac \
50         ipset/ip_set_bitmap_port \
51         ipset/ip_set_hash_ip \
52         ipset/ip_set_hash_ipport \
53         ipset/ip_set_hash_ipportip \
54         ipset/ip_set_hash_ipportnet \
55         ipset/ip_set_hash_net \
56         ipset/ip_set_hash_netiface \
57         ipset/ip_set_hash_netport \
58         ipset/ip_set_list_set \
59         xt_set \
60
61 define Build/Compile
62         $(call Build/Compile/Default)
63         $(call Build/Compile/Default,modules)
64 endef
65
66 define Package/ipset/install
67         $(INSTALL_DIR) $(1)/usr/sbin
68         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ipset $(1)/usr/sbin/
69         $(INSTALL_DIR) $(1)/usr/lib
70         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libipset*.so* $(1)/usr/lib/
71 endef
72
73 define KernelPackage/ipt-ipset
74 $(call Package/ipset/Default)
75   SUBMENU:=Netfilter Extensions
76   TITLE:=IPset netfilter modules
77   DEPENDS+= +kmod-ipt-core +kmod-nfnetlink
78   FILES:=$(foreach mod,$(IPSET_MODULES),$(PKG_BUILD_DIR)/kernel/net/netfilter/$(mod).ko)
79   AUTOLOAD:=$(call AutoLoad,49,$(notdir $(IPSET_MODULES)))
80 endef
81
82 $(eval $(call BuildPackage,ipset))
83 $(eval $(call KernelPackage,ipt-ipset))