blob: 9e89f33c3aa9c16a4fb015ba8e302d0428f2fbe1 (
plain)
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
|
# $NetBSD: Makefile,v 1.16 2012/10/28 06:30:03 asau Exp $
DISTNAME= mod_auth_pgsql-0.9.12
PKGNAME= ap13-auth-pgsql-0.9.12
PKGREVISION= 4
CATEGORIES= www databases
MASTER_SITES= http://www.giuseppetanzilli.it/mod_auth_pgsql/dist/
MAINTAINER= waddell@caravan-epub.com
HOMEPAGE= http://www.giuseppetanzilli.it/mod_auth_pgsql/
COMMENT= Apache module for user authentication/logging against a PostgreSQL DB
CONFLICTS= ap-auth-pgsql-[0-9]*
CONFLICTS+= ap-auth-postgresql-[0-9]*
CONFLICTS+= ap13-auth-postgresql-[0-9]*
APACHE_MODULE_NAME= mod_auth_pgsql.so
CPPFLAGS+= -I${PGSQL_PREFIX}/include/postgresql
LDFLAGS+= -lpq -lcrypt
INSTALLATION_DIRS+= share/doc/mod_auth_pgsql
post-install:
${INSTALL_DATA} ${WRKSRC}/mod_auth_pgsql.html ${DESTDIR}${PREFIX}/share/doc/mod_auth_pgsql
${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/mod_auth_pgsql
${INSTALL_DATA} ${WRKSRC}/INSTALL ${DESTDIR}${PREFIX}/share/doc/mod_auth_pgsql
.include "../../www/apache/module.mk"
.include "../../mk/pgsql.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|