blob: a2d2ac4e7a920c5c6afd7de4c50f88fbc1453259 (
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
42
43
44
45
46
47
48
49
50
51
52
|
# 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/kth-krb/kth-krb-1.1.1.ebuild,v 1.1 2002/08/19 01:59:13 rphillips Exp $
S=${WORKDIR}/krb4-${PV}
DESCRIPTION="Kerberos 4 implementation from KTH"
SRC_URI="ftp://ftp.pdc.kth.se/pub/krb/src/krb4-${PV}.tar.gz"
HOMEPAGE="http://www.pdc.kth.se/kth-krb/"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 sparc sparc64"
DEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )
afs? ( >=net-fs/openafs-1.2.2-r7 )"
src_compile() {
local myconf=""
use ssl && myconf="${myconf} --with-openssl=/usr"
use afs || myconf="${myconf} --without-afs-support"
./configure \
--host=${CHOST} \
--prefix=/usr/athena \
--sysconfdir=/etc \
${myconf} || die
make || die
}
src_install () {
make prefix=${D}/usr/athena \
sysconfdir=${D}/etc \
install || die
# Doesn't get install otherwise (for some reason, look into this).
if [ "`use ssl`" ] ; then
cd ${S}/lib/des
make prefix=${D}/usr/athena \
install || die
cd ${S}
fi
dodir /etc/env.d
cp ${FILESDIR}/02kth-krb ${D}/etc/env.d
dodoc COPYRIGHT ChangeLog README NEWS PROBLEMS TODO
}
|