1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/www/apache21/Makefile
Satoshi Asami 6b4d5d3e8f ===> Building package for apache-1.3b6
Creating package /usr/ports/packages/All/apache-1.3b6.tgz
Registering depends:.
Creating gzip'd tar ball in '/usr/ports/packages/All/apache-1.3b6.tgz'
tar: can't add file sbin/dbmmanage : No such file or directory
tar: can't add file sbin/htdigest : No such file or directory
tar: can't add file sbin/htpasswd : No such file or directory
*** Error code 1
1998-04-22 12:39:33 +00:00

48 lines
1.3 KiB
Makefile

# New ports collection makefile for: apache HTTPD
# Version required: 1.3
# Date created: Fri Aug 25 16:42:36 CDT 1995
# Whom: ache@nagual.pp.ru
#
# $Id: Makefile,v 1.48 1998/04/22 12:38:13 asami Exp $
#
DISTNAME= apache_1.3b6
PKGNAME= apache-1.3b6
CATEGORIES= www
MASTER_SITES= ftp://www.apache.org/apache/dist/
#PATCH_SITES= ftp://www.apache.org/apache/dist/patches/apply_to_1.3b6/
MAINTAINER= ache@freebsd.org
BROKEN= package
NO_LATEST_LINK= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= \
--localstatedir=/var \
--datadir=${PREFIX}/www \
--libexecdir=${PREFIX}/libexec/apache \
--enable-shared=remain \
--enable-module=most \
--enable-module=auth_db \
--disable-module=auth_dbm
CONFIGURE_ENV= \
OPTIM='-DDOCUMENT_LOCATION=\\"'${PREFIX}'/www/data/\\" \
-DDEFAULT_PATH=\\"/bin:/usr/bin:'${PREFIX}'/bin\\"'
MAN1= ab.1 apachectl.1 dbmmanage.1 htdigest.1 htpasswd.1
MAN8= apxs.8 httpd.8 logresolve.8 rotatelogs.8
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>