blob: 3be47bef7ccc5747e6fd5b00a00ede01a8aa9cf2 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
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="HPND openafs-krb5-a"
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
}
|