瀏覽代碼

bandwidthd: new package

[Thomas: minor reformatting like removing trailing whitespaces,
wrapping to a shorter length Config.in help texts, etc.]

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Nathaniel Roach 11 年之前
父節點
當前提交
c9f5a86eae
共有 3 個文件被更改,包括 83 次插入0 次删除
  1. 1 0
      package/Config.in
  2. 50 0
      package/bandwidthd/Config.in
  3. 32 0
      package/bandwidthd/bandwidthd.mk

+ 1 - 0
package/Config.in

@@ -939,6 +939,7 @@ menu "Networking applications"
 	source "package/autossh/Config.in"
 	source "package/avahi/Config.in"
 	source "package/axel/Config.in"
+	source "package/bandwidthd/Config.in"
 	source "package/bcusdk/Config.in"
 	source "package/bind/Config.in"
 	source "package/bluez_utils/Config.in"

+ 50 - 0
package/bandwidthd/Config.in

@@ -0,0 +1,50 @@
+config BR2_PACKAGE_BANDWIDTHD
+	bool "bandwidthd"
+	depends on BR2_USE_MMU # fork()
+	select BR2_PACKAGE_LIBPNG
+	select BR2_PACKAGE_LIBPCAP
+	select BR2_PACKAGE_GD
+	help
+	  BandwidthD - Bandwidth monitoring
+
+	  Provides a method to measure the bandwidth that travels
+	  through the machine, grouped by subnet and IP. This
+	  information can be stored locally in /var/lib/bandwidthd and
+	  can be configured to generate static HTML pages which can be
+	  hosted by a web server.
+
+	  It is highly recommended that the target has some way of
+	  retaining the time between reboots. (e.g. NTP on boot or an
+	  RTC)
+
+	  It is suggested to use sqlite for logfile storage but works
+	  fine without, and can be completely ignored if the
+	  postgresql portion is used.
+
+	  As upstream is no longer actively maintained, a fork is
+	  available on github that works on making BandwidthD's build
+	  process more compatible with buildroot's.
+
+	  Upstream: http://bandwidthd.sourceforge.net/
+	  Github fork: http://github.com/nroach44/bandwidthd
+
+if BR2_PACKAGE_BANDWIDTHD
+
+config BR2_PACKAGE_BANDWIDTHD_POSTGRESQL
+	bool "enable postgresql log target support"
+	depends on BR2_TOOLCHAIN_USES_GLIBC # postgresql
+	select BR2_PACKAGE_POSTGRESQL
+	help
+	  Enable support for logging the bandwidthd data to a remote
+	  (or local) postgresql server. This data can then be viewed
+	  through a php site. See README in the source code
+	  (github.com/nroach44/bandwidthd) for more information.
+
+config BR2_PACKAGE_BANDWIDTHD_SQLITE3
+	bool "enable sqlite3 log storage"
+	select BR2_PACKAGE_SQLITE
+	help
+	  Enable support for storing the aggregated data in an sqlite
+	  db instead of a plain text file.
+
+endif

+ 32 - 0
package/bandwidthd/bandwidthd.mk

@@ -0,0 +1,32 @@
+################################################################################
+#
+# bandwidthd
+#
+################################################################################
+
+BANDWIDTHD_VERSION = v2.0.1-auto-r07
+BANDWIDTHD_SITE = $(call github,nroach44,bandwidthd,$(BANDWIDTHD_VERSION))
+
+# Specified as "any version of the GPL that is current as of your
+# download" by upstream.
+BANDWIDTHD_LICENSE = GPL
+
+BANDWIDTHD_DEPENDENCIES = gd libpng libpcap
+
+BANDWIDTHD_AUTORECONF = YES
+
+ifeq ($(BR2_PACKAGE_BANDWIDTHD_POSTGRESQL),y)
+BANDWIDTHD_DEPENDENCIES += postgresql
+BANDWIDTHD_CONF_OPT += --with-postgresql-logging=true
+else
+BANDWIDTHD_CONF_OPT += --with-postgresql-logging=false
+endif
+
+ifeq ($(BR2_PACKAGE_BANDWIDTHD_SQLITE3),y)
+BANDWIDTHD_DEPENDENCIES += sqlite
+BANDWIDTHD_CONF_OPT += --with-sqlite-storage=true
+else
+BANDWIDTHD_CONF_OPT += --with-sqlite-storage=false
+endif
+
+$(eval $(autotools-package))