wok diff rrdtool/receipt @ rev 24133

Up tazinst (115)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 23 15:17:56 2021 +0000 (2021-10-23)
parents c5bb6b8ba595
children 453c249b6219
line diff
     1.1 --- a/rrdtool/receipt	Mon Apr 22 10:58:42 2019 +0200
     1.2 +++ b/rrdtool/receipt	Sat Oct 23 15:17:56 2021 +0000
     1.3 @@ -1,30 +1,34 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="rrdtool"
     1.7 -VERSION="1.6.0"
     1.8 +VERSION="1.7.2"
     1.9  CATEGORY="misc"
    1.10 +TAGS="logs"
    1.11  SHORT_DESC="Data logging and graphing system for time series data."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="https://oss.oetiker.ch/rrdtool/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="http://oss.oetiker.ch/$PACKAGE"
    1.18 -WGET_URL="$WEB_SITE/pub/$TARBALL"
    1.19 +WGET_URL="${WEB_SITE}pub/$TARBALL"
    1.20  
    1.21 -DEPENDS="zlib freetype libpng libxml2 fontconfig pixman cairo glib pango \
    1.22 -xcb-util xorg-base-fonts libwrap"
    1.23 -BUILD_DEPENDS="perl pkg-config zlib-dev freetype-dev libpng-dev libxml2-dev \
    1.24 -fontconfig-dev pixman-dev cairo-dev glib-dev pango-dev python-dev perl groff \
    1.25 -libwrap-dev tcl-dev lua-dev ruby"
    1.26 -TAGS="logs"
    1.27 +DEPENDS="cairo fontconfig freetype glib libpng libwrap libxml2 pango pixman 
    1.28 +	xcb-util xorg-base-fonts zlib"
    1.29 +BUILD_DEPENDS="cairo-dev fontconfig-dev freetype-dev glib-dev groff 
    1.30 +	libpng-dev libwrap-dev libxml2-dev lua-dev pango-dev perl pixman-dev 
    1.31 +	pkg-config python-dev python-setuptools ruby tcl-dev zlib-dev"
    1.32  
    1.33  # Rules to configure and make the package.
    1.34  compile_rules()
    1.35  {
    1.36  	export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lz"
    1.37 -	./configure --prefix=/usr \
    1.38 -		--infodir=/usr/share/info \
    1.39 -		--enable-perl-site-install \
    1.40 -		--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.41 +
    1.42 +	./configure				\
    1.43 +		--prefix=/usr			\
    1.44 +		--infodir=/usr/share/info	\
    1.45 +		--enable-perl-site-install	\
    1.46 +		--mandir=/usr/share/man		\
    1.47 +		$CONFIGURE_ARGS &&
    1.48  	make &&
    1.49  	make DESTDIR=$DESTDIR install
    1.50  }
    1.51 @@ -33,8 +37,9 @@
    1.52  genpkg_rules()
    1.53  {
    1.54  	mkdir -p $fs/usr/lib
    1.55 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.56 +
    1.57 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.58  	# librrd_th.so has gone since librrd.so is thread safe
    1.59 -	ln -s librrd.so $fs/usr/lib/librrd_th.so
    1.60 -	cp -a $install/usr/bin $fs/usr
    1.61 +	ln -s librrd.so			$fs/usr/lib/librrd_th.so
    1.62 +	cp -a $install/usr/bin		$fs/usr
    1.63  }