blob: 39eff44ee79e5d272dd8bacf667f240c96ff38d4 (
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
|
# New ports collection makefile for: mod_auth_pam2
# Date created: Sun Oct 5
# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org>
#
# $FreeBSD$
#
PORTNAME= mod_auth_pam
PORTVERSION= 1.1.1
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://pam.sourceforge.net/mod_auth_pam/dist/
DISTNAME= ${PORTNAME}-2.0-${PORTVERSION}
MAINTAINER= apache@FreeBSD.org
COMMENT= Allows users to use PAM modules for user authentication
MAKE_JOBS_SAFE= yes
LATEST_LINK= mod_auth_pam2
USE_APACHE= 20+
USE_GMAKE= YES
MAKE_ENV+= APXS=${APXS}
WRKSRC= ${WRKDIR}/${PORTNAME}
post-install:
${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/samples/httpd ${EXAMPLESDIR}/pam-httpd.sample
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR}/
.endif
.include <bsd.port.mk>
|