blob: 1c473d7ce4eae39d3d727f6bc86401ef6a29acfd (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam-afs-session/pam-afs-session-1.6.ebuild,v 1.1 2008/03/25 11:46:56 stefaan Exp $
inherit pam
DESCRIPTION="OpenAFS PAM Module"
HOMEPAGE="http://www.eyrie.org/~eagle/software/pam-afs-session/"
SRC_URI="http://archives.eyrie.org/software/afs/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="virtual/krb5 virtual/pam"
RDEPEND="${DEPEND}"
src_compile() {
econf --with-kerberos || die "econf failed"
emake || die "emake failed"
}
src_install() {
dopammod pam_afs_session.so
doman pam_afs_session.5
dodoc CHANGES NEWS README TODO
}
|