aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/bsd.apache.mk
blob: eb116e07df36743060a93bc480d43354fee60faf (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
#-*- mode: makefile; tab-width: 4; -*-
# ex:ts=4
#
# $FreeBSD$
#
# bsd.apache.mk - Apache related macros.
# Author: Clement Laforet <clement@FreeBSD.org>
# Author: Olli Hauer <ohauer@FreeBSD.org>
#
# Please view me with 4 column tabs!

# =========================================================================
# Parameter APACHE_PORT (user controlled):
#
# The parameter APACHE_PORT can be used in /etc/make.conf to
# overwrite the default apache port.
#
# This parameter should never be used in the Makefile of a port!
#
# Example entry in /etc/make.conf:
#  APACHE_PORT= www/apache22
#
# To get a list of "possible" valid values execute the command:
#  $> egrep 'apache[12]' ports/www/Makefile | awk '{print "www/" $3}'
#
# =========================================================================
#
# This script will be included if one of the following parameter
# is defined in the Makefile of the port
#
# USE_APACHE         - Set apache and apxs as build and run dependency
# USE_APACHE_BUILD   - Set apache and apxs as build dependency
# USE_APACHE_RUN     - Set apache and apxs as run dependency
#
# The following example is representative of all three possible
# parameters to use.
#
# Examples:
#  USE_APACHE= 22       # specify exact version
#  USE_APACHE= 20+      # specify [min] version, no [max] version
#  USE_APACHE= 20-22    # specify [min]-[max] range
#  USE_APACHE= -22      # specify [max] version, no [min] version
#
# Note:
#  - If "+" is specified and no apache is installed, then
#    ${DEFAULT_APACHE_VERSION} will be used.
#
#  - Valid version numbers are specified in the variable
#    APACHE_SUPPORTED_VERSION below
#
#  - The following values for USE_APACHE are reserverd and only valid
#    in apache-server ports!
#      USE_APACHE= common20, and common22
#
#
# The following variables can be used (ro) in ports Makefile
# =========================================================================
#  - APACHE_VERSION
#  - APACHEETCDIR
#  - APACHEINCLUDEDIR
#  - APACHEMODDIR
#  - DEFAULT_APACHE_VERSION
#
#
# Parameters for building third party apache modules:
# =========================================================================
#  - AP_FAST_BUILD      # automatic module build
#
#  - AP_GENPLIST        # automatic PLIST generation plus add
#                       # the module disabled into httpd.conf
#                       # (only if no pkg-plist exist)
#
#  - MODULENAME         # default: ${PORTNAME}
#  - SHORTMODNAME       # default: ${MODULENAME:S/mod_//}
#  - SRC_FILE           # default: ${MODULENAME}.c
#
#

.if !defined(Apache_Pre_Include)

Apache_Pre_Include=     bsd.apache.mk

DEFAULT_APACHE_VERSION=     22
APACHE_SUPPORTED_VERSION=   22 20 # preferred version first

# Print warnings
_ERROR_MSG= : Error from bsd.apache.mk.

# Important Note:
#  Keep apache version in ascending order!
#  The "+" sign is only valid as last sign, not between
#  two versions or in combination with range!
.if defined(USE_APACHE) && !empty(USE_APACHE)
.   if ${USE_APACHE:Mcommon*} != ""
AP_PORT_IS_SERVER=  YES
.   elif ${USE_APACHE:C/\-//:S/^20//:S/^22//:C/\+$//} == ""
AP_PORT_IS_MODULE=  YES
.       if ${USE_APACHE:C/\-//:S/^20//:S/^22//} == "+"
AP_PLUS=    yes
.       endif
.   else
IGNORE= ${_ERROR_MSG} Illegal use of USE_APACHE ( ${USE_APACHE} )
.   endif
# Catch unknown apache versions and silly USE_APACHE constructs
.   if empty(AP_PORT_IS_SERVER) && empty(AP_PORT_IS_MODULE)
IGNORE= ${_ERROR_MSG} Illegal use of USE_APACHE ( ${USE_APACHE} )
.   endif
# Catch USE_APACHE [min]-[max]+
.   if defined(AP_PLUS) && ${USE_APACHE:C/[.+0-9]//g} == "-"
IGNORE= ${_ERROR_MSG} Illegal use of USE_APACHE ( ${USE_APACHE} )
.   endif
.elif defined(USE_APACHE)
IGNORE= ${_ERROR_MSG} Illegal use of USE_APACHE ( no version specified )
.endif # defined(USE_APACHE)

# ===============================================================
.if defined(AP_PORT_IS_SERVER)
# For slave ports:
.if defined(SLAVE_DESIGNED_FOR) && ${PORTVERSION} != ${SLAVE_DESIGNED_FOR}
IGNORE= Sorry, ${SLAVENAME} and ${PORTNAME} versions are out of sync ${PORTVERSION} != ${SLAVE_DESIGNED_FOR}
.endif

.if defined(SLAVE_PORT_MODULES)
DEFAULT_MODULES_CATEGORIES+=    SLAVE_PORT
ALL_MODULES_CATEGORIES+=        SLAVE_PORT
.endif

# Module selection
.for category in ${DEFAULT_MODULES_CATEGORIES}
DEFAULT_MODULES+=           ${${category}_MODULES}
WITH_${category}_MODULES=   YES
.endfor

.for category in ${ALL_MODULES_CATEGORIES}
AVAILABLE_MODULES+=         ${${category}_MODULES}
.endfor

# Setting "@comment " as default.
.for module in ${AVAILABLE_MODULES}
${module}_PLIST_SUB=        "@comment "
.endfor

# Configure
# dirty hacks to make sure all modules are disabled before we select them
.if ${USE_APACHE} == common13
CONFIGURE_ARGS+=    --disable-module="all"
.elif ${USE_APACHE} == common20
CONFIGURE_ARGS+=    --disable-access --disable-auth \
            --disable-charset-lite --disable-include \
            --disable-log-config --disable-env --disable-setenvif \
            --disable-mime --disable-status --disable-autoindex \
            --disable-asis --disable-cgid --disable-cgi \
            --disable-negotiation --disable-dir --disable-imap \
            --disable-actions --disable-userdir --disable-alias
.elif ${USE_APACHE} == common22
CONFIGURE_ARGS+=    --disable-authn-file --disable-authn-default \
            --disable-authz-host --disable-authz-groupfile \
            --disable-authz-user --disable-authz-default \
            --disable-auth-basic --disable-charset-lite \
            --disable-include --disable-log-config --disable-env \
            --disable-setenvif --disable-mime --disable-status \
            --disable-autoindex --disable-asis --disable-cgid \
            --disable-cgi --disable-negotiation --disable-dir \
            --disable-imagemap --disable-actions --disable-userdir \
            --disable-alias --disable-filter --disable-substitute \
            --disable-proxy --disable-proxy-connect \
            --disable-proxy-ftp --disable-proxy-http \
            --disable-proxy-ajp --disable-proxy-balancer \
            --disable-proxy-scgi --disable-reqtimeout
.endif

.if defined(OPTIONS) && !(make(make-options-list))
.for module in ${AVAILABLE_MODULES}
.   if defined(WITH_${module:U})
_APACHE_MODULES+=   ${module}
.   endif
.   if defined(WITHOUT_${module:U})
WITHOUT_MODULES+=    ${module}
.   endif
.endfor
.elif defined(WITH_MODULES)
_APACHE_MODULES+=   ${WITH_MODULES}
.else
.for category in ${ALL_MODULES_CATEGORIES}
.   if defined (WITHOUT_${category}_MODULES) || defined (WITH_CUSTOM_${category})
.       if defined(WITH_${category}_MODULES})
.           undef WITH_${category}_MODULES
.       endif
.       if defined (WITH_CUSTOM_${category})
_APACHE_MODULES+=   ${WITH_CUSTOM_${category}}
.       endif
.   elif defined(WITH_${category}_MODULES)
_APACHE_MODULES+=   ${${category}_MODULES}
.   endif
.endfor
.if defined(WITH_EXTRA_MODULES)
_APACHE_MODULES+=   ${WITH_EXTRA_MODULES}
.endif
.endif

.if !defined(WITH_STATIC_APACHE)
.   if ${USE_APACHE:Mcommon2*} != ""
# FYI
#DYNAMIC_MODULES=   so
CONFIGURE_ARGS+=    --enable-so
.   endif
.else
.   if ${USE_APACHE:Mcommon2*} != ""
CONFIGURE_ARGS+=    --disable-so
.   endif
WITH_ALL_STATIC_MODULES=    YES
.endif

.if defined(WITH_SUEXEC) || defined(WITH_SUEXEC_MODULES)
.   if ${USE_APACHE} == common13
SUEXEC_CONFARGS=    suexec
CONFIGURE_ARGS+=    --enable-suexec
.   elif ${USE_APACHE:Mcommon2*} != ""
_APACHE_MODULES+=       ${SUEXEC_MODULES}
SUEXEC_CONFARGS=    with-suexec
.   endif

# From now we're defaulting to apache 2.*
SUEXEC_DOCROOT?=        ${PREFIX}/www/data
SUEXEC_USERDIR?=        public_html
SUEXEC_SAFEPATH?=       ${PREFIX}/bin:${LOCALBASE}/bin:/usr/bin:/bin
SUEXEC_LOGFILE?=        /var/log/httpd-suexec.log
SUEXEC_UIDMIN?=         1000
SUEXEC_GIDMIN?=         1000
SUEXEC_CALLER?=         ${WWWOWN}
CONFIGURE_ARGS+=        --${SUEXEC_CONFARGS}-caller=${SUEXEC_CALLER} \
                --${SUEXEC_CONFARGS}-uidmin=${SUEXEC_UIDMIN} \
                --${SUEXEC_CONFARGS}-gidmin=${SUEXEC_GIDMIN} \
                --${SUEXEC_CONFARGS}-userdir="${SUEXEC_USERDIR}" \
                --${SUEXEC_CONFARGS}-docroot="${SUEXEC_DOCROOT}" \
                --${SUEXEC_CONFARGS}-safepath="${SUEXEC_SAFEPATH}" \
                --${SUEXEC_CONFARGS}-logfile="${SUEXEC_LOGFILE}"
.   if ${USE_APACHE:Mcommon2*} != ""
CONFIGURE_ARGS+=    --${SUEXEC_CONFARGS}-bin="${PREFIX}/sbin/suexec"
.   endif

.   if defined(WITH_SUEXEC_UMASK)
CONFIGURE_ARGS+=        --${SUEXEC_CONFARGS}-umask=${SUEXEC_UMASK}
.   endif
.endif

.if !defined(WITHOUT_MODULES)
APACHE_MODULES=     ${_APACHE_MODULES}
.else
APACHE_MODULES!=    \
            for module in ${_APACHE_MODULES}; do \
                ${ECHO_CMD} ${WITHOUT_MODULES} | ${GREP} -wq $${module} 2> /dev/null || \
                ${ECHO_CMD} $${module}; \
            done
.endif

.if defined(WITH_STATIC_MODULES)
.   if ${USE_APACHE} == common13
STATIC_MODULE_CONFARG=  --enable-module=$${module}
DSO_MODULE_CONFARG=     --enable-module=$${module} --enable-shared=$${module}
.   else
STATIC_MODULE_CONFARG=  --enable-$${module}
DSO_MODULE_CONFARG=     --enable-$${module}=shared
.   endif
_CONFIGURE_ARGS!=   \
            for module in ${APACHE_MODULES} ; do \
                ${ECHO_CMD} ${WITH_STATIC_MODULES} | \
                    ${GREP} -wq $${module} 2> /dev/null ; \
                if [ "$${?}" = "0" ] ; then \
                        ${ECHO_CMD} "${STATIC_MODULE_CONFARG}"; \
                    else \
                        ${ECHO_CMD} "${DSO_MODULE_CONFARG}"; \
                    fi; done
CONFIGURE_ARGS+=    ${_CONFIGURE_ARGS}
.elif defined(WITH_STATIC_APACHE) || defined(WITH_ALL_STATIC_MODULES)
WITH_STATIC_MODULES=    ${APACHE_MODULES}
.   if ${USE_APACHE} == common13
.       for module in ${APACHE_MODULES}
CONFIGURE_ARGS+=    --enable-module=${module}
.       endfor
.   else
CONFIGURE_ARGS+=    --enable-modules="${APACHE_MODULES}"
.   endif
.else
.   if ${USE_APACHE} == common13
.       for module in ${APACHE_MODULES}
CONFIGURE_ARGS+=    --enable-module=${module} --enable-shared=${module}
.       endfor
.   else
CONFIGURE_ARGS+=    --enable-mods-shared="${APACHE_MODULES}"
.   endif
.endif

.if defined(WITH_STATIC_MODULES)
_SHARED_MODULES!=   \
            for module in ${APACHE_MODULES} ; do \
                ${ECHO_CMD} ${WITH_STATIC_MODULES} | ${GREP} -wq $${module} 2> /dev/null || \
                ${ECHO_CMD} $${module}; \
            done
SHARED_MODULES=     ${_SHARED_MODULES}
.elif !defined(WITH_ALL_STATIC_MODULES)
SHARED_MODULES=     ${APACHE_MODULES}
.endif

.for module in ${SHARED_MODULES}
${module}_PLIST_SUB=    ""
.endfor

.for module in ${AVAILABLE_MODULES}
PLIST_SUB+= MOD_${module:U}=${${module}_PLIST_SUB}
.endfor
#### End of AP_PORT_IS_SERVER ####

# ===============================================================
.elif defined(AP_PORT_IS_MODULE) || defined(USE_APACHE_RUN) || defined(USE_APACHE_BUILD)
APXS?=      ${LOCALBASE}/sbin/apxs
HTTPD?=     ${LOCALBASE}/sbin/httpd

MODULENAME?=    ${PORTNAME}
SHORTMODNAME?=  ${MODULENAME:S/mod_//}
SRC_FILE?=  ${MODULENAME}.c

.if exists(${HTTPD})
_APACHE_VERSION!=   ${HTTPD} -V | ${SED} -ne 's/^Server version: Apache\/\([0-9]\)\.\([0-9]*\).*/\1\2/p'
.   if ${_APACHE_VERSION} > 13
APACHE_MPM!=        ${APXS} -q MPM_NAME
.   endif
.elif defined(APACHE_PORT)
_APACHE_VERSION!=   ${ECHO_CMD} ${APACHE_PORT} | ${SED} -ne 's,.*/apache\([0-9]*\).*,\1,p'
.endif

.if defined(USE_APACHE)
_USE_APACHE:=   ${USE_APACHE}
.elif defined(USE_APACHE_BUILD)
_USE_APACHE:=   ${USE_APACHE_BUILD}
.elif defined(USE_APACHE_RUN)
_USE_APACHE:=   ${USE_APACHE_RUN}
.endif

_APACHE_VERSION_CHECK:=         ${_USE_APACHE:C/^([1-9][0-9])$/\1-\1/}
_APACHE_VERSION_MINIMUM_TMP:=   ${_APACHE_VERSION_CHECK:C/([1-9][0-9])[-+].*/\1/}
_APACHE_VERSION_MINIMUM:=       ${_APACHE_VERSION_MINIMUM_TMP:M[1-9][0-9]}
_APACHE_VERSION_MAXIMUM_TMP:=   ${_APACHE_VERSION_CHECK:C/.*-([1-9][0-9])/\1/}
_APACHE_VERSION_MAXIMUM:=       ${_APACHE_VERSION_MAXIMUM_TMP:M[1-9][0-9]}

.if defined(_APACHE_VERSION)
# Validate Apache version whether it meets USE_APACHE version restriction.
.   if !empty(_APACHE_VERSION_MINIMUM) && (${_APACHE_VERSION} < ${_APACHE_VERSION_MINIMUM})
_APACHE_VERSION_NONSUPPORTED=   ${_APACHE_VERSION_MINIMUM} at least
.   elif !empty(_APACHE_VERSION_MAXIMUM) && (${_APACHE_VERSION} > ${_APACHE_VERSION_MAXIMUM})
_APACHE_VERSION_NONSUPPORTED=   ${_APACHE_VERSION_MAXIMUM} at most
.   endif

.   if defined(_APACHE_VERSION_NONSUPPORTED) && !defined(AP_IGNORE_VERSION_CHECK)
IGNORE= ${_ERROR_MSG} apache${_APACHE_VERSION} is installed (or APACHE_PORT is defined) and port requires apache${_APACHE_VERSION_NONSUPPORTED}
.    endif
.else       # defined(_APACHE_VERSION)
.   for ver in ${APACHE_SUPPORTED_VERSION}
__VER=  ${ver}
.       if !defined(_APACHE_VERSION) && \
            !(!empty(_APACHE_VERSION_MINIMUM) && ( ${__VER} < ${_APACHE_VERSION_MINIMUM} )) && \
            !(!empty(_APACHE_VERSION_MAXIMUM) && ( ${__VER} > ${_APACHE_VERSION_MAXIMUM} ))
_APACHE_VERSION=    ${ver}
.       endif
.   endfor
.endif      # defined(_APACHE_VERSION)

APACHE_VERSION:=    ${_APACHE_VERSION}

.if exists(${APXS})
APXS_PREFIX!=   ${APXS} -q prefix 2> /dev/null || echo NULL
.   if ${APXS_PREFIX} == NULL
IGNORE= : Your apache does not support DSO modules
.   endif
.   if defined(AP_GENPLIST) && ${APXS_PREFIX} != ${PREFIX}
IGNORE?=    PREFIX must be equal to APXS_PREFIX.
.   endif
.endif

.if ${APACHE_VERSION} == 20
AP_BUILDEXT=    la
APACHEMODDIR=   libexec/apache2
APACHEINCLUDEDIR=include/apache2
APACHEETCDIR=   etc/apache2
APACHE_PORT?=   www/apache${APACHE_VERSION}
.elif ${APACHE_VERSION} >= 22
AP_BUILDEXT=    la
APACHEMODDIR=   libexec/apache${APACHE_VERSION}
APACHEINCLUDEDIR=include/apache${APACHE_VERSION}
APACHEETCDIR=   etc/apache${APACHE_VERSION}
APACHE_PORT?=   www/apache${APACHE_VERSION}
.else
AP_BUILDEXT=    so
APACHEMODDIR=   libexec/apache
APACHEINCLUDEDIR=include/apache
APACHEETCDIR=   etc/apache
APACHE_PORT?= www/apache13
.endif

PLIST_SUB+= APACHEMODDIR="${APACHEMODDIR}" \
        APACHEINCLUDEDIR="${APACHEINCLUDEDIR}" \
        APACHEETCDIR="${APACHEETCDIR}"

APACHE_PKGNAMEPREFIX=   ap${APACHE_VERSION}-
.if defined(AP_FAST_BUILD)
PKGNAMEPREFIX?= ${APACHE_PKGNAMEPREFIX}
.endif

.if defined(USE_APACHE) || defined(USE_APACHE_BUILD)
BUILD_DEPENDS+= ${APXS}:${PORTSDIR}/${APACHE_PORT}
.endif

.if defined(USE_APACHE) || defined(USE_APACHE_RUN)
RUN_DEPENDS+=   ${APXS}:${PORTSDIR}/${APACHE_PORT}
.endif

PLIST_SUB+= AP_NAME="${SHORTMODNAME}"
PLIST_SUB+= AP_MODULE="${MODULENAME}.so"

.if defined(AP_GENPLIST)
PLIST?=     ${WRKDIR}/ap-plist
.endif

.if defined(AP_INC)
AP_EXTRAS+= -I ${AP_INC}
.endif
.if defined(AP_LIB)
AP_EXTRAS+= -L ${AP_LIB}
.endif

.endif # End of AP_PORT_IS_SERVER   / AP_PORT_IS_MOULE
.endif # End of !Apache_Pre_Include

# ===============================================================
.if defined(_POSTMKINCLUDED) && !defined(Apache_Post_Include)
Apache_Post_Include=    bsd.apache.mk

.if defined(USE_APACHE_RUN) && !empty(USE_APACHE_RUN)
.   if ${USE_APACHE_RUN:C/\-//:S/^20//:S/^22//:C/\+$//} != ""
IGNORE= ${_ERROR_MSG} Illegal use of USE_APACHE_RUN ( ${USE_APACHE_RUN} )
.   endif
.elif defined(USE_APACHE_RUN)
IGNORE= ${_ERROR_MSG} Illegal use of USE_APACHE_RUN ( no valid version specified )
.endif

.if defined(USE_APACHE_BUILD) && !empty(USE_APACHE_BUILD)
.   if ${USE_APACHE_BUILD:C/\-//:S/^20//:S/^22//:C/\+$//} != ""
IGNORE= ${_ERROR_MSG} Illegal use of USE_APACHE_BUILD ( ${USE_APACHE_BUILD} )
.   endif
.elif defined(USE_APACHE_BUILD)
IGNORE= ${_ERROR_MSG} Illegal use of USE_APACHE_BUILD ( no valid version specified )
.endif

# Check if USE_APACHE(_BUILD|_RUN) are mixed together
.if defined(USE_APACHE) && ( defined(USE_APACHE_BUILD) || defined(USE_APACHE_RUN) )
IGNORE= ${_ERROR_MSG} specify only one of: USE_APACHE USE_APACHE_BUILD USE_APACHE_RUN
.elif defined(USE_APACHE_BUILD) && defined(USE_APACHE_RUN)
IGNORE= ${_ERROR_MSG} use USE_APACHE instead of USE_APACHE_BUILD and USE_APACHE_RUN together
.endif

.if defined(AP_PORT_IS_SERVER)
.if !target(print-closest-mirrors)
print-closest-mirrors:
    @${ECHO_MSG} -n "Fetching list of nearest mirror: " >&2
    @MIRRORS=`${FETCH_CMD} -T 30 -qo - http://www.apache.org/dyn/closer.cgi/httpd/ 2> /dev/null\
    | ${GREP} /httpd/ | ${SED} 's/.*href="\(.*\)"><str.*/\1/g' | \
    ${HEAD} -7 | ${TAIL} -6` ; \
    ${ECHO_MSG} done >&2; if [ "x$$MIRRORS" != "x" ]; then \
    ${ECHO_MSG} -n "MASTER_SITE_APACHE_HTTPD?= ";\
    ${ECHO_MSG} $$MIRRORS; else \
    ${ECHO_MSG} "No mirrors found!">&2 ; fi
.endif

.if !target(show-categories)
show-categories:
.for category in ${ALL_MODULES_CATEGORIES}
    @${ECHO_MSG} "${category} contains these modules:"
    @${ECHO_MSG} "  ${${category}_MODULES}"
.endfor
.endif

.if !target(show-modules)
show-modules:
    @for module in ${AVAILABLE_MODULES} ; do \
    ${ECHO_MSG} -n "$${module}: "; \
    if ${ECHO_CMD} ${APACHE_MODULES} | ${GREP} -wq $${module} 2> /dev/null ; \
    then \
        ${ECHO_CMD} -n "enabled "; \
            if ${ECHO_CMD} ${WITH_STATIC_MODULES} | ${GREP} -wq $${module} 2> /dev/null ; then \
                ${ECHO_CMD} "(static)" ; \
            else \
                ${ECHO_CMD} "(shared)" ;\
            fi;\
    else \
        ${ECHO_CMD} disabled ;\
    fi;\
    done
.endif

.if !target(make-options-list)
make-options-list:
    @${ECHO_CMD} OPTIONS+= \\;
    @for module in ${AVAILABLE_MODULES} ; do \
    if ${ECHO_CMD} ${APACHE_MODULES} | ${GREP} -wq $${module} 2> /dev/null ; \
    then \
        ${PRINTF} "\t `${ECHO_CMD} $${module} | ${TR} '[:lower:]' '[:upper:]'` \"Enable mod_$${module}\" ON \\"; \
        ${ECHO_CMD}; \
    else \
        ${PRINTF} "\t `${ECHO_CMD} $${module} | ${TR} '[:lower:]' '[:upper:]'` \"Enable mod_$${module}\" OFF \\";\
        ${ECHO_CMD}; \
    fi;\
    done; \
    ${ECHO_CMD};
.endif

.elif defined(AP_PORT_IS_MODULE)

.if defined(AP_FAST_BUILD)
.if !target(ap-gen-plist)
ap-gen-plist:
.if defined(AP_GENPLIST)
.   if !exists(${PLIST})
    @${ECHO} "===>  Generating apache plist"
# apache22/20
    @${ECHO} "@unexec ${SED} -i '' -E '/LoadModule[[:blank:]]+%%AP_NAME%%_module/d' %D/%%APACHEETCDIR%%/httpd.conf" >> ${PLIST}
    @${ECHO} "%%APACHEMODDIR%%/%%AP_MODULE%%" >> ${PLIST}
    @${ECHO} "@exec %D/sbin/apxs -e -A -n %%AP_NAME%% %D/%F" >> ${PLIST}
    @${ECHO} "@unexec echo \"Don't forget to remove all ${MODULENAME}-related directives in your httpd.conf\"">> ${PLIST}
.   endif
.else
    @${DO_NADA}
.endif
.endif

.if !target(do-build)
do-build: ap-gen-plist
    @cd ${WRKSRC} && ${APXS} -c ${AP_EXTRAS} -o ${MODULENAME}.${AP_BUILDEXT} ${SRC_FILE}
.endif

.if !target(do-install)
do-install:
    @${APXS} -i -A -n ${SHORTMODNAME} ${WRKSRC}/${MODULENAME}.${AP_BUILDEXT}
.endif
.endif
.endif
.endif          # defined(_POSTMKINCLUDED) && !defined(Apache_Post_Include)