Ticket #20705: Portfile

File Portfile, 1.3 KB (added by valenok@…, 15 years ago)
Line 
1# $Id$
2
3PortSystem 1.0
4name             mongoose
5version          2.8
6categories       www
7maintainers      nomaintainer
8description      lightweight web server
9long_description \
10        Mongoose is simple, easy to use, embeddable web server with CGI, \
11        SSL, cookies support. It is written in C, as one single source \
12        file mongoose.c. It compiles both in UNIX and Windows environments. \
13        It is a good choice to serve Web based GUI for various \
14        applications, where other sophisticated servers like Apache, IIS \
15        etc are too big, hard to install and configure or overcomplicated. \
16        It is good for implementing a web interface for daemons. Ideal for \
17        web-oriented software demos. Beginner (and not just beginner) web \
18        developers may find it very useful as well: Mongoose serves PHP, \
19        Perl and other CGI applications without any additional \
20        configuration. Regardless its small size, Mongoose is fully \
21        functional and is ready to be used in production environment.
22homepage        http://code.google.com/p/mongoose
23platforms       darwin
24master_sites    http://mongoose.googlecode.com/files/
25extract.suffix  .tgz
26checksums       md5 b72e937a356d3f3cd80cfe6653f0168d
27worksrcdir      mongoose
28use_configure   no
29build.target    mac
30
31destroot {
32        xinstall ${worksrcpath}/mongoose ${destroot}${prefix}/bin
33        xinstall ${worksrcpath}/mongoose.1 ${destroot}${prefix}/share/man/man1
34}