1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/www/mod_php3/Makefile

44 lines
1.3 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: apache HTTPD
1997-07-08 13:04:19 +00: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 13:04:19 +00:00
DISTNAME= apache_1.2.1
PKGNAME= apache-1.2.1
CATEGORIES= www
1996-07-11 11:04:01 +00:00
MASTER_SITES= ftp://www.apache.org/apache/dist/
1997-04-14 18:54:34 +00:00
MAINTAINER= ache@freebsd.org
1996-05-20 07:37:06 +00:00
1996-11-07 01:49:57 +00:00
# User-controlled variables list
1996-11-07 01:53:14 +00:00
# DIR_ACHE - add SuppressHTMLPreamble option to directory index
# see http://www.nagual.ru/~ache/apache_dir.html
1996-11-07 01:49:57 +00:00
# SECURE_SERVER - build Apache with SSL
.if defined(DIR_ACHE)
1997-05-31 20:16:08 +00:00
PATCH_SITES+= http://www.nagual.pp.ru/~ache/
1996-11-07 01:49:57 +00:00
PATCHFILES+= dir.patch
1996-12-11 19:10:06 +00:00
VERS_ID= dir/ache
1996-11-07 01:49:57 +00:00
.endif
.if defined(VERS_ID)
post-patch:
@cd ${WRKSRC}/src && \
mv Configuration Configuration.old && \
1997-05-31 20:34:09 +00:00
sed 's;^#*OPTIM=.*;OPTIM= -DSERVER_SUBVERSION=\\"${VERS_ID}\\";' \
< Configuration.old > Configuration
1996-11-07 01:49:57 +00: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>