blob: b0d07a14d06a1495cdfa4a83e422d31082b97c1c (
plain)
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: mod_auth_pwcheck
# Date created: 2001/08/08
# Whom: Anton Voronin <anton@chelcom.ru>
#
# $FreeBSD$
#
PORTNAME= mod_auth_pwcheck
PORTVERSION= 1.1
CATEGORIES= www
MASTER_SITES= http://www.chelcom.ru/~anton/projects/files/
MAINTAINER= anton@chelcom.ru
COMMENT= Apache module for user authentication via Cyrus pwcheck daemon
BUILD_DEPENDS= ${APXS}:${PORTSDIR}/${APACHE_PORT}
RUN_DEPENDS= ${LOCALBASE}/sbin/${AP_TARGET}:${PORTSDIR}/${APACHE_PORT} \
${LOCALBASE}/sbin/pwcheck:${PORTSDIR}/security/cyrus-sasl
WRKSRC= ${WRKDIR}/${PORTNAME}
APACHE_PORT?= ${AP_CATEGORY}/${AP_PORT}
.include <bsd.port.pre.mk>
.if exists(${APXS})
AP_MOD_SSL_SUFFIX!= ${APXS} -q CFLAGS 2>/dev/null \
| ${GREP} DMOD_SSL >/dev/null \
|| ${ECHO} -modssl
AP_CATEGORY!= ${APXS} -q CFLAGS 2>/dev/null \
| ${GREP} DRUSSIAN_APACHE >/dev/null \
&& ${ECHO} russian \
|| ${ECHO} www
AP_TARGET!= ${APXS} -q TARGET 2>/dev/null || ${ECHO}
AP_LIBEXEC!= ${APXS} -q LIBEXECDIR 2>/dev/null | ${SED} 's@^${PREFIX}/@@'
.else
AP_CATEGORY= www
.endif
AP_PORT= apache13${AP_MOD_SSL_SUFFIX}
AUTH_PWCHECK_DOCS= share/doc/apache/manual/mod/mod_auth_pwcheck
PLIST_SUB= AUTH_PWCHECK_DOCS="${AUTH_PWCHECK_DOCS}" \
AP_LIBEXEC="${AP_LIBEXEC}" \
APXS="${APXS}"
.include <bsd.port.post.mk>
|