blob: 172bed7608cf166bd595b50ac4e5ccd6debd2718 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/pam_krb5/pam_krb5-1.0-r1.ebuild,v 1.4 2005/04/21 18:05:54 blubb Exp $
inherit eutils
DESCRIPTION="Pam module for MIT Kerberos V"
SRC_URI="http://www.fcusack.com/soft/${P}.tar.gz"
HOMEPAGE="http://www.fcusack.com/"
SLOT="0"
LICENSE="BSD GPL-2 as-is"
KEYWORDS="x86 sparc ppc amd64"
IUSE=""
DEPEND="app-crypt/mit-krb5
sys-libs/pam"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.diff
# bug #35059 - needs errno.h included.
epatch ${FILESDIR}/${P}-errno_h.patch
}
src_compile() {
emake || die
}
src_install() {
exeinto /lib/security
doexe pam_krb5.so.1
dosym /lib/security/pam_krb5.so.1 /lib/security/pam_krb5.so
doman pam_krb5.5
dodoc COPYRIGHT README TODO
}
|