1
0
forked from ports/opt

valgrind: adopted, updated to version 3.17.0

This commit is contained in:
Matt Housh 2021-06-22 23:07:32 -05:00
parent 7ea8057bad
commit b333ad914f
3 changed files with 11 additions and 15 deletions

View File

@ -14,6 +14,7 @@ drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/valgrind/
-rw-r--r-- root/root usr/include/valgrind/callgrind.h
-rw-r--r-- root/root usr/include/valgrind/config.h
-rw-r--r-- root/root usr/include/valgrind/dhat.h
-rw-r--r-- root/root usr/include/valgrind/drd.h
-rw-r--r-- root/root usr/include/valgrind/helgrind.h
-rw-r--r-- root/root usr/include/valgrind/libvex.h

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/aFSBpJvBlOnDrDZsWDMA7vMZ67Og179NhaTlvq/oLlbvaWWoogVVdBm6OkvikZn733eULI9fof4ZDsxob8z5gQ=
SHA256 (Pkgfile) = a511e42dfb26ed76c63fc30f1224f16ba9d26d597916070183254ae3b11694a7
SHA256 (.footprint) = 10874e1e1279c1c3a36021355008ddc52acaa1278490f5396247f21810915a9d
SHA256 (valgrind-3.16.1.tar.bz2) = c91f3a2f7b02db0f3bc99479861656154d241d2fdb265614ba918cc6720a33ca
RWSE3ohX2g5d/U3UWzDz0E5nEQBpEYi1v2vnXVHX+3msl2viTAza4wc/Lwp7kpCwJ/Oa1IIiuFBn8dSZMQBSmlFeeNeWqNHuQgY=
SHA256 (Pkgfile) = fc9f22b7e2ecadeebd9c02c51bfbccf9c86b830f54bafb7507bb6ccf4c1dcdd0
SHA256 (.footprint) = b983188721f6dbc0ac8be191315593fb03727dc02467c0669c4d58f787420157
SHA256 (valgrind-3.17.0.tar.bz2) = ad3aec668e813e40f238995f60796d9590eee64a16dff88421430630e69285a2

View File

@ -1,24 +1,19 @@
# Description: A debugging and profiling system for Linux programs
# URL: https://valgrind.org
# Maintainer: Thomas Penteker, tek at serverop dot de
# Optional: gdb
# URL: https://valgrind.org/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Optional: gdb
name=valgrind
version=3.16.1
version=3.17.0
release=1
source=(https://sourceware.org/pub/valgrind/valgrind-${version}.tar.bz2)
source=(https://sourceware.org/pub/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
autoconf
./configure \
--prefix=/usr \
./configure --prefix=/usr \
--libexecdir=/usr/lib
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}