diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2018-10-06 13:06:42 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2018-10-06 13:06:42 +0000 |
commit | 9dff3523203bdda7ae358dcff3eb5a5ef3e54d33 (patch) | |
tree | 0721b637b4bcfc0a8ff2a945bdcb7e68f8993680 /textproc/p5-Data-FormValidator | |
parent | Update to upstream version 2.0.5 (diff) |
Fix every instance of RUN_DEPENDS:=${BUILD_DEPENDS} in p5 ports, except
for where it resulted in a change in output from build-depends-list or
run-depends-list.
Approved by: portmgr (adamw)
Notes
Notes:
svn path=/head/; revision=481365
Diffstat (limited to 'textproc/p5-Data-FormValidator')
-rw-r--r-- | textproc/p5-Data-FormValidator/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/p5-Data-FormValidator/Makefile b/textproc/p5-Data-FormValidator/Makefile index 3a4cc241fcd3..bc2f2e324c4c 100644 --- a/textproc/p5-Data-FormValidator/Makefile +++ b/textproc/p5-Data-FormValidator/Makefile @@ -13,7 +13,8 @@ COMMENT= Validates user input (usually from an HTML form) based LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS= p5-CGI>=3.48:www/p5-CGI \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CGI>=3.48:www/p5-CGI \ p5-Date-Calc>=5.0:devel/p5-Date-Calc \ p5-Email-Valid>=0:mail/p5-Email-Valid \ p5-File-MMagic>=1.17:devel/p5-File-MMagic \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= p5-CGI>=3.48:www/p5-CGI \ p5-MIME-Types>=1.005:mail/p5-MIME-Types \ p5-Perl6-Junction>=1.10:devel/p5-Perl6-Junction \ p5-Regexp-Common>=0:textproc/p5-Regexp-Common -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 |