blob: d721b912787f6141243c8e168f722a73716ac5ae (
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
|
# New ports collection makefile for: apache-contrib
# Date created: September 10 2000
# Whom: Anders Nordby <anders@fix.no>
#
# $FreeBSD$
#
PORTNAME= apache-contrib
PORTVERSION= 1.0.8
CATEGORIES= www
MASTER_SITES= http://www.apache.org/dist/%SUBDIR%/ \
ftp://ftp.rge.com/pub/infosystems/apache/dist/%SUBDIR%/ \
ftp://ftp.epix.net/pub/apache/dist/%SUBDIR%/ \
ftp://ftp.iodynamics.com/pub/mirror/apache/dist/%SUBDIR%/ \
ftp://ftp.sunet.se/pub/www/servers/apache/dist/%SUBDIR%/ \
${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/apache/dist/&,}
MASTER_SITE_SUBDIR= httpd/contrib/modules/1.3
MAINTAINER= ports@FreeBSD.org
BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13
RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13
APXS= ${LOCALBASE}/sbin/apxs
AP_PORT?= apache13
.if exists(${APXS})
APXS_WORKS!= ${APXS} -q TARGET 2>/dev/null || echo no
.endif
.if exists(${APXS}) && ${APXS_WORKS} != no
AP_TARGET!= ${APXS} -q TARGET
AP_SYSCONF!= ${APXS} -q SYSCONFDIR
AP_INCLUDE!= ${APXS} -q INCLUDEDIR
AP_LIBEXEC!= ${APXS} -q LIBEXECDIR
.else
AP_TARGET?= httpd
AP_SYSCONF?= ${PREFIX}/etc/apache
AP_INCLUDE?= ${PREFIX}/include/apache
AP_LIBEXEC?= ${PREFIX}/libexec/apache
.endif
ALL_TARGET= APXS=${APXS} all
INSTALL_TARGET= APXS=${APXS} install
.include <bsd.port.mk>
|