99bcbada52
git-svn-id: svn://svn.openwrt.org/openwrt/packages@9504 3c298f89-4303-0410-b956-a3cf2f4a3e73
92 lines
2.1 KiB
Makefile
92 lines
2.1 KiB
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=collectd
|
|
PKG_VERSION:=4.2.0
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://collectd.org/files/
|
|
PKG_MD5SUM:=ed1f41f86ad61bd7096ee5386ab33fd0
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/collectd
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS=+libgcc
|
|
TITLE:=Lightweight system statistics collection daemon
|
|
URL:=http://verplant.org/collectd/
|
|
endef
|
|
|
|
define Package/collectd/description
|
|
collectd is a small daemon which collects system information periodically
|
|
and provides mechanismns to store the values in a variety of ways.
|
|
endef
|
|
|
|
define Package/collectd/conffiles
|
|
/etc/collectd.conf
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-debug \
|
|
--enable-daemon \
|
|
--enable-getifaddrs \
|
|
--disable-apache \
|
|
--disable-apcups \
|
|
--disable-apple_sensors \
|
|
--disable-battery \
|
|
--enable-cpu \
|
|
--disable-cpufreq \
|
|
--enable-disk \
|
|
--enable-df \
|
|
--disable-dns \
|
|
--disable-email \
|
|
--disable-quota \
|
|
--disable-hddtemp \
|
|
--enable-load \
|
|
--disable-mbmon \
|
|
--enable-memory \
|
|
--disable-multimeter \
|
|
--disable-mysql \
|
|
--disable-nfs \
|
|
--disable-ntpd \
|
|
--enable-ping \
|
|
--enable-processes \
|
|
--disable-sensors \
|
|
--enable-serial \
|
|
--disable-swap \
|
|
--disable-tape \
|
|
--enable-traffic \
|
|
--disable-users \
|
|
--disable-vserver \
|
|
--enable-wireless \
|
|
--with-nan-emulation
|
|
|
|
MAKE_FLAGS += \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
all install
|
|
|
|
define Package/collectd/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/collectd $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/usr/lib/collectd
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/collectd/*.so $(1)/usr/lib/collectd/
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(INSTALL_CONF) ./files/collectd.conf $(1)/etc/
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/collectd.init $(1)/etc/init.d/collectd
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,collectd))
|