1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup perl5 1.0 |
---|
6 | |
---|
7 | perl5.branches 5.8 5.10 5.12 5.14 5.16 5.18 5.20 |
---|
8 | perl5.setup CGI-Fast 2.02 |
---|
9 | platforms darwin |
---|
10 | maintainers devans openmaintainer |
---|
11 | license {Artistic GPL} |
---|
12 | |
---|
13 | description CGI::Fast - CGI Interface for Fast CGI |
---|
14 | |
---|
15 | long_description CGI::Fast is a subclass of the CGI object created by CGI.pm. It is \ |
---|
16 | specialized to work with the FCGI module, which greatly speeds up CGI \ |
---|
17 | scripts by turning them into persistently running server processes. \ |
---|
18 | Scripts that perform time-consuming initialization processes, such as \ |
---|
19 | loading large modules or opening persistent database connections, will \ |
---|
20 | see large performance improvements. |
---|
21 | |
---|
22 | checksums rmd160 d91c292bd30acf4edb54e2f5e4c3964413beade3 \ |
---|
23 | sha256 70c1905e1f9b2c7022846e5a406c60c3c82e797c889bf412fc90a823b139c336 |
---|
24 | |
---|
25 | if {${perl5.major} != ""} { |
---|
26 | depends_lib-append \ |
---|
27 | port:p${perl5.major}-cgi \ |
---|
28 | port:p${perl5.major}-fcgi \ |
---|
29 | port:p${perl5.major}-test-deep |
---|
30 | } |
---|