blob: 2a315d00ef3ffdc4bc28bfda956d2ea48f1b45b6 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# New ports collection makefile for: apache mod_auth_pgsql
# Date created: 2000/11/10
# Whom: Mikhail Teterin <mi@aldan.algebra.com>
#
# $FreeBSD$
PORTNAME= mod_auth_pgsql
PORTVERSION= 0.9.12
PORTREVISION= 3
CATEGORIES= www
MASTER_SITES= http://www.giuseppetanzilli.it/mod_auth_pgsql/dist/
MAINTAINER= ports@FreeBSD.org
COMMENT= Allows users to use PostgreSQL databases for user authentication
BUILD_DEPENDS= ${APXS}:${PORTSDIR}/${APACHE_PORT}
RUN_DEPENDS= ${LOCALBASE}/sbin/${AP_TARGET}:${PORTSDIR}/${APACHE_PORT}
USE_PGSQL= yes
APACHE_COMPAT= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/a//}
.include <bsd.port.pre.mk>
.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
CFLAGS:= `${APXS} -q CFLAGS` ${CFLAGS}
.else
AP_TARGET?= httpd
AP_SYSCONF?= ${PREFIX}/etc/apache
AP_INCLUDE?= ${PREFIX}/include/apache
AP_LIBEXEC?= ${PREFIX}/libexec/apache
.endif
HAS_CONFIGURE= yes
CONFIGURE_ARGS= --with-pgsql=${PREFIX} \
--with-apxs=${APXS}
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README \
${DOCSDIR}
${TR} -d \\015 < ${WRKSRC}/mod_auth_pgsql.html \
> ${DOCSDIR}/index.html
${CHMOD} ${SHAREMODE} \
${DOCSDIR}/index.html
${CHOWN} ${SHAREOWN}:${SHAREGRP} \
${DOCSDIR}/index.html
.endif
${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|