Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-fs/samba: samba-3.6.12.ebuild ChangeLog
Date: Mon, 25 Feb 2013 08:17:33
Message-Id: 20130225081730.5460D2171D@flycatcher.gentoo.org
1 zmedico 13/02/25 08:17:30
2
3 Modified: samba-3.6.12.ebuild ChangeLog
4 Log:
5 Fix for prefix and add ~arm-linux and ~x86-linux keywords.
6
7 (Portage version: 2.2.0_alpha163_p13/cvs/Linux i686, signed Manifest commit with key 0xFDE8EF85AE5719A3)
8
9 Revision Changes Path
10 1.5 net-fs/samba/samba-3.6.12.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/samba-3.6.12.ebuild?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/samba-3.6.12.ebuild?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/samba-3.6.12.ebuild?r1=1.4&r2=1.5
15
16 Index: samba-3.6.12.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.6.12.ebuild,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- samba-3.6.12.ebuild 18 Feb 2013 23:25:24 -0000 1.4
23 +++ samba-3.6.12.ebuild 25 Feb 2013 08:17:30 -0000 1.5
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.6.12.ebuild,v 1.4 2013/02/18 23:25:24 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.6.12.ebuild,v 1.5 2013/02/25 08:17:30 zmedico Exp $
29
30 EAPI=4
31
32 @@ -14,7 +14,7 @@
33 SRC_URI="mirror://samba/stable/${MY_P}.tar.gz"
34 LICENSE="GPL-3"
35 SLOT="0"
36 -KEYWORDS="amd64 ~arm hppa ~ia64 ~ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd"
37 +KEYWORDS="amd64 ~arm hppa ~ia64 ~ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
38 IUSE="acl addns ads +aio avahi caps +client cluster cups debug dmapi doc examples fam
39 ldap ldb +netapi pam quota +readline selinux +server +smbclient smbsharemodes
40 swat syslog winbind"
41 @@ -145,9 +145,9 @@
42 # anymore => LDAP?
43 # - --without-dce-dfs and --without-nisplus-home can't be passed to configure but are disabled by default
44 econf ${myconf} \
45 - --with-piddir=/var/run/samba \
46 - --sysconfdir=/etc/samba \
47 - --localstatedir=/var \
48 + --with-piddir="${EPREFIX}"/var/run/samba \
49 + --sysconfdir="${EPREFIX}"/etc/samba \
50 + --localstatedir="${EPREFIX}"/var \
51 $(use_enable debug developer) \
52 --enable-largefile \
53 --enable-socket-wrapper \
54 @@ -161,12 +161,12 @@
55 --disable-dnssd \
56 $(use_enable avahi) \
57 --with-fhs \
58 - --with-privatedir=/var/lib/samba/private \
59 - --with-rootsbindir=/var/cache/samba \
60 - --with-lockdir=/var/cache/samba \
61 - --with-swatdir=/usr/share/doc/${PF}/swat \
62 - --with-configdir=/etc/samba \
63 - --with-logfilebase=/var/log/samba \
64 + --with-privatedir="${EPREFIX}"/var/lib/samba/private \
65 + --with-rootsbindir="${EPREFIX}"/var/cache/samba \
66 + --with-lockdir="${EPREFIX}"/var/cache/samba \
67 + --with-swatdir="${EPREFIX}"/usr/share/doc/${PF}/swat \
68 + --with-configdir="${EPREFIX}"/etc/samba \
69 + --with-logfilebase="${EPREFIX}"/var/log/samba \
70 --with-pammodulesdir=$(getpam_mod_dir) \
71 $(use_with dmapi) \
72 --without-afs \
73 @@ -174,7 +174,7 @@
74 --without-vfs-afsacl \
75 $(use_with ldap) \
76 $(use_with ads) \
77 - $(use_with ads krb5 /usr) \
78 + $(use_with ads krb5 "${EPREFIX}"/usr) \
79 $(use_with ads dnsupdate) \
80 --without-automount \
81 $(use_with pam) \
82 @@ -188,7 +188,7 @@
83 $(use_with smbclient libsmbclient) \
84 $(use_with smbsharemodes libsmbsharemodes) \
85 $(use_with addns libaddns) \
86 - $(use_with cluster ctdb /usr) \
87 + $(use_with cluster ctdb "${EPREFIX}"/usr) \
88 $(use_with cluster cluster-support) \
89 $(use_with acl acl-support) \
90 $(use_with aio aio-support) \
91 @@ -371,7 +371,7 @@
92 if use swat ; then
93 insinto /etc/xinetd.d
94 newins "${CONFDIR}/swat.xinetd" swat
95 - script/installswat.sh "${D}" "${ROOT}/usr/share/doc/${PF}/swat" "${S}"
96 + script/installswat.sh "${ED}" "${EROOT}/usr/share/doc/${PF}/swat" "${S}"
97 fi
98
99 dodoc ../MAINTAINERS.txt ../README* ../Roadmap ../WHATSNEW.txt ../docs/THANKS
100 @@ -418,10 +418,10 @@
101
102 # Remove empty installation directories
103 rmdir --ignore-fail-on-non-empty \
104 - "${D}/usr/$(get_libdir)/samba" \
105 - "${D}/usr"/{sbin,bin} \
106 - "${D}/usr/share"/{man,locale,} \
107 - "${D}/var"/{run,lib/samba/private,lib/samba,lib,cache/samba,cache,} \
108 + "${ED}/usr/$(get_libdir)/samba" \
109 + "${ED}/usr"/{sbin,bin} \
110 + "${ED}/usr/share"/{man,locale,} \
111 + "${ED}/var"/{run,lib/samba/private,lib/samba,lib,cache/samba,cache,} \
112 # || die "tried to remove non-empty dirs, this seems like a bug in the ebuild"
113 }
114
115
116
117
118 1.569 net-fs/samba/ChangeLog
119
120 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?rev=1.569&view=markup
121 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?rev=1.569&content-type=text/plain
122 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?r1=1.568&r2=1.569
123
124 Index: ChangeLog
125 ===================================================================
126 RCS file: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v
127 retrieving revision 1.568
128 retrieving revision 1.569
129 diff -u -r1.568 -r1.569
130 --- ChangeLog 22 Feb 2013 18:40:35 -0000 1.568
131 +++ ChangeLog 25 Feb 2013 08:17:30 -0000 1.569
132 @@ -1,6 +1,9 @@
133 # ChangeLog for net-fs/samba
134 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
135 -# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.568 2013/02/22 18:40:35 ago Exp $
136 +# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.569 2013/02/25 08:17:30 zmedico Exp $
137 +
138 + 25 Feb 2013; Zac Medico <zmedico@g.o> samba-3.6.12.ebuild:
139 + Fix for prefix and add ~arm-linux and ~x86-linux keywords.
140
141 22 Feb 2013; Agostino Sarubbo <ago@g.o> samba-3.5.21.ebuild:
142 Stable for arm, wrt bug #454798