r5555: current with 3.0 tree as of r5548; getting ready for 3.0.12pre1
[Samba.git] / packaging / RedHat / samba.spec.tmpl
blobd5124d05edbea97c39c4b28655a1b694b41fe440
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
5 Vendor: Samba Team
6 Name: samba
7 Version: PVERSION
8 Release: PRELEASE
9 License: GNU GPL version 2
10 Group: Networking
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
25 Prefix: /usr
27 %description
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 
34 frame) protocol.
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.
42 %changelog
43 * Mon Nov 18 2002 Gerald Carter <jerry@samba.org>
44   - removed change log entries since history
45     is being maintained in CVS
47 %prep
48 %setup
50 %build
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
65 cd source
67 %ifarch ia64
68 libtoolize --copy --force     # get it to recognize IA-64
69 autoheader
70 autoconf
71 EXTRA="-D_LARGEFILE64_SOURCE"
72 %endif
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
77         NUMCPU=1;
78 fi 
80 ## run autogen if missing the configure script
81 if [ ! -f "configure" ]; then
82         ./autogen.sh
85 CFLAGS="$RPM_OPT_FLAGS $EXTRA" ./configure \
86         --prefix=%{prefix} \
87         --localstatedir=/var \
88         --with-configdir=/etc/samba \
89         --with-privatedir=/etc/samba \
90         --with-fhs \
91         --with-quotas \
92         --with-smbmount \
93         --with-pam \
94         --with-pam_smbpass \
95         --with-syslog \
96         --with-utmp \
97         --with-sambabook=%{prefix}/share/swat/using_samba \
98         --with-swatdir=%{prefix}/share/swat \
99         --with-shared-modules=idmap_rid \
100         --with-libsmbclient 
101 make -j${NUMCPU} proto
102 make -j${NUMCPU} all modules nsswitch/libnss_wins.so 
103 make -j${NUMCPU} debug2html
105 # Remove some permission bits to avoid to many dependencies
106 find examples docs -type f | xargs -r chmod -x
108 %install
109 rm -rf $RPM_BUILD_ROOT
110 mkdir -p $RPM_BUILD_ROOT
111 mkdir -p $RPM_BUILD_ROOT/sbin
112 mkdir -p $RPM_BUILD_ROOT/etc/samba
113 mkdir -p $RPM_BUILD_ROOT/etc/{logrotate.d,pam.d,samba}
114 mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
115 mkdir -p $RPM_BUILD_ROOT%{prefix}/{bin,sbin}
116 mkdir -p $RPM_BUILD_ROOT%{prefix}/share/swat/{images,help,include,using_samba}
117 mkdir -p $RPM_BUILD_ROOT%{prefix}/share/swat/using_samba/{figs,gifs}
118 mkdir -p $RPM_BUILD_ROOTMANDIR_MACRO
119 mkdir -p $RPM_BUILD_ROOT/var/lib/samba
120 mkdir -p $RPM_BUILD_ROOT/var/{log,run}/samba
121 mkdir -p $RPM_BUILD_ROOT/var/spool/samba
122 mkdir -p $RPM_BUILD_ROOT/lib/security
123 mkdir -p $RPM_BUILD_ROOT%{prefix}/lib/samba/vfs
124 mkdir -p $RPM_BUILD_ROOT%{prefix}/{lib,include}
126 # Install standard binary files
127 for i in nmblookup smbclient smbpasswd smbstatus testparm testprns \
128         rpcclient smbspool smbcacls smbcontrol wbinfo smbmnt net \
129         smbcacls pdbedit tdbbackup smbtree ntlm_auth smbcquotas
131         install -m755 source/bin/$i $RPM_BUILD_ROOT%{prefix}/bin
132 done
134 for i in mksmbpasswd.sh smbtar findsmb
136         install -m755 source/script/$i $RPM_BUILD_ROOT%{prefix}/bin
137 done
139 # Install secure binary files
140 for i in smbd nmbd swat smbmount smbumount debug2html winbindd 
142         install -m755 source/bin/$i $RPM_BUILD_ROOT%{prefix}/sbin
143 done
145 # we need a symlink for mount to recognise the smb and smbfs filesystem types
146 ln -sf %{prefix}/sbin/smbmount $RPM_BUILD_ROOT/sbin/mount.smbfs
147 ln -sf %{prefix}/sbin/smbmount $RPM_BUILD_ROOT/sbin/mount.smb
149 # This allows us to get away without duplicating code that 
150 #  sombody else can maintain for us.  
151 cd source
152 make DESTDIR=$RPM_BUILD_ROOT \
153         BASEDIR=/usr \
154         CONFIGDIR=/etc/samba \
155         LIBDIR=%{prefix}/lib/samba \
156         VARDIR=/var \
157         SBINDIR=%{prefix}/sbin \
158         BINDIR=%{prefix}/bin \
159         MANDIR=MANDIR_MACRO \
160         SWATDIR=%{prefix}/share/swat \
161         SAMBABOOK=%{prefix}/share/swat/using_samba \
162         installman installswat installdat installmodules
163 cd ..
165 ## don't duplicate the docs.  These are installed with SWAT
166 rm -rf docs/htmldocs
167 rm -rf docs/manpages
168 ( cd docs; ln -s %{prefix}/share/swat/help htmldocs )
172 # Install the nsswitch wins library
173 install -m755 source/nsswitch/libnss_wins.so $RPM_BUILD_ROOT/lib
174 ( cd $RPM_BUILD_ROOT/lib; ln -sf libnss_wins.so libnss_wins.so.2 )
176 # Install winbind shared libraries
177 install -m755 source/nsswitch/libnss_winbind.so $RPM_BUILD_ROOT/lib
178 ( cd $RPM_BUILD_ROOT/lib; ln -sf libnss_winbind.so libnss_winbind.so.2 )
179 install -m755 source/nsswitch/pam_winbind.so $RPM_BUILD_ROOT/lib/security
181 # Install pam_smbpass.so
182 install -m755 source/bin/pam_smbpass.so $RPM_BUILD_ROOT/lib/security
184 # libsmbclient
185 install -m 755 source/bin/libsmbclient.so $RPM_BUILD_ROOT%{prefix}/lib/
186 install -m 755 source/bin/libsmbclient.a $RPM_BUILD_ROOT%{prefix}/lib/
187 install -m 644 source/include/libsmbclient.h $RPM_BUILD_ROOT%{prefix}/include/
189 # Install the miscellany
190 install -m755 packaging/RedHat/smbprint $RPM_BUILD_ROOT%{prefix}/bin
191 install -m755 packaging/RedHat/smb.init $RPM_BUILD_ROOT/etc/rc.d/init.d/smb
192 install -m755 packaging/RedHat/winbind.init $RPM_BUILD_ROOT/etc/rc.d/init.d/winbind
193 install -m755 packaging/RedHat/smb.init $RPM_BUILD_ROOT%{prefix}/sbin/samba
194 install -m644 packaging/RedHat/samba.log $RPM_BUILD_ROOT/etc/logrotate.d/samba
195 install -m644 packaging/RedHat/smb.conf $RPM_BUILD_ROOT/etc/samba/smb.conf
196 install -m644 packaging/RedHat/smbusers $RPM_BUILD_ROOT/etc/samba/smbusers
197 install -m644 packaging/RedHat/samba.pamd $RPM_BUILD_ROOT/etc/pam.d/samba
198 install -m644 packaging/RedHat/samba.pamd.stack $RPM_BUILD_ROOT/etc/samba/samba.stack
199 install -m644 packaging/RedHat/samba.xinetd $RPM_BUILD_ROOT/etc/samba/samba.xinetd
200 echo 127.0.0.1 localhost > $RPM_BUILD_ROOT/etc/samba/lmhosts
202 # Remove "*.old" files
203 find $RPM_BUILD_ROOT -name "*.old" -exec rm -f {} \;
206 ## Clean out man pages for tools not installed here
208 rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/editreg.1*
209 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/log2pcap.1*
210 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/smbsh.1*
211 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/smbget.1*
212 rm -f $RPM_BUILD_ROOT/%{_mandir}/man8/mount.cifs.8*
215 %clean
216 rm -rf $RPM_BUILD_ROOT
218 %post
219 ## 
220 ## only needed if this is a new install (not an upgrade)
222 if [ "$1" -eq "1" ]; then
223         /sbin/chkconfig --add smb
224         /sbin/chkconfig --add winbind
225         /sbin/chkconfig smb off
226         /sbin/chkconfig winbind off
230 ## we only have to wory about this if we are upgrading
232 if [ "$1" -eq "2" ]; then
233         if [ -f /etc/smb.conf -a ! -f /etc/samba/smb.conf ]; then
234                 echo "Moving old /etc/smb.conf to /etc/samba/smb.conf"
235                 mv /etc/smb.conf /etc/samba/smb.conf
236         fi
238         if [ -f /etc/smbusers -a ! -f /etc/samba/smbusers ]; then
239                 echo "Moving old /etc/smbusers to /etc/samba/smbusers"
240                 mv /etc/smbusers /etc/samba/smbusers
241         fi
243         if [ -f /etc/lmhosts -a ! -f /etc/samba/lmhosts ]; then
244                 echo "Moving old /etc/lmhosts to /etc/samba/lmhosts"
245                 mv /etc/lmhosts /etc/samba/lmhosts
246         fi
248         if [ -f /etc/MACHINE.SID -a ! -f /etc/samba/MACHINE.SID ]; then
249                 echo "Moving old /etc/MACHINE.SID to /etc/samba/MACHINE.SID"
250                 mv /etc/MACHINE.SID /etc/samba/MACHINE.SID
251         fi
253         if [ -f /etc/smbpasswd -a ! -f /etc/samba/smbpasswd ]; then
254                 echo "Moving old /etc/smbpasswd to /etc/samba/smbpasswd"
255                 mv /etc/smbpasswd /etc/samba/smbpasswd
256         fi
258         #
259         # For 2.2.1 we move the tdb files from /var/lock/samba to /var/cache/samba
260         # to preserve across reboots.
261         #
262         for i in /var/lock/samba/*.tdb; do
263                 if [ -f $i ]; then
264                         newname="/var/lib/samba/`basename $i`"
265                         echo "Moving $i to $newname"
266                         mv $i $newname
267                 fi
268         done
270         #
271         # For 3.0.1 we move the tdb files from /var/cache/samba to /var/lib/samba
272         #
273         echo "Moving tdb files in /var/cache/samba/*.tdb to /var/lib/samba/*.tdb"
274         for i in /var/cache/samba/*.tdb; do
275                 if [ -f $i ]; then
276                         newname="/var/lib/samba/`basename $i`"
277                         echo "Moving $i to $newname"
278                         mv $i $newname
279                 fi
280         done
284 ## New things
287 # Add swat entry to /etc/services if not already there.
288 if [ ! "`grep ^\s**swat /etc/services`" ]; then
289         echo 'swat              901/tcp                         # Add swat service used via inetd' >> /etc/services
292 # Add swat entry to /etc/inetd.conf if needed.
293 if [ -f /etc/inetd.conf ]; then
294         if [ ! "`grep ^\s*swat /etc/inetd.conf`" ]; then
295                 echo 'swat      stream  tcp     nowait.400      root    %{prefix}/sbin/swat swat' >> /etc/inetd.conf
296         killall -HUP inetd || :
297         fi
300 # Add swat entry to xinetd.d if needed.
301 if [ -d /etc/xinetd.d -a ! -f /etc/xinetd.d/swat ]; then
302         mv /etc/samba/samba.xinetd /etc/xinetd.d/swat
303 else
304         rm -f /etc/samba/samba.xinetd
307 # Install the correct version of the samba pam file
308 if [ -f /lib/security/pam_stack.so ]; then
309         echo "Installing stack version of /etc/pam.d/samba..."
310         mv /etc/samba/samba.stack /etc/pam.d/samba
311 else
312         echo "Installing non-stack version of /etc/pam.d/samba..."
313         rm -f /etc/samba/samba.stack
316 ## call ldconfig to create the version symlink for libsmbclient.so
317 /sbin/ldconfig
319 %preun
320 if [ "$1" -eq "0" ] ; then
321         /sbin/chkconfig --del smb
322         /sbin/chkconfig --del winbind
324         # We want to remove the browse.dat and wins.dat files 
325         # so they can not interfer with a new version of samba!
326         if [ -e /var/lib/samba/browse.dat ]; then
327                 rm -f /var/lib/samba/browse.dat
328         fi
329         if [ -e /var/lib/samba/wins.dat ]; then
330                 rm -f /var/lib/samba/wins.dat
331         fi
333         # Remove the transient tdb files.
334         if [ -e /var/lib/samba/brlock.tdb ]; then
335                 rm -f /var/lib/samba/brlock.tdb
336         fi
338         if [ -e /var/lib/samba/unexpected.tdb ]; then
339                 rm -f /var/lib/samba/unexpected.tdb
340         fi
342         if [ -e /var/lib/samba/connections.tdb ]; then
343                 rm -f /var/lib/samba/connections.tdb
344         fi
346         if [ -e /var/lib/samba/locking.tdb ]; then
347                 rm -f /var/lib/samba/locking.tdb
348         fi
350         if [ -e /var/lib/samba/messages.tdb ]; then
351                 rm -f /var/lib/samba/messages.tdb
352         fi
355 %postun
356 # Only delete remnants of samba if this is the final deletion.
357 if [ "$1" -eq  "0" ] ; then
358     if [ -x /etc/pam.d/samba ]; then
359       rm -f /etc/pam.d/samba
360     fi
362     if [ -e /var/log/samba ]; then
363       rm -rf /var/log/samba
364     fi
366     if [ -e /var/lib/samba ]; then
367       rm -rf /var/lib/samba
368     fi
370     # Remove swat entries from /etc/inetd.conf and /etc/services
371     cd /etc
372     tmpfile=/etc/tmp.$$
373     if [ -f /etc/inetd.conf ]; then
374       # preserve inetd.conf permissions.
375       cp -p /etc/inetd.conf $tmpfile
376       sed -e '/^[:space:]*swat.*$/d' /etc/inetd.conf > $tmpfile
377       mv $tmpfile inetd.conf
378     fi
380     # preserve services permissions.
381     cp -p /etc/services $tmpfile
382     sed -e '/^[:space:]*swat.*$/d' /etc/services > $tmpfile
383     mv $tmpfile /etc/services
385     # Remove swat entry from /etc/xinetd.d
386     if [ -f /etc/xinetd.d/swat ]; then
387       rm -r /etc/xinetd.d/swat
388     fi
391 /sbin/ldconfig
393 %files
394 %defattr(-,root,root)
395 %doc README COPYING Manifest Read-Manifest-Now
396 %doc WHATSNEW.txt Roadmap
397 %doc docs
398 %doc examples
399 %{prefix}/sbin/smbd
400 %{prefix}/sbin/nmbd
401 %{prefix}/sbin/swat
402 %{prefix}/bin/smbmnt
403 %{prefix}/sbin/smbmount
404 %{prefix}/sbin/smbumount
405 %{prefix}/sbin/winbindd
406 %{prefix}/sbin/samba
407 %{prefix}/sbin/debug2html
408 /sbin/mount.smbfs
409 /sbin/mount.smb
410 %{prefix}/bin/mksmbpasswd.sh
411 %{prefix}/bin/smbclient
412 %{prefix}/bin/smbspool
413 %{prefix}/bin/rpcclient
414 %{prefix}/bin/testparm
415 %{prefix}/bin/testprns
416 %{prefix}/bin/findsmb
417 %{prefix}/bin/smbstatus
418 %{prefix}/bin/nmblookup
419 %{prefix}/bin/smbpasswd
420 %{prefix}/bin/smbtar
421 %{prefix}/bin/smbprint
422 %{prefix}/bin/smbcontrol
423 %{prefix}/bin/wbinfo
424 %{prefix}/bin/net
425 %{prefix}/bin/ntlm_auth
426 %{prefix}/bin/smbcquotas
427 %{prefix}/bin/smbcacls
428 %{prefix}/bin/pdbedit
429 %{prefix}/bin/tdbbackup
430 %{prefix}/bin/smbtree
431 %attr(755,root,root) /lib/libnss_wins.s*
432 %attr(755,root,root) %{prefix}/lib/samba/vfs/*.so
433 %attr(755,root,root) %{prefix}/lib/samba/charset/*.so
434 %attr(755,root,root) %{prefix}/lib/samba/idmap/*.so
435 #%attr(755,root,root) %{prefix}/lib/samba/pdb/*.so
436 %attr(755,root,root) %{prefix}/lib/samba/*.dat
437 %attr(755,root,root) %{prefix}/lib/samba/*.msg
438 %{prefix}/include/libsmbclient.h
439 %{prefix}/lib/libsmbclient.a
440 %{prefix}/lib/libsmbclient.so
441 %{prefix}/share/swat/help/*
442 %{prefix}/share/swat/images/*
443 %{prefix}/share/swat/include/*.html
444 %{prefix}/share/swat/lang/*/help/*
445 %{prefix}/share/swat/lang/*/images/*
446 %{prefix}/share/swat/using_samba/*
447 %config(noreplace) /etc/samba/lmhosts
448 %config(noreplace) /etc/samba/smb.conf
449 %config(noreplace) /etc/samba/smbusers
450 /etc/samba/samba.stack
451 /etc/samba/samba.xinetd
452 /etc/rc.d/init.d/smb
453 /etc/rc.d/init.d/winbind
454 /etc/logrotate.d/samba
455 %config(noreplace) /etc/pam.d/samba
456 MANDIR_MACRO/man1/*
457 MANDIR_MACRO/man5/*
458 MANDIR_MACRO/man7/*
459 MANDIR_MACRO/man8/*
460 %attr(755,root,root) %dir /var/lib/samba
461 %dir /var/log/samba
462 %dir /var/run/samba
463 %attr(1777,root,root) %dir /var/spool/samba
464 %attr(-,root,root) /lib/libnss_winbind.so*
465 %attr(-,root,root) /lib/security/pam_winbind.so
466 %attr(-,root,root) /lib/security/pam_smbpass.so