1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.0.20a.ebuild,v 1.3 2006/01/29 05:19:31 vapier Exp $
inherit eutils versionator
IUSE_LINGUAS="ja pl"
IUSE="acl async automount cups doc examples kerberos ldap mysql pam postgres
python quotas readline syslog winbind xml xml2 libclamav oav selinux"
RESTRICT="test"
VSCAN_VER=0.3.6
PATCH_VER=0.3.8
MY_P=${PN}-${PV/_/}
MY_PP=${PN}-$(get_major_version)-gentoo-${PATCH_VER}
S2=${WORKDIR}/${MY_P}
S=${S2}/source
PFVSCAN=${PN}-vscan-${VSCAN_VER}
DESCRIPTION="SAMBA is a suite of SMB and CIFS client/server programs for UNIX"
HOMEPAGE="http://www.samba.org/
http://www.openantivirus.org/projects.php"
SRC_URI="mirror://samba/${MY_P}.tar.gz
mirror://samba/old-versions/${MY_P}.tar.gz
oav? ( mirror://sourceforge/openantivirus/${PFVSCAN}.tar.bz2 )
mirror://gentoo/${MY_PP}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
RDEPEND="dev-libs/popt
acl? ( sys-apps/acl )
cups? ( net-print/cups )
ldap? ( kerberos? ( virtual/krb5 ) net-nds/openldap )
mysql? ( dev-db/mysql sys-libs/zlib )
pam? ( virtual/pam )
postgres? ( dev-db/postgresql sys-libs/zlib )
python? ( dev-lang/python )
readline? ( sys-libs/readline )
syslog? ( virtual/logger )
xml? ( dev-libs/libxml2 sys-libs/zlib )
xml2? ( dev-libs/libxml2 sys-libs/zlib )
selinux? ( sec-policy/selinux-samba )"
DEPEND="${RDEPEND}
sys-devel/autoconf
>=sys-apps/sed-4"
PRIVATE_DST=/var/lib/samba/private
PATCHDIR=${WORKDIR}/gentoo/patches
CONFDIR=${WORKDIR}/gentoo/configs
pkg_setup() {
ewarn "3.0.20: New USE flags: syslog, automount, async (default: disabled)"
ebeep
epause
}
src_unpack() {
unpack ${A}; cd ${S2}
rm -rf ${S2}/examples.ORIG
export EPATCH_SUFFIX="patch"
epatch ${PATCHDIR}/general
if use oav ; then
cd ${WORKDIR}
epatch ${PATCHDIR}/vscan
cp -pPR ${WORKDIR}/${PFVSCAN} ${S2}/examples/VFS
fi
# https://bugzilla.samba.org/show_bug.cgi?id=3451
sed -i -e '/include.*fstab.h/d' "${S}"/client/umount.cifs.c
}
src_compile() {
ebegin "Running autoconf"
autoconf
eend $?
local myconf
local mymods
local mylangs
if use xml || use xml2 ; then
mymods="xml,${mymods}"
fi
use mysql && mymods="mysql,${mymods}"
use postgres && mymods="pgsql,${mymods}"
[[ -n "${mymods}" ]] && myconf="--with-expsam=${mymods}"
mylangs="en"
use linguas_ja && mylangs="${mylangs},ja"
use linguas_pl && mylangs="${mylangs},pl"
myconf="${myconf} --with-manpages-langs=${mylangs}"
if use ldap; then
myconf="${myconf} $(use_with ldap) $(use_with kerberos ads) --with-ldapsam"
else
myconf="${myconf} --without-ldapsam"
fi
use winbind && myconf="${myconf} $(use_with winbind) --with-shared-modules=idmap_rid"
econf \
--with-fhs \
--sysconfdir=/etc/samba \
--localstatedir=/var \
--with-configdir=/etc/samba \
--with-libdir=/usr/$(get_libdir)/samba \
--with-swatdir=/usr/share/doc/${PF}/swat \
--with-piddir=/var/run/samba \
--with-lockdir=/var/cache/samba \
--with-logfilebase=/var/log/samba \
--with-privatedir=${PRIVATE_DST} \
--with-libsmbclient \
--without-spinlocks \
$(use_with acl acl-support) \
$(use_with async aio-support) \
$(use_with automount) \
$(use_enable cups) \
$(use_with kerberos krb5) \
$(use_with pam) $(use_with pam pam_smbpass) \
$(use_with python) \
$(use_with quotas) $(use_with quotas sys-quotas) \
$(use_with readline) \
$(use_with kernel_linux smbmount) \
$(use_with syslog) \
${myconf} || die
emake proto || die "SAMBA make proto error"
emake everything || die "SAMBA make everything error"
einfo "make rpctorture"
emake rpctorture || ewarn "rpctorture didn't build"
if use python ; then
python python/setup.py build
fi
# Build samba-vscan plugins
if use oav; then
cd ${S2}/examples/VFS/${PFVSCAN}
econf \
--with-fhs \
--libdir=/usr/$(get_libdir)/samba \
$(use_with libclamav) || die "${PFVSCAN} ./configure failed"
emake || die "Failed to make ${PFVSCAN}"
fi
}
src_install() {
local extra_bins="rpctorture"
make DESTDIR=${D} install-everything || die
# Extra rpctorture progs
exeinto /usr/bin
for i in ${extra_bins}; do
[[ -x ${S}/bin/${i} ]] && doexe ${S}/bin/${i}
einfo "Extra binaries: ${i}"
done
# remove .old stuff from /usr/bin:
rm -f ${D}/usr/bin/*.old
# Nsswitch extensions. Make link for wins and winbind resolvers
dolib.so ${S}/nsswitch/libnss_wins.so
dosym libnss_wins.so /usr/$(get_libdir)/libnss_wins.so.2
if use winbind; then
dolib.so ${S}/nsswitch/libnss_winbind.so
dosym libnss_winbind.so /usr/$(get_libdir)/libnss_winbind.so.2
fi
if use pam; then
exeinto /$(get_libdir)/security
doexe ${S}/bin/pam_smbpass.so
fi
if use pam && use winbind; then
exeinto /$(get_libdir)/security
doexe ${S}/nsswitch/pam_winbind.so
fi
if use kernel_linux; then
# mount backend
dodir /sbin
dosym ../usr/bin/smbmount /sbin/mount.smbfs
dosym ../usr/bin/mount.cifs /sbin/mount.cifs
fi
# bug #46389: samba doesn't create symlink anymore
# beaviour seems to be changed in 3.0.6, see bug #61046
dosym samba/libsmbclient.so /usr/$(get_libdir)/libsmbclient.so.0
dosym samba/libsmbclient.so /usr/$(get_libdir)/libsmbclient.so
# make the smb backend symlink for cups printing support..
if use cups; then
dodir /usr/$(get_libdir)/cups/backend
dosym ../../../bin/smbspool /usr/$(get_libdir)/cups/backend/smb
fi
# VFS plugin modules
if use oav; then
cd ${S2}/examples/VFS/${PFVSCAN}
make install DESTDIR=${D} || die "VFS: vscan error"
insinto /etc/samba
doins ${S2}/examples/VFS/${PFVSCAN}/openantivirus/*conf
fi
# Python extensions
if use python; then
cd ${S}
python python/setup.py install --root=${D} || die
fi
# General config files
insinto /etc/samba
doins ${CONFDIR}/smbusers
newins ${CONFDIR}/smb.conf.example-samba3 smb.conf.example
doins ${CONFDIR}/lmhosts
newpamd ${CONFDIR}/samba.pam samba
use winbind && doins ${CONFDIR}/system-auth-winbind
insinto /etc/xinetd.d
newins ${CONFDIR}/swat.xinetd swat
newinitd ${CONFDIR}/samba-init samba
newconfd ${CONFDIR}/samba-conf samba
if use ldap; then
insinto /etc/openldap/schema
doins ${S2}/examples/LDAP/samba.schema
fi
# dirs
diropts -m0700 ; keepdir ${PRIVATE_DST}
diropts -m1777 ; keepdir /var/spool/samba
diropts -m0755
keepdir /var/{log,run,cache}/samba
keepdir /var/lib/samba/{netlogon,profiles}
keepdir /var/lib/samba/printers/{W32X86,WIN40,W32ALPHA,W32MIPS,W32PPC}
keepdir /usr/$(get_libdir)/samba/{rpc,idmap,auth}
# docs
dodoc ${FILESDIR}/README.gentoo
dodoc ${S2}/{COPYING,Manifest,README,Roadmap,WHATSNEW.txt}
dodoc ${CONFDIR}/nsswitch.conf-wins
use winbind && dodoc ${CONFDIR}/nsswitch.conf-winbind
if use examples; then
docinto examples
cp -pPR ${S2}/examples/* ${D}/usr/share/doc/${PF}/examples
chmod -R 755 `find ${D}/usr/share/doc/${PF}/examples -type d`
chmod -R 644 `find ${D}/usr/share/doc/${PF}/examples ! -type d`
fi
if use oav; then
docinto ${PFVSCAN}
cd ${WORKDIR}/${PFVSCAN}
dodoc AUTHORS COPYING ChangeLog FAQ INSTALL NEWS README TODO
dodoc */*.conf
fi
if ! use doc; then
rm -rf ${D}/usr/share/doc/${PF}/swat/help/{guide,howto,devel}
rm -rf ${D}/usr/share/doc/${PF}/swat/using_samba
fi
# Patch ChangeLog
docinto gentoo
dodoc ${PATCHDIR}/ChangeLog
}
pkg_preinst() {
local PRIVATE_SRC=/etc/samba/private
if [[ ! -r ${ROOT}/${PRIVATE_DST}/secrets.tdb \
&& -r ${ROOT}/${PRIVATE_SRC}/secrets.tdb ]]; then
ebegin "Copying ${ROOT}/${PRIVATE_SRC}/* to ${ROOT}/${PRIVATE_DST}/"
mkdir -p ${IMAGE}/${PRIVATE_DST}
cp -pPRf ${ROOT}/${PRIVATE_SRC}/* ${IMAGE}/${PRIVATE_DST}/
eend $?
fi
if [[ ! -f "${ROOT}/etc/samba/smb.conf" ]]; then
touch ${IMAGE}/etc/samba/smb.conf
fi
}
pkg_postinst() {
einfo "Latest info: README.gentoo in documentation directory"
}
pkg_postrm(){
# If stale docs, and one isn't re-emerging the latest version, removes
# (this is actually a portage bug, though)
[[ -n "${PF}" && ! -f ${ROOT}/usr/lib/${PN}/en.msg ]] && \
rm -rf ${ROOT}/usr/share/doc/${PF}
}
|