summaryrefslogtreecommitdiffstats
path: root/package/vnstat
diff options
context:
space:
mode:
authorBernd Kuhls <bernd.kuhls@t-online.de>2015-01-10 14:38:46 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-01-10 15:40:50 +0100
commitbc13478bd2eb877f7333a25b0b497bb642bbaef4 (patch)
treeeb7e38462c60d2fd6e2c3b0d66b4c0f4aa7bf174 /package/vnstat
parentecf332e50fb5366b1f7fd186d0b4c9ccfc11bd2f (diff)
downloadbuildroot-bc13478bd2eb877f7333a25b0b497bb642bbaef4.tar.gz
buildroot-bc13478bd2eb877f7333a25b0b497bb642bbaef4.zip
package/vnstat: New package
[Thomas: - Rename the VNSTAT_INSTALL_VNSTATI to VNSTAT_INSTALL_VNSTATI_CMDS, and use 'define ... endef'. - Use full paths for the destinations when using $(INSTALL)] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/vnstat')
-rw-r--r--package/vnstat/Config.in11
-rw-r--r--package/vnstat/vnstat.hash2
-rw-r--r--package/vnstat/vnstat.mk30
3 files changed, 43 insertions, 0 deletions
diff --git a/package/vnstat/Config.in b/package/vnstat/Config.in
new file mode 100644
index 0000000000..0df4982e21
--- /dev/null
+++ b/package/vnstat/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_VNSTAT
+ bool "vnstat"
+ depends on BR2_USE_MMU # fork()
+ help
+ vnStat is a console-based network traffic monitor that keeps a log of
+ network traffic for the selected interface(s). It uses the network
+ interface statistics provided by the kernel as information source.
+ This means that vnStat won't actually be sniffing any traffic and also
+ ensures light use of system resources.
+
+ http://humdi.net/vnstat
diff --git a/package/vnstat/vnstat.hash b/package/vnstat/vnstat.hash
new file mode 100644
index 0000000000..a3334d6619
--- /dev/null
+++ b/package/vnstat/vnstat.hash
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256 af1050d9c1b22d4b9742fe0d1818de9eb1037b8e7f9ba67b962e108d8527be69 vnstat-1.12.tar.gz
diff --git a/package/vnstat/vnstat.mk b/package/vnstat/vnstat.mk
new file mode 100644
index 0000000000..e0a64d5708
--- /dev/null
+++ b/package/vnstat/vnstat.mk
@@ -0,0 +1,30 @@
+################################################################################
+#
+# vnstat
+#
+################################################################################
+
+VNSTAT_VERSION = 1.12
+VNSTAT_SITE = http://humdi.net/vnstat
+VNSTAT_LICENSE = GPLv2
+VNSTAT_LICENSE_FILES = COPYING
+
+ifeq ($(BR2_PACKAGE_GD)$(BR2_PACKAGE_LIBPNG),yy)
+VNSTAT_DEPENDENCIES = gd
+VNSTAT_GD_MAKE_OPT = all
+define VNSTAT_INSTALL_VNSTATI_CMDS
+ $(INSTALL) -D -m 0755 $(@D)/src/vnstati $(TARGET_DIR)/usr/bin/vnstati
+endef
+endif
+
+define VNSTAT_BUILD_CMDS
+ $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) $(VNSTAT_GD_MAKE_OPT)
+endef
+
+define VNSTAT_INSTALL_TARGET_CMDS
+ $(INSTALL) -D -m 0755 $(@D)/src/vnstat $(TARGET_DIR)/usr/bin/vnstat
+ $(INSTALL) -D -m 0755 $(@D)/src/vnstatd $(TARGET_DIR)/usr/sbin/vnstatd
+ $(VNSTAT_INSTALL_VNSTATI_CMDS)
+endef
+
+$(eval $(generic-package))
OpenPOWER on IntegriCloud