diff options
Diffstat (limited to 'www/thttpd/Makefile')
-rw-r--r-- | www/thttpd/Makefile | 57 |
1 files changed, 16 insertions, 41 deletions
diff --git a/www/thttpd/Makefile b/www/thttpd/Makefile index 1a7ed400eacd..ad0fa461569f 100644 --- a/www/thttpd/Makefile +++ b/www/thttpd/Makefile @@ -7,6 +7,7 @@ PORTNAME= thttpd PORTVERSION= 2.25b +PORTREVISION= 1 CATEGORIES= www ipv6 MASTER_SITES= http://www.acme.com/software/thttpd/ \ http://atreides.freenix.no/~anders/ @@ -20,19 +21,27 @@ COMMENT= Tiny/turbo/throttling HTTP server IGNOREFILES= notes.html GNU_CONFIGURE= yes -USE_REINPLACE= yes + +USE_RC_SUBR= thttpd.sh +SUB_FILES= pkg-message thttpd.conf.sample +SUB_LIST= WWWOWN=${WWWOWN} +PORTDOCS= notes.html MAN1= makeweb.1 htpasswd.1 MAN8= thttpd.8 redirect.8 ssi.8 syslogtocern.8 .include <bsd.port.pre.mk> +.if ${OSVERSION} > 502101 +post-configure: + @cd ${WRKSRC} && ${PATCH} < ${PATCHDIR}/extra-patch-config.h +.endif + do-install: @${INSTALL_PROGRAM} ${WRKSRC}/thttpd ${PREFIX}/sbin/ @${INSTALL_MAN} ${WRKSRC}/thttpd.8 ${PREFIX}/man/man8 @${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/www @${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/www/data - @${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/www/logs @${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/www/cgi-bin @${INSTALL_PROGRAM} ${WRKSRC}/cgi-src/redirect ${PREFIX}/www/cgi-bin/ @${INSTALL_PROGRAM} ${WRKSRC}/cgi-src/ssi ${PREFIX}/www/cgi-bin/ @@ -40,53 +49,19 @@ do-install: @${INSTALL_MAN} ${WRKSRC}/cgi-src/redirect.8 ${PREFIX}/man/man8 @${INSTALL_MAN} ${WRKSRC}/cgi-src/ssi.8 ${PREFIX}/man/man8 @${INSTALL_PROGRAM} ${WRKSRC}/extras/makeweb ${PREFIX}/bin/ - @${INSTALL} -c -m 755 -o root -g wheel ${WRKSRC}/extras/syslogtocern ${PREFIX}/bin/ @${INSTALL_PROGRAM} ${WRKSRC}/extras/htpasswd ${PREFIX}/bin/ + @${INSTALL_SCRIPT} ${WRKSRC}/extras/syslogtocern ${PREFIX}/bin/ @${INSTALL_MAN} ${WRKSRC}/extras/makeweb.1 ${PREFIX}/man/man1 @${INSTALL_MAN} ${WRKSRC}/extras/htpasswd.1 ${PREFIX}/man/man1 @${INSTALL_MAN} ${WRKSRC}/extras/syslogtocern.8 ${PREFIX}/man/man8 - @if [ ! -f ${PREFIX}/sbin/thttpd_wrapper ]; then \ - ${ECHO} "Installing ${PREFIX}/sbin/thttpd_wrapper file."; \ - ${ECHO_CMD} "#!/bin/sh" > ${PREFIX}/sbin/thttpd_wrapper; \ - ${ECHO_CMD} "${ECHO_CMD} \$$\$$ > /var/run/thttpd_wrapper.pid" >> ${PREFIX}/sbin/thttpd_wrapper; \ - ${ECHO_CMD} "while true ; do" >> ${PREFIX}/sbin/thttpd_wrapper; \ - ${ECHO_CMD} " ${PREFIX}/sbin/thttpd -D -C ${PREFIX}/etc/thttpd.conf" >> ${PREFIX}/sbin/thttpd_wrapper; \ - ${ECHO_CMD} " sleep 10" >> ${PREFIX}/sbin/thttpd_wrapper; \ - ${ECHO_CMD} "done" >> ${PREFIX}/sbin/thttpd_wrapper; \ - ${CHMOD} 751 ${PREFIX}/sbin/thttpd_wrapper; \ - fi - @${ECHO} "Installing ${PREFIX}/etc/thttpd.conf.sample configuration file." - @${ECHO_CMD} "dir=${PREFIX}/www/data" > ${PREFIX}/etc/thttpd.conf.sample - @${ECHO_CMD} "chroot" >> ${PREFIX}/etc/thttpd.conf.sample - @${ECHO_CMD} "cgipat=*.cgi" >> ${PREFIX}/etc/thttpd.conf.sample - @${ECHO_CMD} "logfile=${PREFIX}/www/logs/thttpd.log" >> ${PREFIX}/etc/thttpd.conf.sample - @${ECHO_CMD} "pidfile=/var/run/thttpd.pid" >> ${PREFIX}/etc/thttpd.conf.sample - @if [ ! -f ${PREFIX}/etc/rc.d/thttpd.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/thttpd.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/thttpd.sh ${PREFIX}/etc/rc.d/thttpd.sh; \ - ${REINPLACE_CMD} -i '' -e 's|%%PREFIX%%|${PREFIX}|g' ${PREFIX}/etc/rc.d/thttpd.sh; \ - fi + @${INSTALL_DATA} ${WRKDIR}/thttpd.conf.sample ${PREFIX}/etc/thttpd.conf.sample + @${INSTALL_SCRIPT} ${WRKDIR}/thttpd.sh ${PREFIX}/etc/rc.d/thttpd.sh .if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/thttpd - @${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/notes.html ${PREFIX}/share/doc/thttpd + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/notes.html ${DOCSDIR}/ .endif post-install: @${CAT} ${PKGMESSAGE} -post-configure: config-message -.if ${OSVERSION} > 502101 - @cd ${WRKSRC} && patch < ${PATCHDIR}/extra-patch-config.h -.endif - -post-build: config-message - -config-message: - @${ECHO} "=====================================================================" - @${ECHO} "" - @${ECHO} "Be sure to take a look at the options in config.h before (re)building" - @${ECHO} "if you want to tweak the server." - @${ECHO} "" - @${ECHO} "=====================================================================" - .include <bsd.port.post.mk> |