1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/www/w3c-httpd/Makefile
Steve Price a8e5d60ebd Enable WAIS support.
Submitted by:	Pdero F. Giffuni <pfgiffun@bachue.usc.unal.edu.co>
1999-05-10 20:00:27 +00:00

50 lines
1.4 KiB
Makefile

# New ports collection makefile for: w3c-httpd
# Version required: 3.0A
# Date created: 29 October 1994
# Whom: pst (orig)
#
# $Id: Makefile,v 1.20 1999/05/10 04:05:14 steve Exp $
#
DISTNAME= w3c-httpd-3.0A
CATEGORIES= www
MASTER_SITES= ftp://ftp.w3.org/pub/httpd/ \
ftp://ftp-eu.w3.org/pub/httpd/
MAINTAINER= ports@FreeBSD.org
BUILD_DEPENDS= /nonexistent:${PORTSDIR}/net/wais:build
NO_WRKSUBDIR= yes
WWW_ROOT?= ${PREFIX}/www
MAKE_ENV+= PORTSDIR=${PORTSDIR}
pre-configure:
.if !defined(MD5_PW)
@echo ""
@echo "Defaulting to DES encrypted passwords."
@echo "Set the environment variable MD5_PW if you want MD5 encrypted passwords."
@echo ""
.else
@echo "CFLAGS += -DMD5_PW" >> ${WRKDIR}/All/${OSNAME}/Makefile.include
.endif
do-install:
${MKDIR} ${WWW_ROOT}/data ${WWW_ROOT}/cgi-bin ${WWW_ROOT}/htbin
${CP} -R ${WRKSRC}/server_root/icons $(WWW_ROOT)
${CP} ${WRKSRC}/server_root/config/*.conf $(PREFIX)/etc
${INSTALL_PROGRAM} ${WRKSRC}/Daemon/${OSNAME}/httpd ${PREFIX}/libexec
${INSTALL_PROGRAM} ${WRKSRC}/Daemon/${OSNAME}/htadm ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/Daemon/${OSNAME}/htimage ${WWW_ROOT}/htbin
${INSTALL_PROGRAM} ${WRKSRC}/Daemon/${OSNAME}/cgiparse ${WWW_ROOT}/cgi-bin
${INSTALL_PROGRAM} ${WRKSRC}/Daemon/${OSNAME}/cgiutils ${WWW_ROOT}/cgi-bin
.include <bsd.port.mk>
.if (${OPSYS} == "FreeBSD")
OSNAME= freebsd
.else
# covers OpenBSD too
OSNAME= netbsd
.endif