aboutsummaryrefslogtreecommitdiff
path: root/www/w3c-httpd/Makefile
blob: 6a45eadd36c6dfb473b8dc87e06a7a1f1f367f7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# New ports collection makefile for:	w3c-httpd
# Date created:		29 October 1994
# Whom:			pst (orig)
#
# $FreeBSD$
#

PORTNAME=	w3c-httpd
PORTVERSION= 	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_MSG} ""
	@${ECHO_MSG} "Defaulting to DES encrypted passwords."
	@${ECHO_MSG} "Set the environment variable MD5_PW if you want MD5 encrypted passwords."
	@${ECHO_MSG} ""
.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