cb199f6f53
- Updating package for p5 module HTML::Mason from 1.40 to 1.42 - Reordering dependencies (alphabetical order) - Removing option for p5-Cache-Cache, because it's mandatory now Upstream changes: 1.42 May 7, 2009 [ BUG FIXES ] - Fix 10b-cache-chi.t to work with latest version of CHI - expire_if and ref of cache changed - Fixed a bug where attempting to load a module that failed to compile in a Mason component could mask the compilation error. RT #39803. - Fixed the print method in HTML::Mason::FakeApache. It was including the object itself in the output. Patch by Martin Petricek. RT #43035. 1.41 May 5, 2009 [ BUG FIXES ] - This is a one-fix release to get this module working with the latest version of Exception::Class (1.27).
28 lines
761 B
Makefile
28 lines
761 B
Makefile
# $NetBSD: options.mk,v 1.2 2009/05/17 19:56:58 sno Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.p5-HTML-Mason
|
|
PKG_SUPPORTED_OPTIONS= fcgi modperl
|
|
PKG_SUGGESTED_OPTIONS= # empty
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### mod_perl usage for Apache webservers
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mmodperl)
|
|
. include "../../mk/apache.mk"
|
|
. if ${PKG_APACHE} == "apache13"
|
|
DEPENDS+= p5-libapreq>=0.32:../../www/p5-libapreq
|
|
. include "../../www/ap-perl/buildlink3.mk"
|
|
. elif ${PKG_APACHE} == "apache2" || ${PKG_APACHE} == "apache22"
|
|
DEPENDS+= p5-libapreq2-[0-9]*:../../www/p5-libapreq2
|
|
. include "../../www/ap2-perl/buildlink3.mk"
|
|
. endif
|
|
.endif
|
|
|
|
###
|
|
### FastCGI Support e.g. for lighttpd
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mfcgi)
|
|
DEPENDS+= p5-FCGI-[0-9]*:../../www/p5-FCGI
|
|
.endif
|