diff options
author | recht <recht@pkgsrc.org> | 2003-09-16 22:57:08 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2003-09-16 22:57:08 +0000 |
commit | 7926d7ffb4225f8edb36cd12357017995f10c7f1 (patch) | |
tree | c3e483c4bad24025b5ab9c5cfd37f6f83dc121e8 /www/ap-auth-postgresql/Makefile | |
parent | a698bf2e5ed740200ec6da2bbb2e808abb4c0202 (diff) | |
download | pkgsrc-7926d7ffb4225f8edb36cd12357017995f10c7f1.tar.gz |
Update to 1.4, patch provided by Min Sik Kim in PR 22518
1.4
o Added AuthPGGroupQuery.
o AuthPGGroupQuery doesn't require AuthPGGroupTable.
o Database access errors in verifying group permission leave log messages.
o AuthPGQuery works with AuthPGVirtual.
o Fixed a bug in AuthPGCookie.
1.3
o Fix a security problem.
(See http://cert.uni-stuttgart.de/advisories/apache_auth.php for details.)
Diffstat (limited to 'www/ap-auth-postgresql/Makefile')
-rw-r--r-- | www/ap-auth-postgresql/Makefile | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/www/ap-auth-postgresql/Makefile b/www/ap-auth-postgresql/Makefile index 78c0a9f251b..32f3c5707f5 100644 --- a/www/ap-auth-postgresql/Makefile +++ b/www/ap-auth-postgresql/Makefile @@ -1,13 +1,12 @@ -# $NetBSD: Makefile,v 1.18 2003/07/31 19:24:39 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2003/09/16 22:57:08 recht Exp $ -DISTNAME= AuthPG-1.2b2 -PKGNAME= ap-auth-postgresql-1.2b2 -PKGREVISION= 1 +DISTNAME= AuthPG-1.4 +PKGNAME= ap-auth-postgresql-1.4 CATEGORIES= www databases -MASTER_SITES= http://home.bawi.org/~minskim/authpg/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=authpg/} MAINTAINER= jwise@NetBSD.org -HOMEPAGE= http://home.bawi.org/~minskim/authpg/ +HOMEPAGE= http://authpg.sourceforge.net/ COMMENT= Module to allow apache authentication against a Postgresql database CONFLICTS= ap-auth-pgsql-[0-9]* @@ -19,13 +18,18 @@ APACHE_MODULE_NAME= mod_auth_pg.so CPPFLAGS+= -I${BUILDLINK_PREFIX.postgresql-lib}/include/postgresql LDFLAGS+= -lpq -lcrypt +DOCDIR= ${PREFIX}/share/doc/mod_auth_pg +EGDIR= ${PREFIX}/share/examples/mod_auth_pg + post-install: - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mod_auth_pg - ${INSTALL_DATA} ${WRKSRC}/mod_auth_pg.html ${PREFIX}/share/doc/mod_auth_pg - ${INSTALL_DATA} ${WRKSRC}/mod_auth_pg.ko.html ${PREFIX}/share/doc/mod_auth_pg - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/mod_auth_pg - ${INSTALL_DATA} ${WRKSRC}/README.ko ${PREFIX}/share/doc/mod_auth_pg - ${INSTALL_DATA} ${WRKSRC}/sample.htaccess ${PREFIX}/share/examples/mod_auth_pg.htaccess + ${INSTALL_DATA_DIR} ${DOCDIR} + ${INSTALL_DATA_DIR} ${EGDIR} + ${INSTALL_DATA} ${WRKSRC}/mod_auth_pg.html ${DOCDIR} + ${INSTALL_DATA} ${WRKSRC}/mod_auth_pg.ko.html ${DOCDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCDIR} + ${INSTALL_DATA} ${WRKSRC}/README.ko ${DOCDIR} + ${INSTALL_DATA} ${WRKSRC}/sample.htaccess ${EGDIR}/mod_auth_pg.htaccess + ${INSTALL_DATA} ${WRKSRC}/sample.sql ${EGDIR}/mod_auth_pg.sql .include "../../databases/postgresql-lib/buildlink2.mk" .include "../../www/apache/module.mk" |