Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-fs/cifs-utils: ChangeLog cifs-utils-5.1.ebuild
Date: Fri, 28 Oct 2011 20:08:04
Message-Id: 20111028200754.D9DCD20033@flycatcher.gentoo.org
1 vostorga 11/10/28 20:07:54
2
3 Modified: ChangeLog cifs-utils-5.1.ebuild
4 Log:
5 Disabling cifsidmap and cifsacl, because they look for a non-existant wbclient.h bug 385475, fixing libcap-ng use flag
6
7 (Portage version: 2.1.10.11/cvs/Linux i686)
8
9 Revision Changes Path
10 1.18 net-fs/cifs-utils/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.18&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.18&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?r1=1.17&r2=1.18
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v
19 retrieving revision 1.17
20 retrieving revision 1.18
21 diff -u -r1.17 -r1.18
22 --- ChangeLog 4 Oct 2011 16:07:57 -0000 1.17
23 +++ ChangeLog 28 Oct 2011 20:07:54 -0000 1.18
24 @@ -1,6 +1,10 @@
25 # ChangeLog for net-fs/cifs-utils
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.17 2011/10/04 16:07:57 vostorga Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.18 2011/10/28 20:07:54 vostorga Exp $
29 +
30 + 28 Oct 2011; Víctor Ostorga <vostorga@g.o> cifs-utils-5.1.ebuild:
31 + Disabling cifsidmap and cifsacl support, because they look for a
32 + non-existant wbclient.h bug 385475, fixing libcap-ng use flag
33
34 04 Oct 2011; Víctor Ostorga <vostorga@g.o> cifs-utils-5.1.ebuild:
35 Dropping setuid flag, CVE-2011-3585 bug 385315
36
37
38
39 1.3 net-fs/cifs-utils/cifs-utils-5.1.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/cifs-utils-5.1.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/cifs-utils-5.1.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/cifs-utils-5.1.ebuild?r1=1.2&r2=1.3
44
45 Index: cifs-utils-5.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-5.1.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- cifs-utils-5.1.ebuild 4 Oct 2011 16:07:57 -0000 1.2
52 +++ cifs-utils-5.1.ebuild 28 Oct 2011 20:07:54 -0000 1.3
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-5.1.ebuild,v 1.2 2011/10/04 16:07:57 vostorga Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-5.1.ebuild,v 1.3 2011/10/28 20:07:54 vostorga Exp $
58
59 EAPI=4
60
61 @@ -41,12 +41,21 @@
62 }
63
64 src_configure() {
65 - econf \
66 + local myconf=''
67 + if use "caps-ng"; then
68 + myconf="${myconf} --with-libcap-ng=yes "
69 + else
70 + myconf="${myconf} --with-libcap-ng=no "
71 + fi
72 + myconf="${myconf} \
73 $(use_enable ads cifsupcall) \
74 $(use_with caps libcap) \
75 $(use_with caps-ng libcap-ng) \
76 $(use_enable creds cifscreds) \
77 - $(use_enable upcall cifsupcall)
78 + $(use_enable upcall cifsupcall) \
79 + --disable-cifsidmap \
80 + --disable-cifsacl"
81 + econf ${myconf}
82 }
83
84 src_install() {