svn commit: r543269 - head/devel/valgrind-devel

Kyle Evans kevans at FreeBSD.org
Fri Jul 24 17:24:40 UTC 2020


Author: kevans
Date: Fri Jul 24 17:24:40 2020
New Revision: 543269
URL: https://svnweb.freebsd.org/changeset/ports/543269

Log:
  devel/valgrind-devel: address portlint concerns, no functional change
  
  portlint pointed out that the ordering of the Makefile was slightly wrong,
  and the depends lines were using spaces for indentation instead of tabs.
  
  This was included as part of D25452, but has been refactored out in advance
  of the update.
  
  Approved by:	zeising (maintainer, implicit)

Modified:
  head/devel/valgrind-devel/Makefile

Modified: head/devel/valgrind-devel/Makefile
==============================================================================
--- head/devel/valgrind-devel/Makefile	Fri Jul 24 17:16:43 2020	(r543268)
+++ head/devel/valgrind-devel/Makefile	Fri Jul 24 17:24:40 2020	(r543269)
@@ -14,15 +14,15 @@ PKGNAMESUFFIX=	-devel
 MAINTAINER=	zeising at FreeBSD.org
 COMMENT=	Memory debugging and profiling tool
 
-BB_COMMIT=	ce1acb28953f
-BB_ACCOUNT=	stass
-BB_PROJECT=	valgrind-freebsd
-
 LICENSE=	GPLv2
 
+ONLY_FOR_ARCHS=	amd64 i386
+
 CONFLICTS=	valgrind-[0-9]*
 
-ONLY_FOR_ARCHS=	i386 amd64
+BB_COMMIT=	ce1acb28953f
+BB_ACCOUNT=	stass
+BB_PROJECT=	valgrind-freebsd
 
 LIB32_PATH?=	${DESTDIR}/usr/lib32/libc.so
 
@@ -35,10 +35,10 @@ OPTIONS_DEFAULT_amd64=	32BIT
 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
+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
 
 OPTIONS_SUB=	yes


More information about the svn-ports-all mailing list