559f2e1ad4
-- lighttpd a secure, fast, compliant and very flexible web-server which has been optimized for high-performance environments. It has a very low memory footprint compared to other webservers and takes care of cpu-load. Its advanced feature-set (FastCGI, CGI, Auth, Output-Compression, URL-Rewriting and many more) make lighttpd the perfect webserver-software for every server that is suffering load problems.
36 lines
806 B
Makefile
36 lines
806 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/10/01 06:23:40 brad Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= "secure, fast, compliant, and very flexible web-server"
|
|
|
|
DISTNAME= lighttpd-1.3.2
|
|
CATEGORIES= www net
|
|
|
|
MAINTAINER= Brad Smith <brad@openbsd.org>
|
|
|
|
HOMEPAGE= http://jan.kneschke.de/projects/lighttpd/
|
|
|
|
LIB_DEPENDS+= bz2::archivers/bzip2 \
|
|
pcre::devel/pcre
|
|
|
|
# QPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}download/
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --with-openssl
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/lighttpd
|
|
${INSTALL_DATA} ${WRKSRC}/doc/lighttpd.conf \
|
|
${PREFIX}/share/examples/lighttpd
|
|
|
|
.include <bsd.port.mk>
|