Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: ChangeLog fetchmail-6.3.13.ebuild
Date: Fri, 30 Oct 2009 10:16:54
Message-Id: E1N3oXM-0004Tr-GJ@stork.gentoo.org
1 tove 09/10/30 10:16:52
2
3 Modified: ChangeLog fetchmail-6.3.13.ebuild
4 Log:
5 Run --with-ssl before --with-kerberos. Kerberos requires ssl. Heimdal is not really usable as long as openssl doesn't support it (#245934)
6 (Portage version: 2.2_rc46/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.175 net-mail/fetchmail/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.175&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.175&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.174&r2=1.175
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
18 retrieving revision 1.174
19 retrieving revision 1.175
20 diff -u -r1.174 -r1.175
21 --- ChangeLog 30 Oct 2009 08:57:00 -0000 1.174
22 +++ ChangeLog 30 Oct 2009 10:16:51 -0000 1.175
23 @@ -1,6 +1,10 @@
24 # ChangeLog for net-mail/fetchmail
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.174 2009/10/30 08:57:00 tove Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.175 2009/10/30 10:16:51 tove Exp $
28 +
29 + 30 Oct 2009; Torsten Veller <tove@g.o> fetchmail-6.3.13.ebuild:
30 + Run --with-ssl before --with-kerberos. Kerberos requires ssl. Heimdal is
31 + not really usable as long as openssl doesn't support it (#245934)
32
33 *fetchmail-6.3.13 (30 Oct 2009)
34
35
36
37
38 1.2 net-mail/fetchmail/fetchmail-6.3.13.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.13.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.13.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.13.ebuild?r1=1.1&r2=1.2
43
44 Index: fetchmail-6.3.13.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.13.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- fetchmail-6.3.13.ebuild 30 Oct 2009 08:57:00 -0000 1.1
51 +++ fetchmail-6.3.13.ebuild 30 Oct 2009 10:16:51 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.13.ebuild,v 1.1 2009/10/30 08:57:00 tove Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.13.ebuild,v 1.2 2009/10/30 10:16:51 tove Exp $
57
58 EAPI=2
59
60 @@ -17,7 +17,7 @@
61
62 RDEPEND="hesiod? ( net-dns/hesiod )
63 ssl? ( >=dev-libs/openssl-0.9.6 )
64 - kerberos? ( virtual/krb5 )
65 + kerberos? ( virtual/krb5 >=dev-libs/openssl-0.9.6 )
66 nls? ( virtual/libintl )
67 elibc_FreeBSD? ( sys-libs/com_err )
68 dev-lang/python[tk?]"
69 @@ -47,9 +47,10 @@
70 --enable-NTLM \
71 --enable-SDPS \
72 $(use_enable nls) \
73 + $(use_with ssl) \
74 + $(use kerberos && echo "--with-ssl" ) \
75 $(use_with kerberos gssapi) \
76 $(use_with kerberos kerberos5) \
77 - $(use_with ssl) \
78 $(use_with hesiod) \
79 ${myconf} || die "Configuration failed."
80 }