From 077bc53447089e7b9160c9115d507c4bdd781d5e Mon Sep 17 00:00:00 2001 From: Peter Wang Date: Thu, 13 May 2010 00:25:42 +0200 Subject: development/valgrind: Updated for version 3.5.0 --- development/valgrind/README | 20 +++++++++++--------- development/valgrind/valgrind.SlackBuild | 19 +++++++++++++------ development/valgrind/valgrind.info | 14 ++++++++------ 3 files changed, 32 insertions(+), 21 deletions(-) (limited to 'development') diff --git a/development/valgrind/README b/development/valgrind/README index ba2e555091..4299693662 100644 --- a/development/valgrind/README +++ b/development/valgrind/README @@ -1,10 +1,12 @@ -Valgrind is an award-winning suite of tools for debugging and profiling Linux -programs. With the tools that come with Valgrind, you can automatically detect -many memory management and threading bugs, avoiding hours of frustrating -bug-hunting, making your programs more stable. You can also perform detailed -profiling, to speed up and reduce memory use of your programs. +Valgrind is an award-winning instrumentation framework for building dynamic +analysis tools. There are Valgrind tools that can automatically detect many +memory management and threading bugs, and profile your programs in detail. +You can also use Valgrind to build new tools. -The Valgrind distribution currently includes four tools: a memory error -detector, a cache (time) profiler, a call-graph profiler, and a heap (space) -profiler. It runs on the following platforms: X86/Linux, AMD64/Linux, -PPC32/Linux, PPC64/Linux. +The Valgrind distribution currently includes six production-quality tools: a +memory error detector, two thread error detectors, a cache and +branch-prediction profiler, a call-graph generating cache profiler, and a +heap profiler. It also includes two experimental tools: a heap/stack/global +array overrun detector, and a SimPoint basic block vector generator. It runs +on the following platforms: X86/Linux, AMD64/Linux, PPC32/Linux, PPC64/Linux, +and X86/Darwin (Mac OS X). diff --git a/development/valgrind/valgrind.SlackBuild b/development/valgrind/valgrind.SlackBuild index 1efd28b524..429f511e94 100644 --- a/development/valgrind/valgrind.SlackBuild +++ b/development/valgrind/valgrind.SlackBuild @@ -2,9 +2,10 @@ # Slackware build script for valgrind # Written by Kyle Guinn +# Updated by Peter Wang PRGNAM=valgrind -VERSION=3.3.0 +VERSION=3.5.0 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -15,10 +16,15 @@ PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -fi + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +fi rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT @@ -33,6 +39,7 @@ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ + --libdir=/usr/lib$LIBDIRSUFFIX \ --sysconfdir=/etc \ --localstatedir=/var \ || exit 1 @@ -46,7 +53,7 @@ make install-strip DESTDIR=$PKG || exit 1 ) mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a ACKNOWLEDGEMENTS AUTHORS COPYING FAQ.txt INSTALL NEWS README* \ +cp -a AUTHORS COPYING FAQ.txt NEWS README* \ $PKG/usr/doc/$PRGNAM-$VERSION mv $PKG/usr/share/doc/valgrind/html $PKG/usr/doc/$PRGNAM-$VERSION # The doc directory is the only thing in $PKG/usr/share, and the only things @@ -60,4 +67,4 @@ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/development/valgrind/valgrind.info b/development/valgrind/valgrind.info index f017ddfa4b..a589fc6c00 100644 --- a/development/valgrind/valgrind.info +++ b/development/valgrind/valgrind.info @@ -1,8 +1,10 @@ PRGNAM="valgrind" -VERSION="3.3.0" +VERSION="3.5.0" HOMEPAGE="http://www.valgrind.org/" -DOWNLOAD="http://www.valgrind.org/downloads/valgrind-3.3.0.tar.bz2" -MD5SUM="e5fc39755a714f36b7e5014c1c6d4748" -MAINTAINER="Kyle Guinn" -EMAIL="elyk03@gmail.com" -APPROVED="rworkman" +DOWNLOAD="http://www.valgrind.org/downloads/valgrind-3.5.0.tar.bz2" +MD5SUM="f03522a4687cf76c676c9494fcc0a517" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Peter Wang" +EMAIL="novalazy@gmail.com" +APPROVED="dsomero" -- cgit v1.2.3