diff options
author | 2002-10-26 15:24:01 +0000 | |
---|---|---|
committer | 2002-10-26 15:24:01 +0000 | |
commit | c1c0a8b101a2a7d634e6d7797a9015b1aef81bc0 (patch) | |
tree | c0f5924447e743348e4e719eece1a61b3081d93d /app-crypt/kth-krb | |
parent | added to stable tree (diff) | |
download | historical-c1c0a8b101a2a7d634e6d7797a9015b1aef81bc0.tar.gz historical-c1c0a8b101a2a7d634e6d7797a9015b1aef81bc0.tar.bz2 historical-c1c0a8b101a2a7d634e6d7797a9015b1aef81bc0.zip |
Security update.
Diffstat (limited to 'app-crypt/kth-krb')
-rw-r--r-- | app-crypt/kth-krb/ChangeLog | 7 | ||||
-rw-r--r-- | app-crypt/kth-krb/files/digest-kth-krb-1.2.1 | 1 | ||||
-rw-r--r-- | app-crypt/kth-krb/kth-krb-1.2.1.ebuild | 54 |
3 files changed, 61 insertions, 1 deletions
diff --git a/app-crypt/kth-krb/ChangeLog b/app-crypt/kth-krb/ChangeLog index 0f7a60febc58..09dc891fe1e5 100644 --- a/app-crypt/kth-krb/ChangeLog +++ b/app-crypt/kth-krb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-crypt/kth-krb # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-crypt/kth-krb/ChangeLog,v 1.4 2002/10/18 09:04:22 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/kth-krb/ChangeLog,v 1.5 2002/10/26 15:24:01 aliz Exp $ + +*kth-krb 1.2.1 (26 Oct 2002) + + 26 Oct 2002; Daniel Ahlberg <aliz@gentoo.org> : + Security update. Found by Ian <ian@stacken.kth.se>. *kth-krb 1.2 (18 Oct 2002) diff --git a/app-crypt/kth-krb/files/digest-kth-krb-1.2.1 b/app-crypt/kth-krb/files/digest-kth-krb-1.2.1 new file mode 100644 index 000000000000..05b7f323df82 --- /dev/null +++ b/app-crypt/kth-krb/files/digest-kth-krb-1.2.1 @@ -0,0 +1 @@ +MD5 0a18ef26ec7ab67082d43797ebd23a62 krb4-1.2.1.tar.gz 1876149 diff --git a/app-crypt/kth-krb/kth-krb-1.2.1.ebuild b/app-crypt/kth-krb/kth-krb-1.2.1.ebuild new file mode 100644 index 000000000000..47e73c92a8dd --- /dev/null +++ b/app-crypt/kth-krb/kth-krb-1.2.1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/kth-krb/kth-krb-1.2.1.ebuild,v 1.1 2002/10/26 15:24:01 aliz Exp $ + +IUSE="ssl afs" + +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 +} |