summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Goodyear <g2boojum@gentoo.org>2002-02-22 01:36:38 +0000
committerGrant Goodyear <g2boojum@gentoo.org>2002-02-22 01:36:38 +0000
commit820b61dfd2dca06b25c3fc6779ae137cec871933 (patch)
tree18c2be43ee8cbc3a8f328d0ab1bb123bf4b2d6ce /app-crypt
parentinitial experimental version (diff)
downloadhistorical-820b61dfd2dca06b25c3fc6779ae137cec871933.tar.gz
historical-820b61dfd2dca06b25c3fc6779ae137cec871933.tar.bz2
historical-820b61dfd2dca06b25c3fc6779ae137cec871933.zip
Thanks to Michael Kaufman we have a vastly improved krb5 ebuild.
Revomed previous version.
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/krb5/ChangeLog10
-rw-r--r--app-crypt/krb5/files/digest-krb5-1.2.2-r1 (renamed from app-crypt/krb5/files/digest-krb5-1.2.2)0
-rw-r--r--app-crypt/krb5/krb5-1.2.2-r1.ebuild (renamed from app-crypt/krb5/krb5-1.2.2.ebuild)14
3 files changed, 18 insertions, 6 deletions
diff --git a/app-crypt/krb5/ChangeLog b/app-crypt/krb5/ChangeLog
index 27c3b2da3e0a..02baff649758 100644
--- a/app-crypt/krb5/ChangeLog
+++ b/app-crypt/krb5/ChangeLog
@@ -1,7 +1,15 @@
# ChangeLog for app-crypt/krb5
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/krb5/ChangeLog,v 1.1 2002/02/01 21:53:00 gbevin Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/krb5/ChangeLog,v 1.2 2002/02/22 01:36:38 g2boojum Exp $
+*krb5-1.2.2-r1 (21 Feb 2002)
+
+ 21 Feb 2002; Grant Goodyear <g2boojum@gentoo.org> :
+
+ Thanks to Michael Kaufman, we now have a working ebuild. Previous ebuild
+ failed to build klist, kvno, kpasswd, kinit, and kdestroy. There was
+ also a linker problem which has been fixed.
+
*krb5-1.2.2 (1 Feb 2002)
1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
diff --git a/app-crypt/krb5/files/digest-krb5-1.2.2 b/app-crypt/krb5/files/digest-krb5-1.2.2-r1
index d2104a498fa1..d2104a498fa1 100644
--- a/app-crypt/krb5/files/digest-krb5-1.2.2
+++ b/app-crypt/krb5/files/digest-krb5-1.2.2-r1
diff --git a/app-crypt/krb5/krb5-1.2.2.ebuild b/app-crypt/krb5/krb5-1.2.2-r1.ebuild
index 10daddbf757b..b1d0ab87cb39 100644
--- a/app-crypt/krb5/krb5-1.2.2.ebuild
+++ b/app-crypt/krb5/krb5-1.2.2-r1.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Grant Goodyear <grant@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/krb5/krb5-1.2.2.ebuild,v 1.4 2001/11/10 02:40:17 hallski Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/krb5/krb5-1.2.2-r1.ebuild,v 1.1 2002/02/22 01:36:38 g2boojum Exp $
S=${WORKDIR}/${P}/src
SRC_URI="http://www.crypto-publish.org/dist/mit-kerberos5/${P}.tar.gz"
@@ -13,17 +13,21 @@ DEPEND="virtual/glibc"
src_compile() {
- try ./configure --with-krb4 --enable-shared --prefix=/usr --mandir=/usr/share/man --host=${CHOST}
+ patch -p0 < ${FILESDIR}/${P}-gentoo.diff
+
+ ./configure --with-krb4 --enable-shared --prefix=/usr \
+ --mandir=/usr/share/man --host=${CHOST} \
+ || die
mv Makefile Makefile.orig
#Don't install the ftp, telnet, r* apps; use pam instead
- sed -e 's/ appl //' Makefile.orig > Makefile
- try make
+ sed -e 's/ appl / /' Makefile.orig > Makefile
+ emake || die
}
src_install () {
- try make DESTDIR=${D} install
+ make DESTDIR=${D} install || die
cd ..
dodoc README
echo 'NOTE: ftp, telnet, r* apps not installed. Install pam-krb5!'