add vnstat

SVN-Revision: 2786
This commit is contained in:
Oliver Ertl 2005-12-28 10:23:37 +00:00
parent 6f4f74189c
commit 9157b26a34
5 changed files with 48 additions and 0 deletions

View File

@ -138,6 +138,7 @@ source "package/ulogd/Config.in"
source "package/updatedd/Config.in"
source "package/vgp/Config.in"
source "package/vnc-reflector/Config.in"
source "package/vnstat/Config.in"
source "package/vpnc/Config.in"
source "package/vrrpd/Config.in"
source "package/vsftpd/Config.in"

View File

@ -218,6 +218,7 @@ package-$(BR2_COMPILE_UTIL_LINUX) += util-linux
package-$(BR2_PACKAGE_UDEV) += udev
package-$(BR2_PACKAGE_VGP) += vgp
package-$(BR2_PACKAGE_VNC_REFLECTOR) += vnc-reflector
package-$(BR2_PACKAGE_VNSTAT) += vnstat
package-$(BR2_PACKAGE_VPNC) += vpnc
package-$(BR2_PACKAGE_VRRPD) += vrrpd
package-$(BR2_PACKAGE_VTUN) += vtun

View File

@ -0,0 +1,11 @@
config BR2_PACKAGE_VNSTAT
prompt "vnstat............................ Console-based network traffic monitor"
tristate
default m if CONFIG_DEVEL
help
vnStat is a network traffic monitor for Linux that keeps a log of daily
network traffic for the selected interface(s). vnStat isn't a packet
sniffer. The traffic information is analyzed from the /proc -filesystem,
so vnStat can be used without root permissions.
.
http://humdi.net/vnstat/

View File

@ -0,0 +1,31 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=vnstat
PKG_VERSION:=1.4
PKG_RELEASE:=1
PKG_MD5SUM:=9184f79b5e60499bc059f670032291e5
PKG_SOURCE_URL:=http://humdi.net/vnstat
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,VNSTAT,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(PKG_BUILD_DIR)/.configured:
touch $@
$(PKG_BUILD_DIR)/.built:
$(MAKE) -C $(PKG_BUILD_DIR) \
$(TARGET_CONFIGURE_OPTS)
touch $@
$(IPKG_VNSTAT):
install -d -m0755 $(IDIR_VNSTAT)/usr/bin
cp $(PKG_BUILD_DIR)/src/vnstat $(IDIR_VNSTAT)/usr/bin/
$(STRIP) $(IDIR_VNSTAT)/usr/bin/*
$(IPKG_BUILD) $(IDIR_VNSTAT) $(PACKAGE_DIR)

View File

@ -0,0 +1,4 @@
Package: vnstat
Priority: optional
Section: net
Description: Console-based network traffic monitor