mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
73f7c91b5d
(Part 1)
66 lines
1.8 KiB
Makefile
66 lines
1.8 KiB
Makefile
# 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= 2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.giuseppetanzilli.it/mod_auth_pgsql/dist/
|
|
|
|
MAINTAINER= seanc@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}
|
|
LIB_DEPENDS= pq.3:${PORTSDIR}/${POSTGRESQL_PORT}
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/a//}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
POSTGRESQL_PORT?= databases/postgresql7
|
|
|
|
.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
|
|
|
|
AUTH_PGSQL_DOCS= apache/manual/mod/mod_auth_pgsql
|
|
|
|
PLIST_SUB+= AUTH_PGSQL_DOCS="${AUTH_PGSQL_DOCS}"
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-pgsql=${PREFIX} \
|
|
--with-apxs=${APXS}
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/${AUTH_PGSQL_DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/README \
|
|
${PREFIX}/share/doc/${AUTH_PGSQL_DOCS}/
|
|
${TR} -d \\015 < ${WRKSRC}/mod_auth_pgsql.html \
|
|
> ${PREFIX}/share/doc/${AUTH_PGSQL_DOCS}/index.html
|
|
${CHMOD} ${SHAREMODE} \
|
|
${PREFIX}/share/doc/${AUTH_PGSQL_DOCS}/index.html
|
|
${CHOWN} ${SHAREOWN}:${SHAREGRP} \
|
|
${PREFIX}/share/doc/${AUTH_PGSQL_DOCS}/index.html
|
|
${LN} -sf ${AUTH_PGSQL_DOCS} ${PREFIX}/share/doc/
|
|
.endif
|
|
${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|