summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasatomo Nakano <nakano@gentoo.org>2004-01-16 13:20:13 +0000
committerMasatomo Nakano <nakano@gentoo.org>2004-01-16 13:20:13 +0000
commit12f7fbecd1a2d8352deaa29c26f2494e03f8a5be (patch)
treec8cef98f67a7cdb5727035a66574c0b881e551a5 /net-www
parentset ppc in keywords (diff)
downloadgentoo-2-12f7fbecd1a2d8352deaa29c26f2494e03f8a5be.tar.gz
gentoo-2-12f7fbecd1a2d8352deaa29c26f2494e03f8a5be.tar.bz2
gentoo-2-12f7fbecd1a2d8352deaa29c26f2494e03f8a5be.zip
Fixed PostgreSQL library path.
Diffstat (limited to 'net-www')
-rw-r--r--net-www/mod_auth_pgsql/ChangeLog8
-rw-r--r--net-www/mod_auth_pgsql/metadata.xml5
-rw-r--r--net-www/mod_auth_pgsql/mod_auth_pgsql-0.9.12.ebuild11
3 files changed, 17 insertions, 7 deletions
diff --git a/net-www/mod_auth_pgsql/ChangeLog b/net-www/mod_auth_pgsql/ChangeLog
index 4fc9123e4f56..bd06281cdc51 100644
--- a/net-www/mod_auth_pgsql/ChangeLog
+++ b/net-www/mod_auth_pgsql/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-www/mod_auth_pgsql
-# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_pgsql/ChangeLog,v 1.3 2003/04/22 10:25:35 vapier Exp $
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_pgsql/ChangeLog,v 1.4 2004/01/16 13:20:13 nakano Exp $
+
+ 16 Jan 2004; Masatomo Nakano <nakano@gentoo.org>
+ mod_auth_pgsql-0.9.12.ebuild:
+ Fixed PostgreSQL library path.
*mod_auth_pgsql-0.9.12 (17 Mar 2003)
diff --git a/net-www/mod_auth_pgsql/metadata.xml b/net-www/mod_auth_pgsql/metadata.xml
new file mode 100644
index 000000000000..309b51e9a965
--- /dev/null
+++ b/net-www/mod_auth_pgsql/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>postgresql</herd>
+</pkgmetadata>
diff --git a/net-www/mod_auth_pgsql/mod_auth_pgsql-0.9.12.ebuild b/net-www/mod_auth_pgsql/mod_auth_pgsql-0.9.12.ebuild
index f2ec95711c4c..219cccda9c2d 100644
--- a/net-www/mod_auth_pgsql/mod_auth_pgsql-0.9.12.ebuild
+++ b/net-www/mod_auth_pgsql/mod_auth_pgsql-0.9.12.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_pgsql/mod_auth_pgsql-0.9.12.ebuild,v 1.2 2003/03/27 13:52:19 nakano Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_pgsql/mod_auth_pgsql-0.9.12.ebuild,v 1.3 2004/01/16 13:20:13 nakano Exp $
DESCRIPTION="This module allows user authentication (and can log authethication requests) against information stored in a PostgreSQL database."
SRC_URI="http://www.giuseppetanzilli.it/mod_auth_pgsql/dist/${P}.tar.gz"
@@ -12,10 +12,11 @@ DEPEND="net-www/apache
dev-db/postgresql"
src_compile() {
- ./configure --with-apxs=/usr/sbin/apxs --with-pgsql=/usr/lib/postgresql
- /usr/sbin/apxs -I/usr/include/postgresql/server \
+ econf --with-apxs=/usr/sbin/apxs --with-pgsql-lib=/usr/lib/postgresql \
+ --with-pgsql-include=/usr/include/postgresql
+ /usr/sbin/apxs -I/usr/include/postgresql \
-L/usr/lib/postgresql -lpq \
- -o mod_auth_pgsql.so -c mod_auth_pgsql.c auth_pgsql_shared_stub.c
+ -o mod_auth_pgsql.so -c mod_auth_pgsql.c auth_pgsql_shared_stub.c || die
}
src_install() {