1 | # $Id: $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name lighttpd |
---|
5 | version 1.3.14 |
---|
6 | categories www |
---|
7 | maintainers jstetser@icongarden.com |
---|
8 | revision 1.1 |
---|
9 | description A secure, fast, compliant and flexible web-server |
---|
10 | long_description lighttpd is a secure, fast, compliant and very flexible\ |
---|
11 | web-server which has been optimized for high-performance\ |
---|
12 | environments. It has a very low memory footprint\ |
---|
13 | compared to other webservers and takes care of cpu-load. |
---|
14 | homepage http://www.lighttpd.net/ |
---|
15 | master_sites ${homepage}/download/ |
---|
16 | checksums md5 16d9f8c40bcb5638ee452fa23b21e346 |
---|
17 | depends_lib lib:libpcre:pcre \ |
---|
18 | lib:libz.1:zlib |
---|
19 | |
---|
20 | configure.args --mandir=${prefix}/share/man |
---|
21 | |
---|
22 | variant mysql { |
---|
23 | depends_lib-append lib:libmysqlclient:mysql4 |
---|
24 | configure.args-append --with-mysql=${prefix}/bin/mysql_config |
---|
25 | |
---|
26 | post-configure { |
---|
27 | reinplace "s|<mysql/mysql.h>|\"${prefix}/include/mysql/mysql.h\"|g" \ |
---|
28 | "${worksrcpath}/src/mod_mysql_vhost.c" |
---|
29 | } |
---|
30 | |
---|
31 | } |
---|
32 | |
---|
33 | variant ssl { |
---|
34 | depends_lib-append bin:openssl:openssl |
---|
35 | configure.args-append --with-openssl=${prefix}/include/openssl |
---|
36 | } |
---|