diff options
author | Torsten Veller <tove@gentoo.org> | 2009-10-30 10:16:51 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2009-10-30 10:16:51 +0000 |
commit | 369aff7b13891a4850ba270d70c9b898e580b84f (patch) | |
tree | 6123284682717b559b99aa5bf10c1f563be207b1 /net-mail/fetchmail | |
parent | amd64/x86 stable, bug #289523 (diff) | |
download | gentoo-2-369aff7b13891a4850ba270d70c9b898e580b84f.tar.gz gentoo-2-369aff7b13891a4850ba270d70c9b898e580b84f.tar.bz2 gentoo-2-369aff7b13891a4850ba270d70c9b898e580b84f.zip |
Run --with-ssl before --with-kerberos. Kerberos requires ssl. Heimdal is not really usable as long as openssl doesn't support it (#245934)
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/fetchmail')
-rw-r--r-- | net-mail/fetchmail/ChangeLog | 6 | ||||
-rw-r--r-- | net-mail/fetchmail/fetchmail-6.3.13.ebuild | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/net-mail/fetchmail/ChangeLog b/net-mail/fetchmail/ChangeLog index 29a37b6b152c..65f528a47f56 100644 --- a/net-mail/fetchmail/ChangeLog +++ b/net-mail/fetchmail/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-mail/fetchmail # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.174 2009/10/30 08:57:00 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.175 2009/10/30 10:16:51 tove Exp $ + + 30 Oct 2009; Torsten Veller <tove@gentoo.org> fetchmail-6.3.13.ebuild: + Run --with-ssl before --with-kerberos. Kerberos requires ssl. Heimdal is + not really usable as long as openssl doesn't support it (#245934) *fetchmail-6.3.13 (30 Oct 2009) diff --git a/net-mail/fetchmail/fetchmail-6.3.13.ebuild b/net-mail/fetchmail/fetchmail-6.3.13.ebuild index 201fb15eaf2c..26dc3545cd9f 100644 --- a/net-mail/fetchmail/fetchmail-6.3.13.ebuild +++ b/net-mail/fetchmail/fetchmail-6.3.13.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.13.ebuild,v 1.1 2009/10/30 08:57:00 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.13.ebuild,v 1.2 2009/10/30 10:16:51 tove Exp $ EAPI=2 @@ -17,7 +17,7 @@ IUSE="ssl nls kerberos hesiod tk" RDEPEND="hesiod? ( net-dns/hesiod ) ssl? ( >=dev-libs/openssl-0.9.6 ) - kerberos? ( virtual/krb5 ) + kerberos? ( virtual/krb5 >=dev-libs/openssl-0.9.6 ) nls? ( virtual/libintl ) elibc_FreeBSD? ( sys-libs/com_err ) dev-lang/python[tk?]" @@ -47,9 +47,10 @@ src_configure() { --enable-NTLM \ --enable-SDPS \ $(use_enable nls) \ + $(use_with ssl) \ + $(use kerberos && echo "--with-ssl" ) \ $(use_with kerberos gssapi) \ $(use_with kerberos kerberos5) \ - $(use_with ssl) \ $(use_with hesiod) \ ${myconf} || die "Configuration failed." } |