summaryrefslogtreecommitdiff
blob: b11680ee4401e2e41dcaf27d5965f5c475201831 (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
33
34
35
36
37
38
39
40
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit pam

DESCRIPTION="pam_pgsql is a module for pam to authenticate users with PostgreSQL"
HOMEPAGE="http://pgfoundry.org/frs/?group_id=1000039"
SRC_URI="mirror://postgresql/projects/pgFoundry/sysauth/${PN/_/-}-${PV}.tgz"
RESTRICT=""

LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~x86"

DEPEND=">=sys-libs/pam-0.78-r3
	>=app-crypt/mhash-0.9.1
	>=dev-db/postgresql-7.3.6"

RDEPEND="${DEPEND}"

S="${WORKDIR}/${PN/_/-}"

src_compile() {
	econf || die "econf failed"
	emake CFLAGS="${CFLAGS}" || die "emake failed"
}

src_install() {
	insinto /etc
	newins "${FILESDIR}/pam_pgsql.conf" pam_pgsql.conf
	dopammod pam_pgsql.so
	dodoc debian/changelog README CREDITS
}

pkg_postinst() {
	elog "From version 0.6 you can also use new style configuration (overrides"
	elog "legacy values). See /usr/share/doc/${PF}/README for more info."
}