diff options
Diffstat (limited to 'www/p5-FCGI-Engine/Makefile')
-rw-r--r-- | www/p5-FCGI-Engine/Makefile | 31 |
1 files changed, 20 insertions, 11 deletions
diff --git a/www/p5-FCGI-Engine/Makefile b/www/p5-FCGI-Engine/Makefile index cf869a8d855..8a54d6aa3a0 100644 --- a/www/p5-FCGI-Engine/Makefile +++ b/www/p5-FCGI-Engine/Makefile @@ -6,7 +6,7 @@ # PORTNAME= FCGI-Engine -PORTVERSION= 0.18 +PORTVERSION= 0.19 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,17 +14,19 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= A flexible engine for running FCGI-based applications -BUILD_DEPENDS= \ - p5-Moose>=1.21:${PORTSDIR}/devel/p5-Moose \ - p5-MooseX-Daemonize>=0.12:${PORTSDIR}/devel/p5-MooseX-Daemonize \ - p5-MooseX-Getopt>=0.33:${PORTSDIR}/devel/p5-MooseX-Getopt \ - p5-MooseX-Types-Path-Class>=0.05:${PORTSDIR}/devel/p5-MooseX-Types-Path-Class \ - p5-CGI-Simple>=1.112:${PORTSDIR}/www/p5-CGI-Simple \ - p5-Test-WWW-Mechanize>=1.30:${PORTSDIR}/devel/p5-Test-WWW-Mechanize \ - p5-Test-Exception>=0.31:${PORTSDIR}/devel/p5-Test-Exception \ - p5-Declare-Constraints-Simple>=0.03:${PORTSDIR}/devel/p5-Declare-Constraints-Simple +BUILD_DEPENDS= p5-CGI-Simple>=0:${PORTSDIR}/www/p5-CGI-Simple \ + p5-Config-Any>=0:${PORTSDIR}/devel/p5-Config-Any \ + p5-Declare-Constraints-Simple>=0:${PORTSDIR}/devel/p5-Declare-Constraints-Simple \ + p5-FCGI>=0:${PORTSDIR}/www/p5-FCGI \ + p5-Moose>=0.93:${PORTSDIR}/devel/p5-Moose \ + p5-MooseX-Daemonize>=0.09:${PORTSDIR}/devel/p5-MooseX-Daemonize \ + p5-MooseX-Getopt>=0.26:${PORTSDIR}/devel/p5-MooseX-Getopt \ + p5-MooseX-Types-Path-Class>=0:${PORTSDIR}/devel/p5-MooseX-Types-Path-Class RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \ + p5-Test-WWW-Mechanize>=0:${PORTSDIR}/devel/p5-Test-WWW-Mechanize + PERL_CONFIGURE= yes MAN3= FCGI::Engine.3 \ @@ -35,10 +37,17 @@ MAN3= FCGI::Engine.3 \ FCGI::Engine::Manager::Server::Plackup.3 \ FCGI::Engine::PSGI.3 \ FCGI::Engine::ProcManager.3 \ + FCGI::Engine::ProcManager::Constrained.3 \ FCGI::Engine::Types.3 \ Plack::Handler::FCGI::Engine.3 \ Plack::Handler::FCGI::Engine::ProcManager.3 \ Plack::Server::FCGI::Engine.3 \ Plack::Server::FCGI::Engine::ProcManager.3 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 501001 +TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include <bsd.port.post.mk> |