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/files/4.0: com_err.patch samba4.initd
Date: Tue, 01 Nov 2011 19:24:04
Message-Id: 20111101192353.54CC12004C@flycatcher.gentoo.org
1 vostorga 11/11/01 19:23:53
2
3 Added: com_err.patch samba4.initd
4 Log:
5 Updating samba 4, based in work of Ewoud Kohl van Wijngaarden <gentoo@××××××××××××××××××.nl> bug 195703
6
7 (Portage version: 2.1.10.11/cvs/Linux i686)
8
9 Revision Changes Path
10 1.1 net-fs/samba/files/4.0/com_err.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/files/4.0/com_err.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/files/4.0/com_err.patch?rev=1.1&content-type=text/plain
14
15 Index: com_err.patch
16 ===================================================================
17 From 2f34bfbc1941127d17a7a91c6598d6a6c35620e2 Mon Sep 17 00:00:00 2001
18 From: Ewoud Kohl van Wijngaarden <ewoud@××××××××××××××××××.nl>
19 Date: Thu, 6 Oct 2011 00:19:01 +0200
20 Subject: [PATCH] Add missing com_err dependencies
21
22 ---
23 auth/kerberos/wscript_build | 2 +-
24 nsswitch/wscript_build | 2 +-
25 2 files changed, 2 insertions(+), 2 deletions(-)
26
27 diff --git a/auth/kerberos/wscript_build b/auth/kerberos/wscript_build
28 index 1070770..2421b16 100644
29 --- a/auth/kerberos/wscript_build
30 +++ b/auth/kerberos/wscript_build
31 @@ -1,3 +1,3 @@
32 bld.SAMBA_SUBSYSTEM('KRB5_PAC',
33 source='gssapi_pac.c kerberos_pac.c',
34 - deps='gssapi_krb5 krb5 ndr-krb5pac')
35 + deps='gssapi_krb5 krb5 ndr-krb5pac com_err')
36 diff --git a/nsswitch/wscript_build b/nsswitch/wscript_build
37 index 298da06..4e353d3 100644
38 --- a/nsswitch/wscript_build
39 +++ b/nsswitch/wscript_build
40 @@ -33,7 +33,7 @@ if bld.CONFIG_SET('WITH_PAM_MODULES') and bld.CONFIG_SET('HAVE_PAM_START'):
41 if bld.CONFIG_SET('HAVE_KRB5_LOCATE_PLUGIN_H'):
42 bld.SAMBA_LIBRARY('winbind_krb5_locator',
43 source='winbind_krb5_locator.c',
44 - deps='wbclient krb5',
45 + deps='wbclient krb5 com_err',
46 realname='winbind_krb5_locator.so')
47
48 bld.SAMBA_SUBSYSTEM('WB_REQTRANS',
49 --
50 1.7.3.4
51
52
53
54
55 1.1 net-fs/samba/files/4.0/samba4.initd
56
57 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/files/4.0/samba4.initd?rev=1.1&view=markup
58 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/files/4.0/samba4.initd?rev=1.1&content-type=text/plain
59
60 Index: samba4.initd
61 ===================================================================
62 #!/sbin/runscript
63 # Copyright 1999-2011 Gentoo Foundation
64 # Distributed under the terms of the GNU General Public License v2
65 # $Header: /var/cvsroot/gentoo-x86/net-fs/samba/files/4.0/samba4.initd,v 1.1 2011/11/01 19:23:53 vostorga Exp $
66
67 extra_started_commands="reload"
68
69 description="The samba daemon init script"
70 description_reload="Reloads the samba daemon"
71
72 depend() {
73 need net
74 }
75
76 start() {
77 ebegin "Starting samba"
78 start-stop-daemon --start --exec /usr/sbin/samba
79 eend $?
80 }
81
82 stop() {
83 ebegin "Stopping samba"
84 start-stop-daemon --stop --pidfile /var/run/samba/samba.pid
85 eend $?
86 }
87
88 reload() {
89 ebegin "Reloading samba"
90 killall -HUP samba
91 eend $?
92 }