blob: 95ff14a9b0fe872e1f3dcd576fc7adeb2f300ed4 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_pgsql/mod_auth_pgsql-2.0.2-r2.ebuild,v 1.4 2005/06/06 18:58:14 nakano Exp $
inherit apache-module
DESCRIPTION="This module allows user authentication (and can log authentication requests) against information stored in a PostgreSQL database."
HOMEPAGE="http://www.giuseppetanzilli.it/mod_auth_pgsql2/"
SRC_URI="http://www.giuseppetanzilli.it/mod_auth_pgsql2/dist/${P}b1.tar.gz"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
LICENSE="freedist"
SLOT="2"
DEPEND="dev-db/postgresql"
IUSE=""
APXS2_ARGS="-a -c -I /usr/pgsql/include -L /usr/pgsql/lib -lpq mod_auth_pgsql.c"
APACHE2_MOD_CONF="${PVR}/80_mod_auth_pgsql"
APACHE2_MOD_DEFINE="AUTH_PGSQL"
DOCFILES="INSTALL README TODO mod_auth_pgsql.html"
need_apache2
S="${WORKDIR}/${P}b1"
src_install() {
apache-module_src_install
fperms 600 ${APACHE2_MODULES_CONFDIR}/$(basename ${APACHE2_MOD_CONF}).conf
}
|