packages/utils/bandwidthd-php/Makefile
Jean-Michel Lacroix 3a49a7dbe6 bandwidthd-php: PHP files to graph bandwidthd data in a postgresql
database
Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info>
bandwidthd-php is a set of PHP files that allows to graph bandwidthd
data stored in a postgresql database.  This bandwidthd data can be
generated using bandwidthd-pgsql in OpenWRT or LEDE or with
bandwidthd on different OS (Windows, Linux for example).

Addition of a config file and an init file.
Modification of the Makefile to take in account the changes above
Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info>
2016-07-29 19:33:10 -04:00

51 lines
1.5 KiB
Makefile

#
# Copyright (C) 2006-2016 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=bandwidthd-php
PKG_VERSION:=2.0.1
PKG_RELEASE:=1
PKG_MAINTAINER:=Jean-Michel Lacroix <lacroix@lepine-lacroix.info>
PKG_LICENSE:=GPL-2.0
include $(INCLUDE_DIR)/package.mk
define Package/bandwidthd-php
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=+libpcre +libxml2 +php5 +php5-cgi +php5-mod-pgsql +php5-mod-gd
TITLE:=PHP files to graph bandwidthd data in a postgresql database
URL:=http://bandwidthd.sourceforge.net/
endef
define Package/bandwidthd-php/description
PHP files to graph bandwidthd data in a postgresql database
endef
define Build/Compile
endef
define Package/bandwidthd-php/install
$(INSTALL_DIR) $(1)/www/phphtdocs
$(INSTALL_DATA) ./files/legend.gif $(1)/www/phphtdocs/
$(INSTALL_DATA) ./files/logo.gif $(1)/www/phphtdocs/
$(INSTALL_DATA) ./files/details.php $(1)/www/phphtdocs/
$(INSTALL_DATA) ./files/footer.php $(1)/www/phphtdocs/
$(INSTALL_DATA) ./files/graph.php $(1)/www/phphtdocs/
$(INSTALL_DATA) ./files/include.php $(1)/www/phphtdocs/
$(INSTALL_DATA) ./files/index.php $(1)/www/phphtdocs/
ln -s /var/etc/bandwidthd-php.conf $(1)/www/phphtdocs/config.conf
$(INSTALL_DIR) $(1)//etc/config
$(INSTALL_CONF) ./files/bandwidthd-php.config $(1)/etc/config/bandwidthd-php
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/bandwidthd-php.init $(1)/etc/init.d/bandwidthd-php
endef
$(eval $(call BuildPackage,bandwidthd-php))