blob: 7202ff3651a82f48af96eb6f3c29541f0b7bb1cc (
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: mod_auth_pam
# Date created: 2 April 2001
# Whom: Anders Nordby <anders@fix.no>
#
# $FreeBSD$
#
PORTNAME= mod_auth_pam
PORTVERSION= 1.1.1
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://pam.sourceforge.net/mod_auth_pam/dist/
MAINTAINER= apache@FreeBSD.org
COMMENT= Allows users to use PAM modules for user authentication
DEPRECATED= apache13 is deprecated, migrate to 2.2.x+ now
EXPIRATION_DATE= one week after FreeBSD 9.0-RELEASE-p0
MAKE_JOBS_SAFE= yes
USE_APACHE= 13
AP_FAST_BUILD= yes
AP_GENPLIST= yes
AP_LIB= -lpam
PORTDOCS= configure.txt faq.txt
PORTEXAMPLES= dot-htaccess httpd-
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}/
${INSTALL_DATA} ${WRKSRC}/doc/configure.txt ${DOCSDIR}/
${INSTALL_DATA} ${WRKSRC}/doc/faq.txt ${DOCSDIR}/
.endif
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${EXAMPLESDIR}/
${INSTALL_DATA} ${WRKSRC}/samples/dot-htaccess ${EXAMPLESDIR}/
${INSTALL_DATA} ${WRKSRC}/samples/httpd- ${EXAMPLESDIR}/
.endif
${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|