diff --git a/devel/valgrind-devel/Makefile b/devel/valgrind-devel/Makefile index f064c3cdbcff..3cb746c9cc60 100644 --- a/devel/valgrind-devel/Makefile +++ b/devel/valgrind-devel/Makefile @@ -1,88 +1,86 @@ # Created by: Simon Barner PORTNAME= valgrind -PORTVERSION= 3.18.0.g20210323 +PORTVERSION= 3.19.0.g20211113 DISTVERSIONPREFIX= freebsd- -PORTREVISION= 0 PORTEPOCH= 1 CATEGORIES= devel -MASTER_SITES= https://valgrind.org/ PKGNAMESUFFIX= -devel MAINTAINER= pjfloyd@wanadoo.fr COMMENT= Memory debugging and profiling tool LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING ONLY_FOR_ARCHS= amd64 i386 USES= cpe pathfix pkgconfig gmake perl5 shebangfix autoreconf USE_PERL5= build GNU_CONFIGURE= yes SHEBANG_FILES= callgrind/callgrind_annotate.in callgrind/callgrind_control.in SSP_UNSAFE= yes LIB32_PATH?= /usr/lib32/libc.so CONFLICTS= valgrind USE_GITHUB= yes GH_ACCOUNT= paulfloyd GH_PROJECT= freebsd_valgrind -GH_TAGNAME= bd87bbc +GH_TAGNAME= 6983bfb CONFIGURE_ENV+= ac_cv_path_PERL=${PERL} PORTDOCS= html OPTIONS_DEFINE= DOCS MANPAGES MPI OPTIONS_DEFINE_amd64= 32BIT OPTIONS_DEFAULT= MANPAGES .if exists(${LIB32_PATH}) OPTIONS_DEFAULT_amd64= 32BIT .endif OPTIONS_SUB= yes 32BIT_DESC= Enable debugging of 32-bit programs (requires lib32) MPI_DESC= Enable build of MPI wrappers DOCS_BUILD_DEPENDS= docbook-xsl>=0:textproc/docbook-xsl \ xsltproc:textproc/libxslt MANPAGES_BUILD_DEPENDS= docbook-xsl>=0:textproc/docbook-xsl \ xsltproc:textproc/libxslt MPI_LIB_DEPENDS= libmpich.so:net/mpich .include .if ${ARCH} == "amd64" PLIST_SUB+= AMD64="" . if !${PORT_OPTIONS:M32BIT} CONFIGURE_ARGS+= --enable-only64bit PLIST_SUB+= X86="@comment " . else . if !exists(${LIB32_PATH}) IGNORE=The lib32 distribution was not found. Please install the lib32\ distribution or run 'make config' and uncheck 32BIT option . endif PLIST_SUB+= X86="" . endif .else PLIST_SUB+= AMD64="@comment " PLIST_SUB+= X86="" .endif .if !${PORT_OPTIONS:MDOCS} post-patch: @${RM} -r ${WRKSRC}/docs/html .endif post-build: .if ${PORT_OPTIONS:MMANPAGES} cd ${WRKSRC}/docs && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} man-pages .endif .if ${PORT_OPTIONS:MDOCS} cd ${WRKSRC}/docs && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} html-docs .endif .include diff --git a/devel/valgrind-devel/distinfo b/devel/valgrind-devel/distinfo index 05347ab93e80..162c0b986506 100644 --- a/devel/valgrind-devel/distinfo +++ b/devel/valgrind-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1616492557 -SHA256 (paulfloyd-freebsd_valgrind-freebsd-3.18.0.g20210323-bd87bbc_GH0.tar.gz) = d426b56b534ddcfd9880644e51bb389ebace52915873cb9fda35789be4c7ecc0 -SIZE (paulfloyd-freebsd_valgrind-freebsd-3.18.0.g20210323-bd87bbc_GH0.tar.gz) = 15797700 +TIMESTAMP = 1636824182 +SHA256 (paulfloyd-freebsd_valgrind-freebsd-3.19.0.g20211113-6983bfb_GH0.tar.gz) = 64296c07be32ed9bd13bbae57dff16536ee0e4f9b74b059198d094610fe4a25a +SIZE (paulfloyd-freebsd_valgrind-freebsd-3.19.0.g20211113-6983bfb_GH0.tar.gz) = 15931597 diff --git a/devel/valgrind-devel/pkg-descr b/devel/valgrind-devel/pkg-descr index 8a88d8b1cf4e..c06ccd308c7d 100644 --- a/devel/valgrind-devel/pkg-descr +++ b/devel/valgrind-devel/pkg-descr @@ -1,20 +1,20 @@ Valgrind is a system for debugging and profiling un*x 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. The Valgrind distribution includes 10 tools: - memcheck, the primary tool, a memory error detector - helgrind and drd, thread error detectors - callgrind and cachegrind, execution and cache profiling tools - massif, a memory tracker - dhat, a memory content profiler - lackey, an example of using the framework - none, does no instumentation and can check that Valgrind runs correctly - exp-bbv, and experimental profiling tool using sampling Valgrind was initially ported to FreeBSD by Doug Rabson. WWW: https://github.com/paulfloyd/freebsd_valgrind -WWW: http://www.valgrind.org/ +WWW: https://www.valgrind.org/