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/samba: samba-3.5.3.ebuild ChangeLog
Date: Wed, 02 Jun 2010 16:03:48
Message-Id: 20100602160331.BDCC52CE14@corvid.gentoo.org
1 vostorga 10/06/02 16:03:31
2
3 Modified: samba-3.5.3.ebuild ChangeLog
4 Log:
5 Adding support for winbind shared modules idmap_rid , idmap_ad and idmap_ldap bug #301968
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.6 net-fs/samba/samba-3.5.3.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/samba-3.5.3.ebuild?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/samba-3.5.3.ebuild?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/samba-3.5.3.ebuild?r1=1.5&r2=1.6
14
15 Index: samba-3.5.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.5.3.ebuild,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- samba-3.5.3.ebuild 1 Jun 2010 14:04:59 -0000 1.5
22 +++ samba-3.5.3.ebuild 2 Jun 2010 16:03:31 -0000 1.6
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.5.3.ebuild,v 1.5 2010/06/01 14:04:59 vostorga Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.5.3.ebuild,v 1.6 2010/06/02 16:03:31 vostorga Exp $
28
29 EAPI="2"
30
31 @@ -51,6 +51,7 @@
32 BINPROGS=""
33 KRBPLUGIN=""
34 PLUGINEXT=".so"
35 +SHAREDMODS=""
36
37 if use server ; then
38 SBINPROGS="${SBINPROGS} bin/smbd bin/nmbd"
39 @@ -72,7 +73,13 @@
40
41 use cups && BINPROGS="${BINPROGS} bin/smbspool"
42 use ldb && BINPROGS="${BINPROGS} bin/ldbedit bin/ldbsearch bin/ldbadd bin/ldbdel bin/ldbmodify bin/ldbrename";
43 -use winbind && BINPROGS="${BINPROGS} bin/wbinfo"
44 +
45 +if use winbind ; then
46 + BINPROGS="${BINPROGS} bin/wbinfo"
47 + SHAREDMODS="${SHAREDMODS}idmap_rid"
48 + use ads && SHAREDMODS="${SHAREDMODS},idmap_ad"
49 + use ldap && SHAREDMODS="${SHAREDMODS},idmap_ldap"
50 +fi
51
52 S="${WORKDIR}/${MY_P}/source3"
53
54 @@ -178,6 +185,7 @@
55 $(use_with aio aio-support) \
56 --with-sendfile-support \
57 $(use_with winbind) \
58 + --with-shared-modules=${SHAREDMODS} \
59 --without-included-popt \
60 --without-included-iniparser
61 }
62
63
64
65 1.421 net-fs/samba/ChangeLog
66
67 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?rev=1.421&view=markup
68 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?rev=1.421&content-type=text/plain
69 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?r1=1.420&r2=1.421
70
71 Index: ChangeLog
72 ===================================================================
73 RCS file: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v
74 retrieving revision 1.420
75 retrieving revision 1.421
76 diff -u -r1.420 -r1.421
77 --- ChangeLog 1 Jun 2010 14:04:59 -0000 1.420
78 +++ ChangeLog 2 Jun 2010 16:03:31 -0000 1.421
79 @@ -1,6 +1,10 @@
80 # ChangeLog for net-fs/samba
81 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
82 -# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.420 2010/06/01 14:04:59 vostorga Exp $
83 +# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.421 2010/06/02 16:03:31 vostorga Exp $
84 +
85 + 02 Jun 2010; Víctor Ostorga <vostorga@g.o> samba-3.5.3.ebuild:
86 + Adding support for winbind shared modules idmap_rid , idmap_ad and
87 + idmap_ldap bug #301968
88
89 01 Jun 2010; Víctor Ostorga <vostorga@g.o> samba-3.4.6.ebuild,
90 samba-3.4.8.ebuild, -samba-3.5.0.ebuild, -samba-3.5.2-r1.ebuild,