package: remove references to symbols TARGET_{ps3,pxcab}.
[openwrt/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 PKG_LICENSE:=GPL-2.0
21
22 PKG_FIXUP:=autoreconf
23 PKG_INSTALL:=1
24
25 include $(INCLUDE_DIR)/package.mk
26
27 define Package/ipset
28 SECTION:=net
29 CATEGORY:=Network
30 DEPENDS+= +kmod-ipt-ipset +libmnl
31 TITLE:=IPset administration utility
32 URL:=http://ipset.netfilter.org/
33 endef
34
35 CONFIGURE_ARGS += \
36 --with-kbuild="$(LINUX_DIR)"
37
38 MAKE_FLAGS += \
39 ARCH="$(LINUX_KARCH)" \
40 SHELL="$(BASH)"
41
42 IPSET_MODULES:= \
43 ipset/ip_set \
44 ipset/ip_set_bitmap_ip \
45 ipset/ip_set_bitmap_ipmac \
46 ipset/ip_set_bitmap_port \
47 ipset/ip_set_hash_ip \
48 ipset/ip_set_hash_ipport \
49 ipset/ip_set_hash_ipportip \
50 ipset/ip_set_hash_ipportnet \
51 ipset/ip_set_hash_net \
52 ipset/ip_set_hash_netiface \
53 ipset/ip_set_hash_netport \
54 ipset/ip_set_list_set \
55 xt_set \
56
57 define Build/Compile
58 $(call Build/Compile/Default)
59 $(call Build/Compile/Default,modules)
60 endef
61
62 define Package/ipset/install
63 $(INSTALL_DIR) $(1)/usr/sbin
64 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ipset $(1)/usr/sbin/
65 $(INSTALL_DIR) $(1)/usr/lib
66 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libipset*.so* $(1)/usr/lib/
67 endef
68
69 define KernelPackage/ipt-ipset
70 SUBMENU:=Netfilter Extensions
71 TITLE:=IPset netfilter modules
72 DEPENDS+= +kmod-ipt-core +kmod-nfnetlink
73 FILES:=$(foreach mod,$(IPSET_MODULES),$(PKG_BUILD_DIR)/kernel/net/netfilter/$(mod).ko)
74 AUTOLOAD:=$(call AutoLoad,49,$(notdir $(IPSET_MODULES)))
75 endef
76
77 $(eval $(call BuildPackage,ipset))
78 $(eval $(call KernelPackage,ipt-ipset))