freebsd-ports/www/apache21/Makefile

44 lines
1.3 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: apache HTTPD
1997-07-08 15:04:19 +02:00
# Version required: 1.2.1
# Date created: Fri Aug 25 16:42:36 CDT 1995
# Whom: erich@rrnet.com
#
# $Id: Makefile,v 1.35 1997/07/08 13:04:09 ache Exp $
#
1997-07-08 15:04:19 +02:00
DISTNAME= apache_1.2.1
PKGNAME= apache-1.2.1
CATEGORIES= www
1996-07-11 13:04:01 +02:00
MASTER_SITES= ftp://www.apache.org/apache/dist/
1997-04-14 20:54:34 +02:00
MAINTAINER= ache@freebsd.org
1996-05-20 09:37:06 +02:00
1996-11-07 02:49:57 +01:00
# User-controlled variables list
1996-11-07 02:53:14 +01:00
# DIR_ACHE - add SuppressHTMLPreamble option to directory index
# see http://www.nagual.ru/~ache/apache_dir.html
1996-11-07 02:49:57 +01:00
# SECURE_SERVER - build Apache with SSL
.if defined(DIR_ACHE)
1997-05-31 22:16:08 +02:00
PATCH_SITES+= http://www.nagual.pp.ru/~ache/
1996-11-07 02:49:57 +01:00
PATCHFILES+= dir.patch
1996-12-11 20:10:06 +01:00
VERS_ID= dir/ache
1996-11-07 02:49:57 +01:00
.endif
.if defined(VERS_ID)
post-patch:
@cd ${WRKSRC}/src && \
mv Configuration Configuration.old && \
1997-05-31 22:34:09 +02:00
sed 's;^#*OPTIM=.*;OPTIM= -DSERVER_SUBVERSION=\\"${VERS_ID}\\";' \
< Configuration.old > Configuration
1996-11-07 02:49:57 +01:00
.endif
post-install:
@if [ ! -f ${PREFIX}/etc/rc.d/apache.sh ]; then \
echo "Installing ${PREFIX}/etc/rc.d/apache.sh startup file."; \
echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/apache.sh; \
echo "[ -x /usr/local/sbin/httpd ] && /usr/local/sbin/httpd && echo -n ' httpd'" >> ${PREFIX}/etc/rc.d/apache.sh; \
chmod 751 ${PREFIX}/etc/rc.d/apache.sh; \
fi
.include <bsd.port.mk>