Gentoo Archives: gentoo-commits

From: "Eray Aslan (eras)" <eras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-proxy/squid: squid-3.3.13.ebuild ChangeLog
Date: Thu, 28 Aug 2014 08:09:18
Message-Id: 20140828080910.6A14E41A9@oystercatcher.gentoo.org
1 eras 14/08/28 08:09:10
2
3 Modified: squid-3.3.13.ebuild ChangeLog
4 Log:
5 Automagic kerberos library fix for squid-3.3.13 as well
6
7 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
8
9 Revision Changes Path
10 1.2 net-proxy/squid/squid-3.3.13.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/squid-3.3.13.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/squid-3.3.13.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/squid-3.3.13.ebuild?r1=1.1&r2=1.2
15
16 Index: squid-3.3.13.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-proxy/squid/squid-3.3.13.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- squid-3.3.13.ebuild 28 Aug 2014 07:17:03 -0000 1.1
23 +++ squid-3.3.13.ebuild 28 Aug 2014 08:09:10 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/squid-3.3.13.ebuild,v 1.1 2014/08/28 07:17:03 eras Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/squid-3.3.13.ebuild,v 1.2 2014/08/28 08:09:10 eras Exp $
29
30 EAPI=5
31 inherit autotools eutils linux-info pam toolchain-funcs user versionator
32 @@ -121,8 +121,14 @@
33 local digest_modules="file"
34 use ldap && digest_modules+=",LDAP,eDirectory"
35
36 - local negotiate_modules="none"
37 - use kerberos && negotiate_modules="kerberos,wrapper"
38 + local negotiate_modules myconf
39 + if use kerberos ; then
40 + negotiate_modules="kerberos,wrapper"
41 + myconf="--with-krb5-config=yes"
42 + else
43 + negotiate_modules="none"
44 + myconf="--with-krb5-config=no"
45 + fi
46
47 local ntlm_modules="none"
48 use samba && ntlm_modules="smb_lm"
49 @@ -186,7 +192,8 @@
50 $(use_enable ssl-crtd) \
51 $(use_enable icap-client) \
52 $(use_enable ecap) \
53 - ${transparent}
54 + ${transparent} \
55 + ${myconf}
56 }
57
58 src_install() {
59
60
61
62 1.469 net-proxy/squid/ChangeLog
63
64 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/ChangeLog?rev=1.469&view=markup
65 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/ChangeLog?rev=1.469&content-type=text/plain
66 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/squid/ChangeLog?r1=1.468&r2=1.469
67
68 Index: ChangeLog
69 ===================================================================
70 RCS file: /var/cvsroot/gentoo-x86/net-proxy/squid/ChangeLog,v
71 retrieving revision 1.468
72 retrieving revision 1.469
73 diff -u -r1.468 -r1.469
74 --- ChangeLog 28 Aug 2014 07:57:59 -0000 1.468
75 +++ ChangeLog 28 Aug 2014 08:09:10 -0000 1.469
76 @@ -1,6 +1,9 @@
77 # ChangeLog for net-proxy/squid
78 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
79 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/ChangeLog,v 1.468 2014/08/28 07:57:59 eras Exp $
80 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/ChangeLog,v 1.469 2014/08/28 08:09:10 eras Exp $
81 +
82 + 28 Aug 2014; Eray Aslan <eras@g.o> squid-3.3.13.ebuild:
83 + Automagic kerberos library fix for squid-3.3.13 as well
84
85 28 Aug 2014; Eray Aslan <eras@g.o> squid-3.4.7.ebuild:
86 Fix automagic link againt kerberos library - bug #516632