1997-08-12 11:49:12 +00:00
|
|
|
# New ports collection makefile for: apache HTTPD
|
1995-08-28 13:28:45 +00:00
|
|
|
# Date created: Fri Aug 25 16:42:36 CDT 1995
|
1999-09-03 16:07:53 +00:00
|
|
|
# Whom: ache@freebsd.org
|
1995-08-28 13:28:45 +00:00
|
|
|
#
|
1999-08-31 02:43:35 +00:00
|
|
|
# $FreeBSD$
|
1995-08-28 13:28:45 +00:00
|
|
|
#
|
|
|
|
|
2000-04-10 00:07:29 +00:00
|
|
|
PORTNAME= apache
|
|
|
|
PORTVERSION= 1.3.12
|
1996-11-18 11:44:27 +00:00
|
|
|
CATEGORIES= www
|
2000-08-22 03:41:05 +00:00
|
|
|
MASTER_SITES= http://www.apache.org/dist/ \
|
1999-03-13 17:11:04 +00:00
|
|
|
ftp://ftp.ccs.neu.edu/net/mirrors/ftp.apache.org/apache/dist/ \
|
|
|
|
ftp://ftp.rge.com/pub/infosystems/apache/dist/ \
|
|
|
|
ftp://apache.compuex.com/pub/apache/dist/ \
|
|
|
|
ftp://apache.arctic.org/pub/apache/dist/ \
|
|
|
|
ftp://ftp.epix.net/pub/apache/dist/ \
|
|
|
|
ftp://ftp.ameth.org/pub/mirrors/ftp.apache.org/apache/dist/ \
|
|
|
|
ftp://ftp.connectnet.com/pub/www/apache/ \
|
|
|
|
ftp://apache.technomancer.com/mirrors/apache/dist/ \
|
|
|
|
ftp://ftp.raver.net/pub/ftp.apache.org/ \
|
|
|
|
ftp://www3.service.digital.com/apache/dist/ \
|
|
|
|
ftp://galileo.galilei.com/pub/apache/ \
|
|
|
|
ftp://ftp.mtnranch.net/pub/apache/dist/ \
|
|
|
|
ftp://ftp.iodynamics.com/pub/mirror/apache/dist/ \
|
|
|
|
ftp://apache.nextpath.com/pub/apache/dist/
|
2000-08-22 03:41:05 +00:00
|
|
|
DISTNAME= apache_${PORTVERSION}
|
1998-02-20 11:09:09 +00:00
|
|
|
|
2000-08-22 03:41:05 +00:00
|
|
|
MAINTAINER= ache@freebsd.org
|
1996-05-20 07:37:06 +00:00
|
|
|
|
1999-01-13 02:47:33 +00:00
|
|
|
Y2K= http://www.apache.org/docs/misc/FAQ.html#year2000
|
1999-01-15 00:26:29 +00:00
|
|
|
|
1998-06-24 19:54:05 +00:00
|
|
|
#
|
|
|
|
# Set APACHE_PERF_TUNING env. variable to YES to get maximum performance
|
|
|
|
#
|
|
|
|
|
2000-08-22 03:41:05 +00:00
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS= \
|
|
|
|
--prefix=${PREFIX} \
|
|
|
|
--server-gid=nogroup \
|
|
|
|
--with-perl=${PERL} \
|
|
|
|
--with-layout=${FILESDIR}/FreeBSD.layout:FreeBSD \
|
|
|
|
--suexec-docroot=${PREFIX}/www/data \
|
|
|
|
--without-confadjust \
|
|
|
|
--enable-shared=remain \
|
|
|
|
--enable-module=most \
|
|
|
|
--enable-module=auth_db \
|
|
|
|
--disable-module=auth_dbm
|
1998-04-21 21:58:18 +00:00
|
|
|
|
2000-08-22 03:41:05 +00:00
|
|
|
OPTIM= -DHARD_SERVER_LIMIT=512 \
|
|
|
|
-DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \
|
|
|
|
-DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\"
|
1998-06-24 19:54:05 +00:00
|
|
|
|
|
|
|
.if defined(APACHE_PERF_TUNING) && ${APACHE_PERF_TUNING} == YES
|
2000-08-22 03:41:05 +00:00
|
|
|
OPTIM+= -DBUFFERED_LOGS
|
|
|
|
CFLAGS+= -O6 -fomit-frame-pointer
|
1998-06-24 19:54:05 +00:00
|
|
|
.endif
|
|
|
|
|
2000-08-22 03:41:05 +00:00
|
|
|
CONFIGURE_ENV= OPTIM='${OPTIM}'
|
1998-04-21 21:58:18 +00:00
|
|
|
|
2000-08-22 03:41:05 +00:00
|
|
|
MAN1= dbmmanage.1 htdigest.1 htpasswd.1
|
|
|
|
MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8
|
1997-10-22 23:51:35 +00:00
|
|
|
|
1996-06-15 16:58:09 +00:00
|
|
|
post-install:
|
1996-06-15 17:51:08 +00:00
|
|
|
@if [ ! -f ${PREFIX}/etc/rc.d/apache.sh ]; then \
|
1999-08-27 22:30:39 +00:00
|
|
|
${ECHO} "Installing ${PREFIX}/etc/rc.d/apache.sh startup file."; \
|
2000-07-05 12:37:06 +00:00
|
|
|
${INSTALL_SCRIPT} -m 751 ${FILESDIR}/apache.sh ${PREFIX}/etc/rc.d/apache.sh; \
|
1996-06-15 17:51:08 +00:00
|
|
|
fi
|
1996-06-15 16:58:09 +00:00
|
|
|
|
1995-08-28 13:28:45 +00:00
|
|
|
.include <bsd.port.mk>
|