blob: 2cd40568310e4522076044868fe7e3586e17678a (
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
|
# New ports collection makefile for: mod_auth_external2
# Date created: Fri Oct 10
# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org>
#
# $FreeBSD$
PORTNAME= mod_auth_external
PORTVERSION= 2.2.10
CATEGORIES= www
MASTER_SITES= http://www.unixpapa.com/software/
DIST_SUBDIR= apache2
MAINTAINER= apache@FreeBSD.org
COMMENT= Allows users authentication based on external mechanisms
WANT_APACHE= 2
AP_FAST_BUILD= YES
AP_GENPLIST= YES
LATEST_LINK= mod_auth_external2
SHORTMODNAME= external_auth
PORTDOCS= AUTHENTICATORS INSTALL README
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/www/apache2/Makefile.modules.3rd"
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
. for f in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
. endfor
.endif
.include <bsd.port.post.mk>
|