8d68e0e099
* added FD_CLOEXEC to fds which are kept open for a longer time * added smaller, moving mmaped windows to network_writev * added madvise() to instruct the kernel the do proper read-ahead in network_writev * added support for %I in mod_accesslog * added better compat to Apache for ?auto in mod_status * added support for userdirs without a entry in /etc/passwd in mod_userdir * added startup-time selectable network-backend * added location of upload-files to config as array * added webdav.log-xml for logging xml-content in mod_webdav * added Cache-Control: max-age to mod_expire * workaround missing client-bug by assuming we received a close-notify on non-keep-alive requests in SSL request * disabled kerberos5 support by default to fix compilation on RHEL * fixed order of library checks to fix compilation on Solaris 9 * fixed open file-descriptors on read-error * fixed crash if /var/tmp is not writable
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2005/11/06 16:47:33 joerg Exp $
|
|
|
|
DISTNAME= lighttpd-1.4.7
|
|
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}
|
|
|
|
USE_PKGINSTALL= yes
|
|
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"
|