5ce609ddb2
upgrade 2.15 -> 2.16. changes from webpage: - More explicit error pages for 403 Forbidden. - New section in the manual page explaining how thttpd is picky about file permissions. - Couple of CGI tweaks from David Chaiken.
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.5 2000/04/07 10:11:54 itojun Exp $
|
|
|
|
DISTNAME= thttpd-2.16
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.acme.com/software/thttpd/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
|
sitedrivenby.gif
|
|
|
|
MAINTAINER= mike@ethmoid.org
|
|
HOMEPAGE= http://www.acme.com/software/thttpd/
|
|
|
|
EXTRACT_ONLY= ${DISTFILES:N*.gif}
|
|
GNU_CONFIGURE= yes
|
|
|
|
# Note: this pkg auto-detects IPv6 without regarding USE_INET6.
|
|
.include "../../mk/bsd.prefs.mk"
|
|
BUILD_DEFS+= USE_INET6
|
|
|
|
pre-build:
|
|
${MV} ${WRKSRC}/extras/htpasswd.1 ${WRKSRC}/extras/thtpasswd.1
|
|
${MV} ${WRKSRC}/extras/Makefile ${WRKSRC}/extras/Makefile.orig
|
|
${SED} -e "s/htpasswd/thtpasswd/g" \
|
|
<${WRKSRC}/extras/Makefile.orig >${WRKSRC}/extras/Makefile
|
|
${SED} -e "s/htpasswd/thtpasswd/g" \
|
|
<${WRKSRC}/extras/htpasswd.c >${WRKSRC}/extras/thtpasswd.c
|
|
|
|
re-install:
|
|
${MKDIR} ${PREFIX}/libexec/cgi-bin ${PREFIX}/share/www
|
|
${SED} -e "s/htpasswd/thtpasswd/g" \
|
|
<${WRKSRC}/extras/htpasswd.1 >${WRKSRC}/extras/thtpasswd.1
|
|
${INSTALL_DATA} ${WRKSRC}/index.html ${PREFIX}/share/www/index.html
|
|
|
|
pre-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/www
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/index.html \
|
|
${PREFIX}/share/www
|
|
${INSTALL_DATA} ${DISTDIR}/sitedrivenby.gif \
|
|
${PREFIX}/share/www
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|