summaryrefslogtreecommitdiff
blob: f849cfe25bfeb415225b7b20ffc4bcbb43e7bb65 (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
53
54
55
56
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-0.4e-r1.ebuild,v 1.3 2002/07/11 06:30:11 drobbins Exp $

S=${WORKDIR}/${P}
DESCRIPTION="Kerberos 5 implementation from KTH"
SRC_URI="ftp://ftp.pdc.kth.se/pub/${PN}/src/${P}.tar.gz"
HOMEPAGE="http://www.pdc.kth.se/heimdal/"

DEPEND="virtual/glibc
	>=app-crypt/kth-krb-1.1-r1
	ssl? ( dev-libs/openssl )
	ldap? ( net-nds/openldap )
	berkdb? ( sys-libs/db )"

src_compile() {
	local myconf

	if [ "`use ssl`" ] ; then
		myconf="--with-openssl=/usr"
	fi

	if [ "`use ldap`" ] ; then
		myconf="${myconf} --with-open-ldap=/usr"
	fi

	if [ -z "`use ipv6`" ] ; then 
		myconf="${myconf} --without-ipv6"
	fi

	if [ -z "`use berkdb`" ] ; then
		myconf="${myconf} --without-berkely-db"
	fi

	./configure --host=${CHOST} \
			--prefix=/usr/heimdal \
			--sysconfdir=/etc \
			--with-krb4=/usr/athena \
			${myconf} || die

	emake || die
}

src_install () {
	make prefix=${D}/usr/heimdal \
		sysconfdir=${D}/etc \
		install || die

	dodir /etc/env.d
	cp ${FILESDIR}/01heimdal ${D}/etc/env.d

	dodoc COPYRIGHT ChangeLog README NEWS PROBLEMS TODO
}