Ticket #44586: Portfile

File Portfile, 1.3 KB (added by dbevans (David B. Evans), 10 years ago)

Portfile for new port p5-cgi-fast.

Line 
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
4PortSystem          1.0
5PortGroup           perl5 1.0
6
7perl5.branches      5.8 5.10 5.12 5.14 5.16 5.18 5.20
8perl5.setup         CGI-Fast 2.02
9platforms           darwin
10maintainers         devans openmaintainer
11license             {Artistic GPL}
12
13description         CGI::Fast - CGI Interface for Fast CGI
14
15long_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
22checksums           rmd160  d91c292bd30acf4edb54e2f5e4c3964413beade3 \
23                    sha256  70c1905e1f9b2c7022846e5a406c60c3c82e797c889bf412fc90a823b139c336
24
25if {${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}