blob: b23d082568e7df15a6c11033857a73cf1a23374c (
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
41
|
# 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://sourceforge.net/projects/pam-pgsql/"
SRC_URI="mirror://sourceforge/${PN/_/-}/lib${PN/_/-}-${PV}.tar.bz2"
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/_/-}-${PV}"
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."
}
|