11cd581cd1
* added ability to specify which ip address spawn-fci listens on (agkr@pobox.com) * added mod_flv_streaming to streaming Flash Movies efficiently * fixed handling of error codes returned by mod_dav_svn behing a mod_proxy * fixed error-messages in mod_auth and mod_fastcgi * fixed re-enabling overloaded local fastcgi backends * fixed handling of deleted files in linux-sendfile * fixed compilation on BSD and MacOSX * fixed $SERVER["socket"] on a already bound socket * fixed local source retrieval on windows (secunia) * fixed hanging cgi if remote side is dieing while reading from the pipe (sandy@meebo.com)
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2006/04/10 12:07:18 joerg Exp $
|
|
|
|
DISTNAME= lighttpd-1.4.11
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.lighttpd.net/download/
|
|
|
|
MAINTAINER= joerg@NetBSD.org
|
|
HOMEPAGE= http://www.lighttpd.net/
|
|
COMMENT= Fast, light-footprint HTTP server
|
|
|
|
USE_LIBTOOL= yes
|
|
SHLIBTOOL_OVERRIDE= libtool
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --libdir=${PREFIX}/lib/${PKGBASE}
|
|
CONFIGURE_ARGS+= --with-pcre
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
|
|
PKG_SYSCONFSUBDIR= ${PKGBASE}
|
|
|
|
RCD_SCRIPTS= lighttpd
|
|
CONF_FILES= ${EGDIR}/lighttpd.conf ${PKG_SYSCONFDIR}/lighttpd.conf
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
${INSTALL_DATA_DIR} ${EGDIR}
|
|
cd ${WRKSRC}; for f in doc/*.css doc/*.dot doc/*.txt; do \
|
|
${INSTALL_DATA} $$f ${DOCDIR}; \
|
|
done
|
|
for f in AUTHORS COPYING ChangeLog NEWS README; do \
|
|
${INSTALL_DATA} ${WRKSRC}/$$f ${DOCDIR}; \
|
|
done
|
|
for f in lighttpd.conf rrdtool-graph.sh spawn-php.sh; do \
|
|
${INSTALL_DATA} ${WRKSRC}/doc/$$f ${EGDIR}; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|