pkgsrc/www/lighttpd/Makefile

47 lines
1.2 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.23 2009/03/23 00:37:41 joerg Exp $
DISTNAME= lighttpd-1.4.22
CATEGORIES= www
MASTER_SITES= http://www.lighttpd.net/download/
Update lighttpd to 1.4.6. Take maintainership. Activate memcache option, now that devel/libmemcache is imported. From NEWS: - 1.4.6 - 2005-10-09 * fixed compilation on MacOS X and cygwin * fixed compressed output if caching was disabled (seen in IE and Opera) * fixed range-request option * fixed mysql-vhost module (was broken in 1.4.5) * fixed false positive in the detection of case-insensitive FS - 1.4.5 - 2005-10-02 * added all DeltaV methods as known methods * added buffer-to-disk of request content * added warning for unused variables in conditionals * added global index-generators to mod_indexfile * fixed caching for remote-ip conditionals with keep-alive * fixed redirects with content * fixed infinite loop in exec-cmd in mod_ssi * fixed segfault in config handling for mod_mysql_vhost * fixed segfault on FIFOs/Sockets * fixed possible crash on uninit memory if If-Modified-Since was too long * fixed accounting of mem-chunks * fixed starving of connections on high load * fixed crc errors in mod_compress on 64bit platforms * fixed handling of overlapping fastcgi packets (bug added in 1.4.4) * fixed logic of conditionals if a header was not set * fixed a segfault in mod_rewrite if %1 references were used * fixed handling of empty request URIs in HTTP requests - 1.4.4 - 2005-09-16 * added support for %V in mod_accesslog * added a option for a FastCGI responser to send static files * added md5 and blowfish hashes to htpasswd * fixed METHOD in mod_accesslog of WebDAV methods * fixed check for permission before files in sent * fixed mod-proxy and content for non-POST requests * fixed compilation of mod_cml on MacOS X * fixed SSL errmsg after accept() * fixed memleak in stat-cache * fixed aborted connections if file was moved while in transfer * fixed mem-usage for large FastCGI transfers
2005-10-11 17:44:00 +02:00
MAINTAINER= joerg@NetBSD.org
HOMEPAGE= http://www.lighttpd.net/
2005-09-28 14:26:54 +02:00
COMMENT= Fast, light-footprint HTTP server
2007-11-23 20:12:08 +01:00
PKG_DESTDIR_SUPPORT= user-destdir
USE_LIBTOOL= yes
SHLIBTOOL_OVERRIDE= # empty
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
2007-11-23 20:12:08 +01:00
INSTALLATION_DIRS= ${DOCDIR} ${EGDIR}
.include "options.mk"
.include "../../devel/pcre/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
.include "../../mk/dlopen.buildlink3.mk"
post-install:
cd ${WRKSRC}; for f in doc/*.css doc/*.dot doc/*.txt; do \
2007-11-23 20:12:08 +01:00
${INSTALL_DATA} $$f ${DESTDIR}${DOCDIR}; \
done
for f in AUTHORS COPYING ChangeLog NEWS README; do \
2007-11-23 20:12:08 +01:00
${INSTALL_DATA} ${WRKSRC}/$$f ${DESTDIR}${DOCDIR}; \
done
for f in lighttpd.conf rrdtool-graph.sh spawn-php.sh; do \
2007-11-23 20:12:08 +01:00
${INSTALL_DATA} ${WRKSRC}/doc/$$f ${DESTDIR}${EGDIR}; \
done
.include "../../mk/bsd.pkg.mk"