summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1997-03-08 22:02:40 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1997-03-08 22:02:40 +0000
commite1967fba59939f480f6ac956fd8092bcbf194259 (patch)
tree189ef7dea7cd4ff8d28946b1d1ccf32877c2ea3e
parentUpdate (diff)
Add patch for MD5 encrypted passwords
Closes-PR: ports/2669 Submitted by: Sergei Vnotchenko <sergey@ns.extech.msk.su>
Notes
Notes: svn path=/head/; revision=5915
-rw-r--r--www/w3c-httpd/Makefile29
1 files changed, 23 insertions, 6 deletions
diff --git a/www/w3c-httpd/Makefile b/www/w3c-httpd/Makefile
index 9cdca61b44b5..c6130a5fa064 100644
--- a/www/w3c-httpd/Makefile
+++ b/www/w3c-httpd/Makefile
@@ -3,7 +3,7 @@
# Date created: 29 October 1994
# Whom: pst
#
-# $Id: Makefile,v 1.14 1997/01/09 03:07:41 asami Exp $
+# $Id: Makefile,v 1.15 1997/01/10 07:34:35 asami Exp $
#
DISTNAME= w3c-httpd-3.0A
@@ -16,14 +16,31 @@ NO_WRKSUBDIR= yes
WWW_ROOT= ${PREFIX}/www
+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/freebsd/httpd ${PREFIX}/libexec
- ${INSTALL_PROGRAM} ${WRKSRC}/Daemon/freebsd/htadm ${PREFIX}/bin
- ${INSTALL_PROGRAM} ${WRKSRC}/Daemon/freebsd/htimage ${WWW_ROOT}/htbin
- ${INSTALL_PROGRAM} ${WRKSRC}/Daemon/freebsd/cgiparse ${WWW_ROOT}/cgi-bin
- ${INSTALL_PROGRAM} ${WRKSRC}/Daemon/freebsd/cgiutils ${WWW_ROOT}/cgi-bin
+ ${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