aboutsummaryrefslogtreecommitdiffstats
path: root/www/apache13-fp/Makefile
blob: c7ff847a1ce56d5a282c57b02eceecc1be5e0546 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# New ports collection makefile for:    apache HTTPD w/FrontPage Module
# Version required:     1.3*    3.0.4 (3.0.2.1330)
# Date created:         Sat Oct 31 16:30:00 CDT 1997
# Whom:                 hetzels@westbend.net
#
# $Id: Makefile,v 1.5 1998/11/25 20:49:01 billf Exp $
#

DISTNAME=       apache_1.3.3
PKGNAME=        apache_fp-1.3.3
CATEGORIES= www
MASTER_SITES=   ftp://www.apache.org/apache/dist/ \
        ftp://ftp.microsoft.com/products/frontpage/ \
        ftp://sunsite.doc.ic.ac.uk/Mirrors/ftp.microsoft.com/Products/frontpage/

PATCH_SITES=    ftp://www.apache.org/apache/dist/patches/apply_to_1.3.3/ \
        http://www.apache.org/dist/patches/apply_to_1.3.3/
PATCHFILES= core_404_log_bug.txt proxy_segv.txt server_error_filename.txt
.if defined(PATCH_DEBUG)
PATCH_DIST_ARGS=       -d ${WRKSRC}/src -E ${PATCH_DIST_STRIP}
.else
PATCH_DIST_ARGS=       -d ${WRKSRC}/src --forward --quiet -E ${PATCH_DIST_STRIP}
.endif

MAINTAINER= hetzels@westbend.net

APACHE=     ${DISTNAME}${EXTRACT_SUFX}
FRONTPAGE=  fp30.bsdi3.tar.Z

DISTFILES=  ${APACHE} ${FRONTPAGE}

EXTRACT_ONLY=   ${APACHE}

IS_INTERACTIVE= YES
NO_PACKAGE= \
   "The FrontPage Installer needs to create FrontPage Admin user and password"

FPINSTALL=  frontpage/version3.0/fp_install.sh
CHANGESERVER=   frontpage/version3.0/change_server.sh
MOD_FP=     ${FILESDIR}/mod_frontpage.c

INSTALL_FILE=${INSTALL} -c -m 555 -o bin -g bin

#
# Set APACHE_PERF_TUNING env. variable to YES to get maximum performance
#

GNU_CONFIGURE=  yes
CONFIGURE_ARGS= \
         --sysconfdir=${PREFIX}/etc/apache \
         --includedir=${PREFIX}/include/apache \
         --logfiledir=/var/log \
         --runtimedir=/var/run \
         --datadir=${PREFIX}/www \
         --proxycachedir=${PREFIX}/www/proxy \
         --libexecdir=${PREFIX}/libexec/apache \
         --without-confadjust \
         --enable-shared=remain \
         --enable-module=most \
         --enable-module=auth_db \
         --disable-module=auth_dbm \
         --add-module=${MOD_FP} \
         --enable-shared=frontpage

# Currently perl version doesn't matter
#                 --with-perl=${PERL5}

OPTIM=-DHARD_SERVER_LIMIT=512 \
-DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \
-DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\"

.if defined(APACHE_PERF_TUNING) && ${APACHE_PERF_TUNING} == YES
OPTIM+= -DBUFFERED_LOGS
CFLAGS+= -O6 -fomit-frame-pointer
.endif

CONFIGURE_ENV= OPTIM='${OPTIM}'

MAN1=   ab.1 apachectl.1 dbmmanage.1 htdigest.1 htpasswd.1
MAN8=   apxs.8 httpd.8 logresolve.8 rotatelogs.8

.if defined(SUEXEC)
HTTPD_USER?=www
USER_DIR?=public_html
CONFIGURE_ARGS+= --enable-suexec \
         --suexec-caller=${HTTPD_USER} \
         --suexec-userdir=${USER_DIR}
MAN8+=  suexec.8
.endif

pre-extract:
    @if ! ${LDCONFIG} -r | ${GREP} -q -e "-ldescrypt"; then \
       ${ECHO} ; \
       ${ECHO} "WARNING: MS FrontPage Extentions require the DES Library"; \
       ${ECHO} "WARNING: Install the DES Library, then build apache-fp"; \
       ${ECHO} ; \
       ${FALSE} ; \
    fi

post-extract:
    @${ECHO} "===>  Extracting FrontPage install scripts"
    @cd ${WRKSRC} && \
    ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${FRONTPAGE} ${FPINSTALL} ${CHANGESERVER}

pre-patch:
    @${PATCH} ${PATCH_DIST_ARGS} < ${FILESDIR}/http_protocol.patch

post-install:
    @${ECHO} "Installing ${PREFIX}/etc/rc.d/apache.sh file."
    @${CAT} ${FILESDIR}/apache.sh.tmpl | \
        ${SED} -e 's;PREFIX;${PREFIX};' -e 's;PERL5;${PERL};' \
        > ${PREFIX}/etc/rc.d/apache.sh
    @chmod 751 ${PREFIX}/etc/rc.d/apache.sh
    @${SH} ${WRKSRC}/${FPINSTALL}
    @${INSTALL_FILE} ${WRKSRC}/${FPINSTALL} ${PREFIX}/${FPINSTALL}
    @${INSTALL_FILE} ${WRKSRC}/${CHANGESERVER} ${PREFIX}/${CHANGESERVER}

.include <bsd.port.mk>