diff options
| author | Florian Fainelli | 2006-08-03 08:55:48 +0000 |
|---|---|---|
| committer | Florian Fainelli | 2006-08-03 08:55:48 +0000 |
| commit | 16cbb139a02b5dfefa7c7d3e6051f4bd4ab41e23 (patch) | |
| tree | 18db4b69c5e136efe8ea83f46acf39e384a5cf29 | |
| parent | c35d5376a3943635345b99ca19dff7cc9333cb61 (diff) | |
| download | archive-16cbb139a02b5dfefa7c7d3e6051f4bd4ab41e23.tar.gz | |
Port iptables-snmp to -ng
SVN-Revision: 4411
| -rw-r--r-- | net/iptables-snmp/Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/net/iptables-snmp/Makefile b/net/iptables-snmp/Makefile new file mode 100644 index 0000000000..dfb243c50c --- /dev/null +++ b/net/iptables-snmp/Makefile @@ -0,0 +1,50 @@ +# 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:=iptables-snmp +PKG_VERSION:=0.1 +PKG_RELEASE:=1 +PKG_MD5SUM:=8370d2f0c899461a053da491400119d1 + +PKG_SOURCE_URL:=http://www.nobiscuit.com/iptables-snmp +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(INCLUDE_DIR)/package.mk + +define Package/iptables-snmp + SECTION:=net + CATEGORY:=Network + DEPENDS:=+snmpd + TITLE:=An snmpd plugin to access iptables rules + DESCRIPTION:=This is a plugin that makes iptables rules accessable from snmpd. + URL:=http://www.nobiscuit.com/iptables-snmp/ +endef + +define Build/Configure +$(call Build/Configure/Default) +endef + +define Build/Compile + rm -rf $(PKG_INSTALL_DIR) + mkdir -p $(PKG_INSTALL_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \ + all install +endef + +define Package/iptables-snmp/install + install -d -m0755 $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables-snmp.so $(1)/usr/lib +endef + +$(eval $(call BuildPackage,iptables-snmp)) |