massive Makefile cleanup, add missing 'svn:keywords' property
[openwrt/svn-archive/archive.git] / net / netstat-nat / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=netstat-nat
12 PKG_VERSION:=1.4.6
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://tweegy.demon.nl/download/
17 PKG_MD5SUM:=ccf71a6cbd9a513ea3adec54b54ee770
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/netstat-nat
26 SECTION:=net
27 CATEGORY:=Network
28 TITLE:=A netstat variant for NAT connections
29 DESCRIPTION:=\
30 Netstat-nat is a small program written in C.\\\
31 It displays NAT connections, managed by netfilter/iptables which comes \\\
32 with the > 2.4.x linux kernels.\\\
33 The program reads its information from '/proc/net/ip_conntrack', which \\\
34 is the temporary conntrack-storage of netfilter.
35 URL:=http://tweegy.demon.nl/projects/netstat-nat/
36 endef
37
38 # uses GNU configure
39
40 define Build/Compile
41 $(MAKE) -C $(PKG_BUILD_DIR) \
42 DESTDIR="$(PKG_INSTALL_DIR)" \
43 all install
44 endef
45
46 define Package/netstat-nat/install
47 install -d -m0755 $(1)/usr/bin
48 $(CP) $(PKG_INSTALL_DIR)/usr/bin/netstat-nat $(1)/usr/bin/
49 endef
50
51 $(eval $(call BuildPackage,netstat-nat))