Ticket #17215: Portfile

File Portfile, 694 bytes (added by mike@…, 15 years ago)

Portfile for cgilib

Line 
1# $Id$
2
3PortSystem              1.0
4
5use_automake            yes
6automake.args           --add-missing --foreign
7use_autoconf            yes
8
9name                    cgilib
10version                 0.6
11categories              devel
12maintainers             flyn
13description             CGI library
14long_description        A C library for creating Common Gateway Interface ("CGI") programs.
15homepage                http://www.infodrom.org/projects/cgilib/
16platforms               darwin
17master_sites            http://www.infodrom.org/projects/cgilib/download/
18
19checksums               sha1 a15fc3893f5cc4c21643ae8e817bac2be57fd094
20
21patchfiles              cgilib-autotools.patch \
22                        cgilib-strndup.patch
23
24pre-configure {
25        # Patch leaves configure as non-executable.
26        exec chmod +x configure
27        exec chmod +x install-sh
28        # No use_libtool option.
29        exec libtoolize --force
30}