4ff7e54175
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/packages@40123 3c298f89-4303-0410-b956-a3cf2f4a3e73
61 lines
1.6 KiB
Makefile
61 lines
1.6 KiB
Makefile
#
|
|
# Copyright (C) 2006-2011 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
|
|
PKG_VERSION:=2.0.1
|
|
PKG_RELEASE:=4
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
|
PKG_SOURCE_URL:=@SF/bandwidthd
|
|
PKG_MD5SUM:=aa79aad7bd489fd2cae1f7dc086ca8b6
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/bandwidthd
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Bandwidthd
|
|
URL:=http://bandwidthd.sourceforge.net/
|
|
DEPENDS:=+libgd +libpcap
|
|
endef
|
|
|
|
define Package/bandwidthd/daemon
|
|
This package contains bandwidthd a bandwith tracking utility.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
ac_cv_file__sw_lib=no \
|
|
ac_cv_file__sw_include=no \
|
|
ac_cv_file__usr_pkg_lib=no \
|
|
ac_cv_file__usr_pkg_include=no \
|
|
ac_cv_file__usr_local_pgsql_lib=no \
|
|
ac_cv_file__usr_local_pgsql_include=no \
|
|
ac_cv_lib_pq_PQconnectdb=no \
|
|
|
|
EXTRA_CFLAGS+= $(TARGET_CPPFLAGS)
|
|
EXTRA_LDFLAGS+= $(TARGET_LDFLAGS) -Wl,-rpath-link,$(STAGING_DIR)/usr/lib
|
|
|
|
define Package/bandwidthd/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bandwidthd $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_DATA) ./files/bandwidthd.config $(1)/etc/config/bandwidthd
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/bandwidthd.init $(1)/etc/init.d/bandwidthd
|
|
$(INSTALL_DIR) $(1)/www
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/htdocs/legend.gif $(1)/www/
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/htdocs/logo.gif $(1)/www/
|
|
endef
|
|
|
|
define Package/bandwidthd/conffiles
|
|
/etc/config/bandwidthd
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,bandwidthd))
|