diff options
author | Steve Wills <swills@FreeBSD.org> | 2012-07-16 19:23:54 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2012-07-16 19:23:54 +0000 |
commit | 574f4864008f28bdbda1ea54c152e122a7c73d9b (patch) | |
tree | 2f2f7bb81c6de0a324afab00830cec190261e3dd /net-mgmt/p5-Nagios-Plugin | |
parent | 21ac3b59a5bc5efcd24cfdf09e9036e055eae980 (diff) |
- Avoid += without preceeding definition
- Expand value of BUILD_DEPENDS before assigning to RUN_DEPENDS
- Pet portlint by moving PERL_CONFIGURE down
PR: ports/169137
Notes
Notes:
svn path=/head/; revision=300973
Diffstat (limited to 'net-mgmt/p5-Nagios-Plugin')
-rw-r--r-- | net-mgmt/p5-Nagios-Plugin/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-mgmt/p5-Nagios-Plugin/Makefile b/net-mgmt/p5-Nagios-Plugin/Makefile index 9d9cbec06217..888279f6adb3 100644 --- a/net-mgmt/p5-Nagios-Plugin/Makefile +++ b/net-mgmt/p5-Nagios-Plugin/Makefile @@ -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 \ |