mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
26a0dc74c2
Minimal secure webserver. Fast and efficient, no cgi-bin support PR: 39769 Submitted by: Gea-Suan Lin <gslin@Infomath.math.NCTU.edu.tw>
35 lines
840 B
Makefile
35 lines
840 B
Makefile
# New ports collection makefile for: dhttpd
|
|
# Date created: 24 June 2002
|
|
# Whom: Gea-Suan Lin <gslin@ccca.nctu.edu.tw>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dhttpd
|
|
PORTVERSION= 1.02a
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://uts.cc.utexas.edu/~foxx/dhttpd/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= gslin@ccca.nctu.edu.tw
|
|
|
|
USE_REINPLACE= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-1.02-4
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
|
|
|
MAN1= dhttpd.1
|
|
|
|
STARTUP_SCRIPT= ${PORTNAME}.sh
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," ${WRKSRC}/src/config.hh
|
|
@${SED} -e "s,%%PREFIX%%,${PREFIX}," ${FILESDIR}/${STARTUP_SCRIPT} > ${WRKSRC}/${STARTUP_SCRIPT}
|
|
|
|
do-install:
|
|
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/sbin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${STARTUP_SCRIPT} ${PREFIX}/etc/rc.d
|
|
|
|
.include <bsd.port.mk>
|