diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2005-06-07 18:04:42 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2005-06-07 18:04:42 +0000 |
commit | 5304f14ee4da3ad4706fffe708dec1eabf76f41d (patch) | |
tree | a23f7a914f0328061aa47aaf65230aca4599656c /app-crypt | |
parent | Fixed ChangeLog header. (diff) | |
download | gentoo-2-5304f14ee4da3ad4706fffe708dec1eabf76f41d.tar.gz gentoo-2-5304f14ee4da3ad4706fffe708dec1eabf76f41d.tar.bz2 gentoo-2-5304f14ee4da3ad4706fffe708dec1eabf76f41d.zip |
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.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/heimdal/ChangeLog | 7 | ||||
-rw-r--r-- | app-crypt/heimdal/heimdal-0.6.4-r1.ebuild | 12 |
2 files changed, 15 insertions, 4 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/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() { |