ba330017cb
This is the continuance of the CGI::Fast module from the CGI distribution. CGI::Fast is a subclass of the CGI object created by CGI.pm. It is specialized to work with the FCGI module, which greatly speeds up CGI scripts by turning them into persistently running server processes. Scripts that perform time-consuming initialization processes, such as loading large modules or opening persistent database connections, will see large performance improvements. If there are no problems with this port, in a week I'll transfer maintainership to perl@.
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= CGI.pm
|
|
PORTVERSION= 3.63
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= www perl5
|
|
MASTER_SITES= CPAN
|
|
MASTER_SITE_SUBDIR= CPAN:MARKSTOS
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= tobez@FreeBSD.org
|
|
COMMENT= Simple Common Gateway Interface Class for Perl
|
|
|
|
LICENSE= ART20 GPLv1
|
|
LICENSE_COMB= dual
|
|
|
|
CONFLICTS= p5-CGI-[4-9]* p5-CGI-Fast-[0-9]*
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
EXAMPLES= examples/caution.xbm examples/clickable_image.cgi \
|
|
examples/cookie.cgi examples/crash.cgi examples/customize.cgi \
|
|
examples/diff_upload.cgi examples/dna.small.gif \
|
|
examples/file_upload.cgi examples/frameset.cgi \
|
|
examples/index.html examples/internal_links.cgi \
|
|
examples/javascript.cgi examples/make_links.pl \
|
|
examples/monty.cgi examples/multiple_forms.cgi \
|
|
examples/nph-clock.cgi examples/nph-multipart.cgi \
|
|
examples/popup.cgi examples/save_state.cgi \
|
|
examples/tryit.cgi examples/wilogo.gif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/require 5\.6/d; /INSTALLDIRS/d' ${WRKSRC}/Makefile.PL
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${EXAMPLES:S|^|${WRKSRC}/|} ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|