Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Jul 2012 19:23:54 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r300973 - head/net-mgmt/p5-Nagios-Plugin
Message-ID:  <201207161923.q6GJNs11074077@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Mon Jul 16 19:23:54 2012
New Revision: 300973
URL: http://svn.freebsd.org/changeset/ports/300973

Log:
  - Avoid += without preceeding definition
  - Expand value of BUILD_DEPENDS before assigning to RUN_DEPENDS
  - Pet portlint by moving PERL_CONFIGURE down
  
  PR:		ports/169137

Modified:
  head/net-mgmt/p5-Nagios-Plugin/Makefile   (contents, props changed)

Modified: head/net-mgmt/p5-Nagios-Plugin/Makefile
==============================================================================
--- head/net-mgmt/p5-Nagios-Plugin/Makefile	Mon Jul 16 19:11:35 2012	(r300972)
+++ head/net-mgmt/p5-Nagios-Plugin/Makefile	Mon Jul 16 19:23:54 2012	(r300973)
@@ -15,13 +15,13 @@ PKGNAMEPREFIX=	p5-
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Modules to streamline writing Nagios plugins
 
-PERL_CONFIGURE=	yes
-
-BUILD_DEPENDS+=	p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \
+BUILD_DEPENDS=	p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \
 		p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate \
 		p5-Math-Calc-Units>=0:${PORTSDIR}/math/p5-Math-Calc-Units \
 		p5-Config-Tiny>=0:${PORTSDIR}/devel/p5-Config-Tiny
-RUN_DEPENDS+=	${BUILD_DEPENDS}
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+
+PERL_CONFIGURE=	yes
 
 MAN3=		Nagios::Plugin.3 \
 		Nagios::Plugin::Config.3 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201207161923.q6GJNs11074077>