blob: 61d422ac112bd1aa5019bf2d04741667d8fa2aaa (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/mit-krb5/mit-krb5-1.3.1.ebuild,v 1.2 2003/09/19 01:36:24 avenj Exp $
inherit eutils
DESCRIPTION="MIT Kerberos V"
HOMEPAGE="http://web.mit.edu/kerberos/www/"
MY_P=${PN/mit-}-${PV}
S=${WORKDIR}/${MY_P/_/-}/src
SRC_URI="http://www.crypto-publish.org/dist/mit-kerberos5/${MY_P/_/-}.tar.gz"
IUSE="krb4 static"
SLOT="0"
LICENSE="as-is"
KEYWORDS="~x86 ~sparc ~ppc ~alpha ~hppa ia64"
PROVIDE="virtual/krb5"
DEPEND="virtual/glibc"
src_compile() {
local myconf
use krb4 && myconf="${myconf} --with-krb4 --enable-krb4" \
|| myconf="${myconf} --without-krb4 --disable-krb4"
use static && myconf="${myconf} --disable-shared --enable-static" \
|| myconf="${myconf} --enable-shared --disable-static"
CFLAGS=`echo ${CFLAGS} | xargs`
CXXFLAGS=`echo ${CXXFLAGS} | xargs`
LDFLAGS=`echo ${LDFLAGS} | xargs`
CFLAGS="${CFLAGS}" \
CXXFLAGS="${CXXFLAGS}" \
LDFLAGS="${LDFLAGS}" \
econf \
--mandir=/usr/share/man \
--localstatedir=/etc \
--host=${CHOST} \
--prefix=/usr \
--enable-dns \
${myconf} || die
if [ "${ARCH}" = "hppa" ]
then
einfo "Fixating Makefiles ..."
for i in `find ${S} -name Makefile`; \
do cp $i $i.old; sed -e 's/LDCOMBINE=ld -shared -h lib/LDCOMBINE=gcc -shared -h lib/' $i.old > $i; done
fi
make || die
}
src_install () {
make DESTDIR=${D} install || die
cd ..
dodoc README
dohtml doc/*.html
# Begin client rename and install
for i in {telnetd,ftpd}
do
mv ${D}/usr/share/man/man8/${i}.8 ${D}/usr/share/man/man8/k${i}.8
mv ${D}/usr/sbin/${i} ${D}/usr/sbin/k${i}
done
for i in {rcp,rsh,telnet,ftp,rlogin}
do
mv ${D}/usr/share/man/man1/${i}.1 ${D}/usr/share/man/man1/k${i}.1
mv ${D}/usr/bin/${i} ${D}/usr/bin/k${i}
done
insinto /etc
newins ${FILESDIR}/krb5.conf krb5.conf
insinto /etc/krb5kdc
newins ${FILESDIR}/kdc.conf kdc.conf
exeinto /etc/init.d
newexe ${FILESDIR}/mit-krb5kadmind.initd mit-krb5kadmind
newexe ${FILESDIR}/mit-krb5kdc.initd mit-krb5kdc
}
pkg_postinst() {
einfo "See /usr/share/doc/${PF}/html/admin.html for documentation."
echo ""
einfo "The client apps are installed with the k prefix"
einfo "(ie. kftp, kftpd, ktelnet, ktelnetd, etc...)"
echo ""
}
|