wok diff collectd/receipt @ 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 | 466f9b8e7e27 |
children | 471c4bad5183 |
line diff
1.1 --- a/collectd/receipt Thu Jan 09 17:57:27 2020 +0100 1.2 +++ b/collectd/receipt Sat Feb 12 15:50:46 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="collectd" 1.7 -VERSION="5.10.0" 1.8 +VERSION="5.12.0" 1.9 CATEGORY="network" 1.10 SHORT_DESC="System Statistics Collection Daemon." 1.11 MAINTAINER="erjo@slitaz.org" 1.12 @@ -9,7 +9,7 @@ 1.13 WEB_SITE="https://collectd.org" 1.14 1.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.16 -WGET_URL="http://collectd.org/files/$TARBALL" 1.17 +WGET_URL="https://collectd.org/files/$TARBALL" 1.18 1.19 DEPENDS="perl rrdtool" 1.20 BUILD_DEPENDS="rrdtool-dev slitaz-toolchain" 1.21 @@ -22,18 +22,17 @@ 1.22 ./configure \ 1.23 --prefix=/usr \ 1.24 --localstatedir=/var \ 1.25 + --sysconfdir=/etc/collectd \ 1.26 + --enable-cpu \ 1.27 + --enable-csv \ 1.28 + --enable-disk \ 1.29 --enable-interface \ 1.30 --enable-load \ 1.31 - --enable-cpu \ 1.32 - --enable-disk \ 1.33 --enable-logfile \ 1.34 + --enable-rrdtool \ 1.35 --enable-syslog \ 1.36 - --enable-csv \ 1.37 - --enable-rrdtool \ 1.38 --with-librrdtool=/usr/include \ 1.39 --disable-all-plugins \ 1.40 - --sysconfdir=/etc/collectd \ 1.41 - --localstatedir=/var \ 1.42 $CONFIGURE_ARGS && 1.43 make && 1.44 make DESTDIR=$DESTDIR install 1.45 @@ -42,19 +41,18 @@ 1.46 # Rules to gen a SliTaz package suitable for Tazpkg. 1.47 genpkg_rules() 1.48 { 1.49 - 1.50 mkdir -p $fs/usr/lib/collectd 1.51 mkdir -p $fs/usr/share 1.52 mkdir -p $fs/etc/init.d 1.53 1.54 cp -a $install/etc $fs 1.55 - cp -a $install/var $fs 1.56 cp -a $install/usr/share/collectd $fs/usr/share 1.57 cp -a $install/usr/bin $fs/usr 1.58 cp -a $install/usr/sbin $fs/usr 1.59 cp -a $install/usr/lib/*.so* $fs/usr/lib 1.60 cp -a $install/usr/lib/collectd/*.so $fs/usr/lib/collectd 1.61 cp -a $install/usr/lib/perl5 $fs/usr/lib 1.62 + cp -a $install/var $fs 1.63 1.64 # Add init script and fixes 1.65 install -g root -o root -m 0755 $stuff/collectd \