1 ## grab the major and minor version of rpm
2 %define rpm_version `rpm --version | awk '{print $3}' | awk -F. '{print $1$2}'`
4 Summary: Samba SMB client and server
9 License: GNU GPL version 2
11 Source: http://download.samba.org/samba/ftp/samba-%{version}.tar.bz2
13 # Don't depend on Net::LDAP
14 # one filter for RH 8 and one for 9
15 Source998: filter-requires-samba_rh8.sh
16 Source999: filter-requires-samba_rh9.sh
18 Packager: Gerald Carter [Samba-Team] <jerry@samba.org>
19 Requires: pam openldap krb5-libs
20 BuildRequires: openldap-devel krb5-devel pam-devel
21 Prereq: chkconfig fileutils /sbin/ldconfig
22 Provides: samba = %{version}
23 Obsoletes: samba-common, samba-client, samba-swat
24 BuildRoot: %{_tmppath}/%{name}-%{version}-root
28 Samba provides an SMB/CIFS server which can be used to provide
29 network file and print services to SMB/CIFS clients, including
30 various versions of MS Windows, OS/2, and other Linux machines.
31 Samba also provides some SMB clients, which complement the
32 built-in SMB filesystem in Linux. Samba uses NetBIOS over TCP/IP
33 (NetBT) protocols and does NOT need NetBEUI (Microsoft Raw NetBIOS
36 Samba 3.0 also introduces UNICODE support and kerberos/ldap
37 integration as a member server in a Windows 2000 domain.
39 Please refer to the WHATSNEW.txt document for fixup information.
40 docs directory for implementation details.
43 * Mon Nov 18 2002 Gerald Carter <jerry@samba.org>
44 - removed change log entries since history
45 is being maintained in CVS
52 # Working around perl dependency problem from docs
53 # Only > RH 8.0 seems to care here
55 echo "rpm_version == %{rpm_version}"
56 if [ "%{rpm_version}" == "42" ]; then
57 %define __perl_requires %{SOURCE999}
58 echo "%{__perl_requires}"
59 elif [ "%{rpm_version}" == "41" ]; then
60 %define __find_requires %{SOURCE998}
61 echo "%{__find_requires}"
64 ## Build main Samba source
68 libtoolize --copy --force # get it to recognize IA-64
71 EXTRA="-D_LARGEFILE64_SOURCE"
74 ## Get number of cpu's, default for 1 cpu on error
75 NUMCPU=`grep processor /proc/cpuinfo | wc -l`
76 if [ $NUMCPU -eq 0 ]; then
80 ## run autogen if missing the configure script
81 if [ ! -f "configure" ]; then
85 CFLAGS="$RPM_OPT_FLAGS $EXTRA" ./configure \
87 --localstatedir=/var \
88 --with-configdir=/etc/samba \
89 --with-privatedir=/etc/samba \
97 --with-sambabook=%{prefix}/share/swat/using_samba \
98 --with-swatdir=%{prefix}/share/swat \
100 make -j${NUMCPU} proto
101 make -j${NUMCPU} all nsswitch/libnss_wins.so
102 make -j${NUMCPU} debug2html
104 # Remove some permission bits to avoid to many dependencies
105 find examples docs -type f | xargs -r chmod -x
108 rm -rf $RPM_BUILD_ROOT
109 mkdir -p $RPM_BUILD_ROOT
110 mkdir -p $RPM_BUILD_ROOT/sbin
111 mkdir -p $RPM_BUILD_ROOT/etc/samba
112 mkdir -p $RPM_BUILD_ROOT/etc/{logrotate.d,pam.d,samba}
113 mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
114 mkdir -p $RPM_BUILD_ROOT%{prefix}/{bin,sbin}
115 mkdir -p $RPM_BUILD_ROOT%{prefix}/share/swat/{images,help,include,using_samba}
116 mkdir -p $RPM_BUILD_ROOT%{prefix}/share/swat/using_samba/{figs,gifs}
117 mkdir -p $RPM_BUILD_ROOTMANDIR_MACRO
118 mkdir -p $RPM_BUILD_ROOT/var/lib/samba
119 mkdir -p $RPM_BUILD_ROOT/var/{log,run}/samba
120 mkdir -p $RPM_BUILD_ROOT/var/spool/samba
121 mkdir -p $RPM_BUILD_ROOT/lib/security
122 mkdir -p $RPM_BUILD_ROOT%{prefix}/lib/samba/vfs
123 mkdir -p $RPM_BUILD_ROOT%{prefix}/{lib,include}
125 # Install standard binary files
126 for i in nmblookup smbclient smbpasswd smbstatus testparm testprns \
127 rpcclient smbspool smbcacls smbcontrol wbinfo smbmnt net \
128 smbcacls pdbedit tdbbackup smbtree ntlm_auth smbcquotas
130 install -m755 source/bin/$i $RPM_BUILD_ROOT%{prefix}/bin
133 for i in mksmbpasswd.sh smbtar findsmb
135 install -m755 source/script/$i $RPM_BUILD_ROOT%{prefix}/bin
138 # Install secure binary files
139 for i in smbd nmbd swat smbmount smbumount debug2html winbindd
141 install -m755 source/bin/$i $RPM_BUILD_ROOT%{prefix}/sbin
144 # we need a symlink for mount to recognise the smb and smbfs filesystem types
145 ln -sf %{prefix}/sbin/smbmount $RPM_BUILD_ROOT/sbin/mount.smbfs
146 ln -sf %{prefix}/sbin/smbmount $RPM_BUILD_ROOT/sbin/mount.smb
148 # This allows us to get away without duplicating code that
149 # sombody else can maintain for us.
151 make DESTDIR=$RPM_BUILD_ROOT \
153 CONFIGDIR=/etc/samba \
154 LIBDIR=%{prefix}/lib/samba \
156 SBINDIR=%{prefix}/sbin \
157 BINDIR=%{prefix}/bin \
158 MANDIR=MANDIR_MACRO \
159 SWATDIR=%{prefix}/share/swat \
160 SAMBABOOK=%{prefix}/share/swat/using_samba \
161 installman installswat installdat installmodules
164 ## don't duplicate the docs. These are installed with SWAT
167 ( cd docs; ln -s %{prefix}/share/swat/help htmldocs )
171 # Install the nsswitch wins library
172 install -m755 source/nsswitch/libnss_wins.so $RPM_BUILD_ROOT/lib
173 ( cd $RPM_BUILD_ROOT/lib; ln -sf libnss_wins.so libnss_wins.so.2 )
175 # Install winbind shared libraries
176 install -m755 source/nsswitch/libnss_winbind.so $RPM_BUILD_ROOT/lib
177 ( cd $RPM_BUILD_ROOT/lib; ln -sf libnss_winbind.so libnss_winbind.so.2 )
178 install -m755 source/nsswitch/pam_winbind.so $RPM_BUILD_ROOT/lib/security
180 # Install pam_smbpass.so
181 install -m755 source/bin/pam_smbpass.so $RPM_BUILD_ROOT/lib/security
184 install -m 755 source/bin/libsmbclient.so $RPM_BUILD_ROOT%{prefix}/lib/
185 install -m 755 source/bin/libsmbclient.a $RPM_BUILD_ROOT%{prefix}/lib/
186 install -m 644 source/include/libsmbclient.h $RPM_BUILD_ROOT%{prefix}/include/
188 # Install the miscellany
189 install -m755 packaging/RedHat/smbprint $RPM_BUILD_ROOT%{prefix}/bin
190 install -m755 packaging/RedHat/smb.init $RPM_BUILD_ROOT/etc/rc.d/init.d/smb
191 install -m755 packaging/RedHat/winbind.init $RPM_BUILD_ROOT/etc/rc.d/init.d/winbind
192 install -m755 packaging/RedHat/smb.init $RPM_BUILD_ROOT%{prefix}/sbin/samba
193 install -m644 packaging/RedHat/samba.log $RPM_BUILD_ROOT/etc/logrotate.d/samba
194 install -m644 packaging/RedHat/smb.conf $RPM_BUILD_ROOT/etc/samba/smb.conf
195 install -m644 packaging/RedHat/smbusers $RPM_BUILD_ROOT/etc/samba/smbusers
196 install -m644 packaging/RedHat/samba.pamd $RPM_BUILD_ROOT/etc/pam.d/samba
197 install -m644 packaging/RedHat/samba.pamd.stack $RPM_BUILD_ROOT/etc/samba/samba.stack
198 install -m644 packaging/RedHat/samba.xinetd $RPM_BUILD_ROOT/etc/samba/samba.xinetd
199 echo 127.0.0.1 localhost > $RPM_BUILD_ROOT/etc/samba/lmhosts
201 # Remove "*.old" files
202 find $RPM_BUILD_ROOT -name "*.old" -exec rm -f {} \;
205 ## Clean out man pages for tools not installed here
207 rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/editreg.1*
208 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/log2pcap.1*
209 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/smbsh.1*
210 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/smbget.1*
211 rm -f $RPM_BUILD_ROOT/%{_mandir}/man8/mount.cifs.8*
215 rm -rf $RPM_BUILD_ROOT
219 ## only needed if this is a new install (not an upgrade)
221 if [ "$1" -eq "1" ]; then
222 /sbin/chkconfig --add smb
223 /sbin/chkconfig --add winbind
224 /sbin/chkconfig smb off
225 /sbin/chkconfig winbind off
229 ## we only have to wory about this if we are upgrading
231 if [ "$1" -eq "2" ]; then
232 if [ -f /etc/smb.conf -a ! -f /etc/samba/smb.conf ]; then
233 echo "Moving old /etc/smb.conf to /etc/samba/smb.conf"
234 mv /etc/smb.conf /etc/samba/smb.conf
237 if [ -f /etc/smbusers -a ! -f /etc/samba/smbusers ]; then
238 echo "Moving old /etc/smbusers to /etc/samba/smbusers"
239 mv /etc/smbusers /etc/samba/smbusers
242 if [ -f /etc/lmhosts -a ! -f /etc/samba/lmhosts ]; then
243 echo "Moving old /etc/lmhosts to /etc/samba/lmhosts"
244 mv /etc/lmhosts /etc/samba/lmhosts
247 if [ -f /etc/MACHINE.SID -a ! -f /etc/samba/MACHINE.SID ]; then
248 echo "Moving old /etc/MACHINE.SID to /etc/samba/MACHINE.SID"
249 mv /etc/MACHINE.SID /etc/samba/MACHINE.SID
252 if [ -f /etc/smbpasswd -a ! -f /etc/samba/smbpasswd ]; then
253 echo "Moving old /etc/smbpasswd to /etc/samba/smbpasswd"
254 mv /etc/smbpasswd /etc/samba/smbpasswd
258 # For 2.2.1 we move the tdb files from /var/lock/samba to /var/cache/samba
259 # to preserve across reboots.
261 for i in /var/lock/samba/*.tdb; do
263 newname="/var/lib/samba/`basename $i`"
264 echo "Moving $i to $newname"
270 # For 3.0.1 we move the tdb files from /var/cache/samba to /var/lib/samba
272 echo "Moving tdb files in /var/cache/samba/*.tdb to /var/lib/samba/*.tdb"
273 for i in /var/cache/samba/*.tdb; do
275 newname="/var/lib/samba/`basename $i`"
276 echo "Moving $i to $newname"
286 # Add swat entry to /etc/services if not already there.
287 if [ ! "`grep ^\s**swat /etc/services`" ]; then
288 echo 'swat 901/tcp # Add swat service used via inetd' >> /etc/services
291 # Add swat entry to /etc/inetd.conf if needed.
292 if [ -f /etc/inetd.conf ]; then
293 if [ ! "`grep ^\s*swat /etc/inetd.conf`" ]; then
294 echo 'swat stream tcp nowait.400 root %{prefix}/sbin/swat swat' >> /etc/inetd.conf
295 killall -HUP inetd || :
299 # Add swat entry to xinetd.d if needed.
300 if [ -d /etc/xinetd.d -a ! -f /etc/xinetd.d/swat ]; then
301 mv /etc/samba/samba.xinetd /etc/xinetd.d/swat
303 rm -f /etc/samba/samba.xinetd
306 # Install the correct version of the samba pam file
307 if [ -f /lib/security/pam_stack.so ]; then
308 echo "Installing stack version of /etc/pam.d/samba..."
309 mv /etc/samba/samba.stack /etc/pam.d/samba
311 echo "Installing non-stack version of /etc/pam.d/samba..."
312 rm -f /etc/samba/samba.stack
315 ## call ldconfig to create the version symlink for libsmbclient.so
319 if [ "$1" -eq "0" ] ; then
320 /sbin/chkconfig --del smb
321 /sbin/chkconfig --del winbind
323 # We want to remove the browse.dat and wins.dat files
324 # so they can not interfer with a new version of samba!
325 if [ -e /var/lib/samba/browse.dat ]; then
326 rm -f /var/lib/samba/browse.dat
328 if [ -e /var/lib/samba/wins.dat ]; then
329 rm -f /var/lib/samba/wins.dat
332 # Remove the transient tdb files.
333 if [ -e /var/lib/samba/brlock.tdb ]; then
334 rm -f /var/lib/samba/brlock.tdb
337 if [ -e /var/lib/samba/unexpected.tdb ]; then
338 rm -f /var/lib/samba/unexpected.tdb
341 if [ -e /var/lib/samba/connections.tdb ]; then
342 rm -f /var/lib/samba/connections.tdb
345 if [ -e /var/lib/samba/locking.tdb ]; then
346 rm -f /var/lib/samba/locking.tdb
349 if [ -e /var/lib/samba/messages.tdb ]; then
350 rm -f /var/lib/samba/messages.tdb
355 # Only delete remnants of samba if this is the final deletion.
356 if [ "$1" -eq "0" ] ; then
357 if [ -x /etc/pam.d/samba ]; then
358 rm -f /etc/pam.d/samba
361 if [ -e /var/log/samba ]; then
362 rm -rf /var/log/samba
365 if [ -e /var/lib/samba ]; then
366 rm -rf /var/lib/samba
369 # Remove swat entries from /etc/inetd.conf and /etc/services
372 if [ -f /etc/inetd.conf ]; then
373 # preserve inetd.conf permissions.
374 cp -p /etc/inetd.conf $tmpfile
375 sed -e '/^[:space:]*swat.*$/d' /etc/inetd.conf > $tmpfile
376 mv $tmpfile inetd.conf
379 # preserve services permissions.
380 cp -p /etc/services $tmpfile
381 sed -e '/^[:space:]*swat.*$/d' /etc/services > $tmpfile
382 mv $tmpfile /etc/services
384 # Remove swat entry from /etc/xinetd.d
385 if [ -f /etc/xinetd.d/swat ]; then
386 rm -r /etc/xinetd.d/swat
393 %defattr(-,root,root)
394 %doc README COPYING Manifest Read-Manifest-Now
395 %doc WHATSNEW.txt Roadmap
402 %{prefix}/sbin/smbmount
403 %{prefix}/sbin/smbumount
404 %{prefix}/sbin/winbindd
406 %{prefix}/sbin/debug2html
409 %{prefix}/bin/mksmbpasswd.sh
410 %{prefix}/bin/smbclient
411 %{prefix}/bin/smbspool
412 %{prefix}/bin/rpcclient
413 %{prefix}/bin/testparm
414 %{prefix}/bin/testprns
415 %{prefix}/bin/findsmb
416 %{prefix}/bin/smbstatus
417 %{prefix}/bin/nmblookup
418 %{prefix}/bin/smbpasswd
420 %{prefix}/bin/smbprint
421 %{prefix}/bin/smbcontrol
424 %{prefix}/bin/ntlm_auth
425 %{prefix}/bin/smbcquotas
426 %{prefix}/bin/smbcacls
427 %{prefix}/bin/pdbedit
428 %{prefix}/bin/tdbbackup
429 %{prefix}/bin/smbtree
430 %attr(755,root,root) /lib/libnss_wins.s*
431 %attr(755,root,root) %{prefix}/lib/samba/vfs/*.so
432 %attr(755,root,root) %{prefix}/lib/samba/charset/*.so
433 #%attr(755,root,root) %{prefix}/lib/samba/pdb/*.so
434 %attr(755,root,root) %{prefix}/lib/samba/*.dat
435 %attr(755,root,root) %{prefix}/lib/samba/*.msg
436 %{prefix}/include/libsmbclient.h
437 %{prefix}/lib/libsmbclient.a
438 %{prefix}/lib/libsmbclient.so
439 %{prefix}/share/swat/help/*
440 %{prefix}/share/swat/images/*
441 %{prefix}/share/swat/include/*.html
442 %{prefix}/share/swat/lang/*/help/*
443 %{prefix}/share/swat/lang/*/images/*
444 %{prefix}/share/swat/using_samba/*
445 %config(noreplace) /etc/samba/lmhosts
446 %config(noreplace) /etc/samba/smb.conf
447 %config(noreplace) /etc/samba/smbusers
448 /etc/samba/samba.stack
449 /etc/samba/samba.xinetd
451 /etc/rc.d/init.d/winbind
452 /etc/logrotate.d/samba
453 %config(noreplace) /etc/pam.d/samba
458 %attr(755,root,root) %dir /var/lib/samba
461 %attr(1777,root,root) %dir /var/spool/samba
462 %attr(-,root,root) /lib/libnss_winbind.so*
463 %attr(-,root,root) /lib/security/pam_winbind.so
464 %attr(-,root,root) /lib/security/pam_smbpass.so