svn commit: r300973 - head/net-mgmt/p5-Nagios-Plugin
Steve Wills
swills at FreeBSD.org
Mon Jul 16 19:23:55 UTC 2012
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 at 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 \
More information about the svn-ports-head
mailing list