summaryrefslogtreecommitdiff
blob: ce5e7cab07b4400f20c972d0dc9dd68f14eb8877 (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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-crypt/pam_krb5/pam_krb5-1.0.ebuild,v 1.6 2002/07/25 15:31:25 seemant Exp $

S=${WORKDIR}/${PN}
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"

DEPEND="app-crypt/krb5
	sys-libs/pam"

src_compile() {
    patch -p0 < ${FILESDIR}/${P}-gentoo.diff || die
    make CFLAGS="$CFLAGS" || 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
}