9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
34 lines
975 B
Makefile
34 lines
975 B
Makefile
# $NetBSD: Makefile,v 1.13 2006/03/04 21:30:56 jlam Exp $
|
|
|
|
DISTNAME= mod_auth_pgsql-2.0.3
|
|
PKGNAME= ap2-auth-pgsql-2.0.3
|
|
PKGREVISION= 2
|
|
CATEGORIES= www databases
|
|
MASTER_SITES= http://www.giuseppetanzilli.it/mod_auth_pgsql2/dist/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.giuseppetanzilli.it/mod_auth_pgsql2/
|
|
COMMENT= Allows users to use PostgreSQL databases for user authentication
|
|
|
|
CONFLICTS= ap-auth-postgresql-*
|
|
|
|
APACHE_MODULE= yes
|
|
APACHE_MODULE_NAME= ap2-auth-pgsql
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && \
|
|
${APXS} -c -n ${APACHE_MODULE_NAME} \
|
|
-I${PGSQL_PREFIX}/include/postgresql \
|
|
-L${LOCALBASE}/lib \
|
|
${COMPILER_RPATH_FLAG}${LOCALBASE}/lib \
|
|
-lpq ${DISTNAME:C/-[^-]*$//}.c
|
|
|
|
do-install:
|
|
(cd ${WRKSRC} && ${APXS} -A -i ${DISTNAME:C/-[^-]*$//}.la)
|
|
#${MKDIR} ${DOCSDIR}
|
|
#${INSTALL_DATA} ${WRKSRC}/mod_auth_pgsql.html ${DOCSDIR}
|
|
|
|
.include "../../www/apache2/buildlink3.mk"
|
|
|
|
.include "../../mk/pgsql.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|