25dfed2b46
note that throttle configuration has been merged into httpd.conf ; small bug fixes and improvements
44 lines
1.0 KiB
Makefile
44 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.6 2007/07/06 12:09:12 ajacoutot Exp $
|
|
|
|
COMMENT= secure webserver
|
|
|
|
DISTNAME= hiawatha-5.10
|
|
CATEGORIES= www net
|
|
|
|
HOMEPAGE= http://hiawatha.leisink.org
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/files/
|
|
|
|
WANTLIB= c crypto pthread ssl
|
|
|
|
WEBROOTDIR= /var/hiawatha
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= webrootdir=${WEBROOTDIR}
|
|
CONFIGURE_ARGS= --localstatedir=/var
|
|
|
|
pre-configure:
|
|
perl -pi -e 's,!!LOCALBASE!!,${LOCALBASE},g;' \
|
|
-e 's,!!SYSCONFDIR!!,${SYSCONFDIR},g' \
|
|
${WRKSRC}/etc/hiawatha/httpd.conf.in \
|
|
${WRKSRC}/etc/hiawatha/cgi-wrapper.conf \
|
|
${WRKSRC}/doc/cgi-wrapper.1 \
|
|
${WRKSRC}/doc/hiawatha.1
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/hiawatha/
|
|
${INSTALL_DATA} ${WRKSRC}/etc/hiawatha/*.conf \
|
|
${PREFIX}/share/examples/hiawatha
|
|
${INSTALL_DATA} ${WRKSRC}/doc/index.html \
|
|
${PREFIX}/share/examples/hiawatha
|
|
|
|
.include <bsd.port.mk>
|