1999-06-09 01:34:12 +00:00
|
|
|
# New ports collection makefile for: thttpd
|
|
|
|
# Date created: 24 May 1999
|
|
|
|
# Whom: Anders Nordby <anders@fix.no>
|
|
|
|
#
|
1999-08-31 02:43:35 +00:00
|
|
|
# $FreeBSD$
|
1999-06-09 01:34:12 +00:00
|
|
|
#
|
|
|
|
|
2000-04-10 00:07:29 +00:00
|
|
|
PORTNAME= thttpd
|
2000-07-07 19:32:23 +00:00
|
|
|
PORTVERSION= 2.19
|
2000-01-22 18:25:50 +00:00
|
|
|
CATEGORIES= www ipv6
|
1999-06-09 01:34:12 +00:00
|
|
|
MASTER_SITES= http://www.acme.com/software/thttpd/ \
|
|
|
|
http://www.freenix.no/~anders/
|
2000-03-23 02:25:32 +00:00
|
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} notes.html
|
1999-06-09 01:34:12 +00:00
|
|
|
|
|
|
|
MAINTAINER= anders@fix.no
|
|
|
|
|
2000-03-23 02:25:32 +00:00
|
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
1999-06-09 01:34:12 +00:00
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
|
|
|
|
MAN1= makeweb.1 htpasswd.1
|
2000-01-22 10:37:46 +00:00
|
|
|
MAN8= thttpd.8 redirect.8 ssi.8 syslogtocern.8
|
1999-06-09 01:34:12 +00:00
|
|
|
|
|
|
|
do-install:
|
|
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/thttpd ${PREFIX}/sbin/
|
|
|
|
@${INSTALL_MAN} ${WRKSRC}/thttpd.8 ${PREFIX}/man/man8
|
|
|
|
@${INSTALL} -d -o root -g wheel -m 0775 ${PREFIX}/www
|
2000-07-07 19:32:23 +00:00
|
|
|
@${INSTALL} -d -o root -g wheel -m 0775 ${PREFIX}/www/data
|
|
|
|
@${INSTALL} -d -o root -g wheel -m 0775 ${PREFIX}/www/logs
|
1999-06-09 01:34:12 +00:00
|
|
|
@${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/www/cgi-bin
|
2000-01-22 10:37:46 +00:00
|
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/cgi-src/redirect ${PREFIX}/www/cgi-bin/
|
1999-06-09 01:34:12 +00:00
|
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/cgi-src/ssi ${PREFIX}/www/cgi-bin/
|
|
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/cgi-src/phf ${PREFIX}/www/cgi-bin/
|
2000-01-22 10:37:46 +00:00
|
|
|
@${INSTALL_MAN} ${WRKSRC}/cgi-src/redirect.8 ${PREFIX}/man/man8
|
1999-06-09 01:34:12 +00:00
|
|
|
@${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_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
|
2000-03-23 02:25:32 +00:00
|
|
|
@if [ ! -f ${PREFIX}/sbin/thttpd_wrapper ]; then \
|
|
|
|
${ECHO} "Installing ${PREFIX}/sbin/thttpd_wrapper file."; \
|
|
|
|
${ECHO} "#!/bin/sh" > ${PREFIX}/sbin/thttpd_wrapper; \
|
2000-07-13 23:47:54 +00:00
|
|
|
${ECHO} "${ECHO} \$$\$$ > /var/run/thttpd_wrapper.pid" >> ${PREFIX}/sbin/thttpd_wrapper; \
|
2000-03-23 02:25:32 +00:00
|
|
|
${ECHO} "while true ; do" >> ${PREFIX}/sbin/thttpd_wrapper; \
|
|
|
|
${ECHO} " ${PREFIX}/sbin/thttpd -D -C ${PREFIX}/etc/thttpd.conf" >> ${PREFIX}/sbin/thttpd_wrapper; \
|
|
|
|
${ECHO} " sleep 10" >> ${PREFIX}/sbin/thttpd_wrapper; \
|
|
|
|
${ECHO} "done" >> ${PREFIX}/sbin/thttpd_wrapper; \
|
|
|
|
${CHMOD} 751 ${PREFIX}/sbin/thttpd_wrapper; \
|
|
|
|
fi
|
|
|
|
@${ECHO} "Installing ${PREFIX}/etc/thttpd.conf.sample configuration file."
|
|
|
|
@${ECHO} "dir=${PREFIX}/www/data" > ${PREFIX}/etc/thttpd.conf.sample
|
|
|
|
@${ECHO} "chroot" >> ${PREFIX}/etc/thttpd.conf.sample
|
|
|
|
@${ECHO} "cgipat=*.cgi" >> ${PREFIX}/etc/thttpd.conf.sample
|
|
|
|
@${ECHO} "logfile=${PREFIX}/www/logs/thttpd.log" >> ${PREFIX}/etc/thttpd.conf.sample
|
|
|
|
@${ECHO} "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."; \
|
2000-07-05 12:37:06 +00:00
|
|
|
${INSTALL_SCRIPT} -m 751 ${FILESDIR}/thttpd.sh ${PREFIX}/etc/rc.d/thttpd.sh; \
|
2000-03-23 02:25:32 +00:00
|
|
|
fi
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@${MKDIR} ${PREFIX}/share/doc/thttpd
|
|
|
|
@${INSTALL_MAN} ${DISTDIR}/notes.html ${PREFIX}/share/doc/thttpd
|
|
|
|
.endif
|
1999-06-09 01:34:12 +00:00
|
|
|
|
2000-03-23 02:25:32 +00:00
|
|
|
post-install:
|
|
|
|
@${CAT} ${PKGMESSAGE}
|
1999-06-09 01:34:12 +00:00
|
|
|
|
2000-03-23 02:25:32 +00:00
|
|
|
post-configure: config-message
|
1999-06-09 01:34:12 +00:00
|
|
|
|
|
|
|
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.mk>
|