wok rev 24429

updated collectd (5.10.0 -> 5.12.0)
author Hans-G?nter Theisgen
date Sat Feb 12 15:50:46 2022 +0100 (2022-02-12)
parents 7c71a871a04b
children 471c4bad5183
files collectd/description.txt collectd/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/collectd/description.txt	Sat Feb 12 15:50:46 2022 +0100
     1.3 @@ -0,0 +1,8 @@
     1.4 +Collectd gathers metrics from various sources, e.g. the operating system,
     1.5 +applications, logfiles and external devices, and stores this information
     1.6 +or makes it available over the network.
     1.7 +Those statistics can be used to monitor systems, find performance
     1.8 +bottlenecks (i.e. performance analysis) and predict future system load
     1.9 +(i.e. capacity planning).
    1.10 +Or if you just want pretty graphs of your private server and are fed up
    1.11 +with some homegrown solution you're at the right place, too ;).
     2.1 --- a/collectd/receipt	Sat Feb 12 14:59:37 2022 +0100
     2.2 +++ b/collectd/receipt	Sat Feb 12 15:50:46 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="collectd"
     2.7 -VERSION="5.10.0"
     2.8 +VERSION="5.12.0"
     2.9  CATEGORY="network"
    2.10  SHORT_DESC="System Statistics Collection Daemon."
    2.11  MAINTAINER="erjo@slitaz.org"
    2.12 @@ -9,7 +9,7 @@
    2.13  WEB_SITE="https://collectd.org"
    2.14  
    2.15  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.16 -WGET_URL="http://collectd.org/files/$TARBALL"
    2.17 +WGET_URL="https://collectd.org/files/$TARBALL"
    2.18  
    2.19  DEPENDS="perl rrdtool"
    2.20  BUILD_DEPENDS="rrdtool-dev slitaz-toolchain"
    2.21 @@ -22,18 +22,17 @@
    2.22  	./configure				\
    2.23  		--prefix=/usr			\
    2.24  		--localstatedir=/var		\
    2.25 +		--sysconfdir=/etc/collectd	\
    2.26 +		--enable-cpu			\
    2.27 +		--enable-csv			\
    2.28 +		--enable-disk			\
    2.29  		--enable-interface		\
    2.30  		--enable-load			\
    2.31 -		--enable-cpu			\
    2.32 -		--enable-disk			\
    2.33  		--enable-logfile		\
    2.34 +		--enable-rrdtool		\
    2.35  		--enable-syslog			\
    2.36 -		--enable-csv			\
    2.37 -		--enable-rrdtool		\
    2.38  		--with-librrdtool=/usr/include	\
    2.39  		--disable-all-plugins		\
    2.40 -		--sysconfdir=/etc/collectd	\
    2.41 -		--localstatedir=/var		\
    2.42  		$CONFIGURE_ARGS &&
    2.43  	make &&
    2.44  	make DESTDIR=$DESTDIR install
    2.45 @@ -42,19 +41,18 @@
    2.46  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.47  genpkg_rules()
    2.48  {
    2.49 -
    2.50  	mkdir -p $fs/usr/lib/collectd
    2.51  	mkdir -p $fs/usr/share
    2.52  	mkdir -p $fs/etc/init.d
    2.53  
    2.54  	cp -a $install/etc			$fs
    2.55 -	cp -a $install/var			$fs
    2.56  	cp -a $install/usr/share/collectd	$fs/usr/share
    2.57  	cp -a $install/usr/bin			$fs/usr
    2.58  	cp -a $install/usr/sbin			$fs/usr
    2.59  	cp -a $install/usr/lib/*.so*		$fs/usr/lib
    2.60  	cp -a $install/usr/lib/collectd/*.so	$fs/usr/lib/collectd
    2.61  	cp -a $install/usr/lib/perl5		$fs/usr/lib
    2.62 +	cp -a $install/var			$fs
    2.63  
    2.64  	# Add init script and fixes
    2.65  	install -g root -o root -m 0755 $stuff/collectd \