wok rev 22093

updated valgrind and valgrind-dev (3.8.1 -> 3.15.0)
author Hans-G?nter Theisgen
date Thu Oct 31 17:10:22 2019 +0100 (2019-10-31)
parents c8133a4dc124
children 8c1e8618de66
files valgrind-dev/receipt valgrind/receipt
line diff
     1.1 --- a/valgrind-dev/receipt	Thu Oct 31 16:27:24 2019 +0100
     1.2 +++ b/valgrind-dev/receipt	Thu Oct 31 17:10:22 2019 +0100
     1.3 @@ -1,21 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="valgrind-dev"
     1.7 -VERSION="3.8.1"
     1.8 +VERSION="3.15.0"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Valgrind devel files."
    1.11 +SHORT_DESC="Valgrind development files."
    1.12  MAINTAINER="paul@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14  WEB_SITE="http://valgrind.org/"
    1.15 +
    1.16 +DEPENDS="pkg-config valgrind"
    1.17  WANTED="valgrind"
    1.18  
    1.19 -DEPENDS="valgrind pkg-config"
    1.20 -
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr/lib/valgrind
    1.25 -	cp -a $install/usr/include $fs/usr
    1.26 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.27 -	cp -a $install/usr/lib/valgrind/*.*a $fs/usr/lib/valgrind
    1.28 +
    1.29 +	cp -a $install/usr/include		$fs/usr
    1.30 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.31 +	cp -a $install/usr/lib/valgrind/*.*a	$fs/usr/lib/valgrind
    1.32  }
     2.1 --- a/valgrind/receipt	Thu Oct 31 16:27:24 2019 +0100
     2.2 +++ b/valgrind/receipt	Thu Oct 31 17:10:22 2019 +0100
     2.3 @@ -1,38 +1,42 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="valgrind"
     2.7 -VERSION="3.8.1"
     2.8 +VERSION="3.15.0"
     2.9  CATEGORY="development"
    2.10 +TAGS="profiler"
    2.11  SHORT_DESC="Memory debugger and profiler."
    2.12  MAINTAINER="paul@slitaz.org"
    2.13  LICENSE="GPL2"
    2.14 +WEB_SITE="http://valgrind.org/"
    2.15 +
    2.16 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.17 +WGET_URL="https://sourceware.org/pub/$PACKAGE/$TARBALL"
    2.18 +
    2.19  SUGGESTED="perl"
    2.20 -TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.21 -WEB_SITE="http://valgrind.org/"
    2.22 -WGET_URL="http://valgrind.org/downloads/$TARBALL"
    2.23 -TAGS="profiler"
    2.24 -
    2.25  DEPENDS=""
    2.26 -BUILD_DEPENDS="sed autoconf"
    2.27 +BUILD_DEPENDS="autoconf"
    2.28  
    2.29  # Rules to configure and make the package.
    2.30  compile_rules()
    2.31  {
    2.32 -	autoconf
    2.33 -	./configure \
    2.34 -		--prefix=/usr \
    2.35 -		--infodir=/usr/share/info \
    2.36 -		--mandir=/usr/share/man \
    2.37 +	autoconf &&
    2.38 +	./configure				\
    2.39 +		--prefix=/usr			\
    2.40 +		--infodir=/usr/share/info	\
    2.41 +		--mandir=/usr/share/man		\
    2.42  		$CONFIGURE_ARGS &&
    2.43 -	make && make DESTDIR=$DESTDIR install
    2.44 +	make &&
    2.45 +	make DESTDIR=$DESTDIR install
    2.46  }
    2.47  
    2.48  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.49  genpkg_rules()
    2.50  {
    2.51  	mkdir -p $fs/usr/lib/valgrind
    2.52 -	cp -a $install/usr/bin $fs/usr
    2.53 -	cp -a $install/usr/lib/valgrind/* $fs/usr/lib/valgrind
    2.54 +
    2.55 +	cp -a $install/usr/bin			$fs/usr
    2.56 +	cp -a $install/usr/lib/valgrind/*	$fs/usr/lib/valgrind
    2.57 +
    2.58  	# remove static libraries
    2.59  	rm $fs/usr/lib/valgrind/*.*a	
    2.60  }