summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/heimdal/ChangeLog7
-rw-r--r--app-crypt/heimdal/Manifest4
-rw-r--r--app-crypt/heimdal/heimdal-0.6.4-r1.ebuild12
3 files changed, 17 insertions, 6 deletions
diff --git a/app-crypt/heimdal/ChangeLog b/app-crypt/heimdal/ChangeLog
index c1c4e07f0c98..d0e5e55a2e07 100644
--- a/app-crypt/heimdal/ChangeLog
+++ b/app-crypt/heimdal/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-crypt/heimdal
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/ChangeLog,v 1.69 2005/06/06 20:01:26 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/ChangeLog,v 1.70 2005/06/07 18:04:42 seemant Exp $
+
+ 07 Jun 2005; Seemant Kulleen <seemant@gentoo.org> heimdal-0.6.4-r1.ebuild:
+ Thanks to AZ for fixing this even better -- the tests should work, and we
+ have the X use flag thanks to Anthony- in #gentoo-apache, of all places. Az
+ fixed the virtualx eclass earlier to make X an optional dep too.
*heimdal-0.6.4-r1 (06 Jun 2005)
diff --git a/app-crypt/heimdal/Manifest b/app-crypt/heimdal/Manifest
index aca6402067a0..69f070da6d35 100644
--- a/app-crypt/heimdal/Manifest
+++ b/app-crypt/heimdal/Manifest
@@ -1,7 +1,7 @@
-MD5 277df3ab3d4819d7e702651a12cac06c ChangeLog 11670
+MD5 e9db34d4621bd09c9c68eec78d0aaaa0 ChangeLog 11969
MD5 6c9cbfc951ebeca1a88d8722de4dde80 metadata.xml 231
MD5 8ff78d3463eb4bbfdd4d0cdf29ac937c heimdal-0.6.4.ebuild 2805
-MD5 d49eac5c9e56a2171936b327adaebbc0 heimdal-0.6.4-r1.ebuild 3399
+MD5 6f4f0246f8037a5ce93b840ab15570c5 heimdal-0.6.4-r1.ebuild 3524
MD5 0becad2fb5b2e15b30b47b2939304647 files/heimdal-kadmind 546
MD5 2be6ab7b49a076e078f34913d65bcaad files/heimdal-kdc 514
MD5 f4811d443f68fe11946a031ada8ce125 files/heimdal-kpasswdd 551
diff --git a/app-crypt/heimdal/heimdal-0.6.4-r1.ebuild b/app-crypt/heimdal/heimdal-0.6.4-r1.ebuild
index 648e6b794c98..b0ac4f42f671 100644
--- a/app-crypt/heimdal/heimdal-0.6.4-r1.ebuild
+++ b/app-crypt/heimdal/heimdal-0.6.4-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-0.6.4-r1.ebuild,v 1.3 2005/06/06 21:51:25 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-0.6.4-r1.ebuild,v 1.4 2005/06/07 18:04:42 seemant Exp $
inherit libtool eutils virtualx toolchain-funcs
@@ -16,7 +16,7 @@ SRC_URI="ftp://ftp.pdc.kth.se/pub/heimdal/src/${P}.tar.gz
LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~sparc ~ppc ~x86"
-IUSE="ssl berkdb ipv6 krb4 ldap"
+IUSE="ssl berkdb ipv6 krb4 ldap X"
RDEPEND="ssl? ( dev-libs/openssl )
berkdb? ( sys-libs/db )
@@ -66,6 +66,7 @@ src_compile() {
$(use_with berkdb berkeley-db) \
$(use_with ssl openssl) \
$(use_with krb4) \
+ $(use_with X x) \
--enable-shared \
--includedir=/usr/include/heimdal \
--libexecdir=/usr/sbin \
@@ -85,7 +86,12 @@ src_compile() {
src_test() {
addpredict /proc/fs/openafs/afs_ioctl
addpredict /proc/fs/nnpfs/afs_ioctl
- Xmake check || die
+
+ if use X ; then
+ KRB5_CONFIG=${S}/krb5.conf Xmake check || die
+ else
+ KRB5_CONFIG=${S}/krb5.conf make check || die
+ fi
}
src_install() {