blob: d4bd589f2a8c2e88f7ef1598b579becbb9806bb0 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ssh/pam_ssh-1.91-r1.ebuild,v 1.1 2005/07/02 14:12:59 flameeyes Exp $
inherit pam
DESCRIPTION="Uses ssh-agent to provide single sign-on"
HOMEPAGE="http://pam-ssh.sourceforge.net/"
SRC_URI="mirror://sourceforge/pam-ssh/${P}.tar.bz2"
RESTRICT="nomirror"
LICENSE="BSD as-is"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
# Doesn't work on OpenPAM.
DEPEND="sys-libs/pam
sys-devel/libtool"
RDEPEND="sys-libs/pam
virtual/ssh"
src_compile() {
econf \
"--with-pam-dir=$(getpam_mod_dir)" \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
make install DESTDIR=${D} || die "install failed"
dodoc AUTHORS ChangeLog NEWS README TODO ${FILESDIR}/system-auth.example
}
pkg_postinst() {
einfo "You can find an example system-auth file that uses this"
einfo "library in /usr/share/doc/${PF}"
}
|