diff options
author | mat <mat@FreeBSD.org> | 2016-11-08 17:03:12 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-11-08 17:03:12 +0800 |
commit | 22db68cee779d33b7054c9516f4a1f30a83c25c8 (patch) | |
tree | 9e2af6731d9d3f993291fba30e79773ca985d21b | |
parent | 33d432df3291e32df925a11aa98013dc29220e30 (diff) | |
download | freebsd-ports-gnome-22db68cee779d33b7054c9516f4a1f30a83c25c8.tar.gz freebsd-ports-gnome-22db68cee779d33b7054c9516f4a1f30a83c25c8.tar.zst freebsd-ports-gnome-22db68cee779d33b7054c9516f4a1f30a83c25c8.zip |
CGI-Fast was removed in Perl 5.21.
Sponsored by: Absolight
-rw-r--r-- | sysutils/munin-master/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sysutils/munin-master/Makefile b/sysutils/munin-master/Makefile index 2411ec442ab6..db6f2bad7093 100644 --- a/sysutils/munin-master/Makefile +++ b/sysutils/munin-master/Makefile @@ -3,6 +3,7 @@ PORTNAME= munin PORTVERSION= ${MUNIN_VERSION} +PORTREVISION= 1 CATEGORIES= sysutils perl5 MASTER_SITES= ${MUNIN_SITES} PKGNAMESUFFIX= -master @@ -62,4 +63,10 @@ post-install: (cd ${STAGEDIR}${ETCDIR}; for i in `find . -type f`; do mv $$i $$i.sample; done) ${MV} ${STAGEDIR}${WWWDIR}/.htaccess ${STAGEDIR}${WWWDIR}/.htaccess.sample -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} >= 502100 +RUN_DEPENDS+= p5-CGI-Fast>=0:www/p5-CGI-Fast +.endif + +.include <bsd.port.post.mk> |