parent
126aa6ec0b
commit
c6da3eefd0
@ -0,0 +1,13 @@ |
|||||||
|
config BR2_PACKAGE_NETSTAT-NAT |
||||||
|
tristate "netstat-nat - a netstat variant for NAT connections" |
||||||
|
# default m if CONFIG_DEVEL |
||||||
|
default n |
||||||
|
help |
||||||
|
Netstat-nat is a small program written in C. |
||||||
|
It displays NAT connections, managed by netfilter/iptables which comes |
||||||
|
with the > 2.4.x linux kernels. |
||||||
|
The program reads its information from '/proc/net/ip_conntrack', which |
||||||
|
is the temporary conntrack-storage of netfilter. |
||||||
|
|
||||||
|
http://tweegy.demon.nl/projects/netstat-nat/ |
||||||
|
|
@ -0,0 +1,67 @@ |
|||||||
|
# $Id$
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk |
||||||
|
|
||||||
|
PKG_NAME:=netstat-nat
|
||||||
|
PKG_VERSION:=1.4.6
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
PKG_MD5SUM:=ccf71a6cbd9a513ea3adec54b54ee770
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=http://tweegy.demon.nl/download/
|
||||||
|
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 $(TOPDIR)/package/rules.mk |
||||||
|
|
||||||
|
$(eval $(call PKG_template,NETSTAT-NAT,netstat-nat,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) |
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared |
||||||
|
(cd $(PKG_BUILD_DIR); \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(strip $(TARGET_CFLAGS))" \
|
||||||
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
||||||
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
||||||
|
./configure \
|
||||||
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
--build=$(GNU_HOST_NAME) \
|
||||||
|
--program-prefix="" \
|
||||||
|
--program-suffix="" \
|
||||||
|
--prefix=/usr \
|
||||||
|
--exec-prefix=/usr \
|
||||||
|
--bindir=/usr/bin \
|
||||||
|
--datadir=/usr/share \
|
||||||
|
--includedir=/usr/include \
|
||||||
|
--infodir=/usr/share/info \
|
||||||
|
--libdir=/usr/lib \
|
||||||
|
--libexecdir=/usr/lib \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--sbindir=/usr/sbin \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
$(DISABLE_LARGEFILE) \
|
||||||
|
$(DISABLE_NLS) \
|
||||||
|
);
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.built: |
||||||
|
rm -rf $(PKG_INSTALL_DIR)
|
||||||
|
mkdir -p $(PKG_INSTALL_DIR)
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
|
all install
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(IPKG_NETSTAT-NAT): |
||||||
|
install -d -m0755 $(IDIR_NETSTAT-NAT)/usr/bin
|
||||||
|
cp -fpR $(PKG_INSTALL_DIR)/usr/bin/netstat-nat $(IDIR_NETSTAT-NAT)/usr/bin/
|
||||||
|
$(RSTRIP) $(IDIR_NETSTAT-NAT)
|
||||||
|
$(IPKG_BUILD) $(IDIR_NETSTAT-NAT) $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
mostlyclean: |
||||||
|
make -C $(PKG_BUILD_DIR) clean
|
||||||
|
rm $(PKG_BUILD_DIR)/.built
|
@ -0,0 +1,9 @@ |
|||||||
|
Package: netstat-nat |
||||||
|
Priority: optional |
||||||
|
Section: net |
||||||
|
Maintainer: OpenWrt Developers Team <openwrt-devel@openwrt.org>, buZz <buzztiaan@gmail.com> |
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/netstat-nat/ |
||||||
|
Description: a netstat variant for NAT connections |
||||||
|
Netstat-nat displays NAT connections, managed by netfilter/iptables which |
||||||
|
comes with the > 2.4.x linux kernels. |
||||||
|
|
Loading…
Reference in new issue