2005-12-29 07:21:30 +01:00
|
|
|
# $NetBSD: Makefile,v 1.6 2005/12/29 06:22:23 jlam Exp $
|
Initial import of lighttpd-1.4.3 as www/lighttpd.
LightTPD is a secure, fast, compliant, and very flexible web-server
which designed and optimized for for high-performance environments.
With a small memory footprint compared to other webservers, effective
management of the CPU load, and advanced feature set (FastCGI, CGI,
Auth, Output-Compression, URL-Rewriting and many more), LightTPD is
the perfect solution for every server that is suffering load problems.
This is loosely based on the lighttpd package from pkgsrc-wip by
Piotr Stolc <socrtp@soclab.eu.org>.
2005-09-04 08:37:05 +02:00
|
|
|
|
2005-12-12 18:56:51 +01:00
|
|
|
DISTNAME= lighttpd-1.4.8
|
Initial import of lighttpd-1.4.3 as www/lighttpd.
LightTPD is a secure, fast, compliant, and very flexible web-server
which designed and optimized for for high-performance environments.
With a small memory footprint compared to other webservers, effective
management of the CPU load, and advanced feature set (FastCGI, CGI,
Auth, Output-Compression, URL-Rewriting and many more), LightTPD is
the perfect solution for every server that is suffering load problems.
This is loosely based on the lighttpd package from pkgsrc-wip by
Piotr Stolc <socrtp@soclab.eu.org>.
2005-09-04 08:37:05 +02:00
|
|
|
CATEGORIES= www
|
|
|
|
MASTER_SITES= http://www.lighttpd.net/download/
|
|
|
|
|
2005-10-11 17:44:00 +02:00
|
|
|
MAINTAINER= joerg@NetBSD.org
|
Initial import of lighttpd-1.4.3 as www/lighttpd.
LightTPD is a secure, fast, compliant, and very flexible web-server
which designed and optimized for for high-performance environments.
With a small memory footprint compared to other webservers, effective
management of the CPU load, and advanced feature set (FastCGI, CGI,
Auth, Output-Compression, URL-Rewriting and many more), LightTPD is
the perfect solution for every server that is suffering load problems.
This is loosely based on the lighttpd package from pkgsrc-wip by
Piotr Stolc <socrtp@soclab.eu.org>.
2005-09-04 08:37:05 +02:00
|
|
|
HOMEPAGE= http://www.lighttpd.net/
|
2005-09-28 14:26:54 +02:00
|
|
|
COMMENT= Fast, light-footprint HTTP server
|
Initial import of lighttpd-1.4.3 as www/lighttpd.
LightTPD is a secure, fast, compliant, and very flexible web-server
which designed and optimized for for high-performance environments.
With a small memory footprint compared to other webservers, effective
management of the CPU load, and advanced feature set (FastCGI, CGI,
Auth, Output-Compression, URL-Rewriting and many more), LightTPD is
the perfect solution for every server that is suffering load problems.
This is loosely based on the lighttpd package from pkgsrc-wip by
Piotr Stolc <socrtp@soclab.eu.org>.
2005-09-04 08:37:05 +02:00
|
|
|
|
|
|
|
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"
|