r881: BUG 1357: add pam-devel to build requirements
[ira/wip.git] / packaging / RedHat / samba.spec.tmpl
1 ## grab the major and minor version of rpm 
2 %define rpm_version `rpm --version | awk '{print $3}' | awk -F. '{print $1$2}'`
3
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
12
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
17
18 Packager: Gerald Carter [Samba-Team] <jerry@samba.org>
19 Requires: pam pam-devel kernel glibc
20 Prereq: chkconfig fileutils /sbin/ldconfig
21 Provides: samba = %{version}
22 Obsoletes: samba-common, samba-client, samba-swat
23 BuildRoot: %{_tmppath}/%{name}-%{version}-root
24 Prefix: /usr
25
26 %description
27 Samba provides an SMB/CIFS server which can be used to provide
28 network file and print services to SMB/CIFS clients, including 
29 various versions of MS Windows, OS/2, and other Linux machines. 
30 Samba also provides some SMB clients, which complement the 
31 built-in SMB filesystem in Linux. Samba uses NetBIOS over TCP/IP 
32 (NetBT) protocols and does NOT need NetBEUI (Microsoft Raw NetBIOS 
33 frame) protocol.
34
35 Samba 3.0 also introduces UNICODE support and kerberos/ldap
36 integration as a member server in a Windows 2000 domain.
37
38 Please refer to the WHATSNEW.txt document for fixup information.
39 docs directory for implementation details.
40
41 %changelog
42 * Mon Nov 18 2002 Gerald Carter <jerry@samba.org>
43   - removed change log entries since history
44     is being maintained in CVS
45
46 %prep
47 %setup
48
49 %build
50
51 # Working around perl dependency problem from docs
52 # Only > RH 8.0 seems to care here
53
54 echo "rpm_version == %{rpm_version}"
55 if [ "%{rpm_version}" == "42" ]; then
56    %define __perl_requires %{SOURCE999}
57    echo "%{__perl_requires}"
58 elif [ "%{rpm_version}" == "41" ]; then
59    %define __find_requires %{SOURCE998}
60    echo "%{__find_requires}"
61 fi
62
63 ## Build main Samba source
64 cd source
65
66 %ifarch ia64
67 libtoolize --copy --force     # get it to recognize IA-64
68 autoheader
69 autoconf
70 EXTRA="-D_LARGEFILE64_SOURCE"
71 %endif
72
73 ## Get number of cpu's, default for 1 cpu on error 
74 NUMCPU=`grep processor /proc/cpuinfo | wc -l`
75 if [ $NUMCPU -eq 0 ]; then
76         NUMCPU=1;
77 fi 
78
79 ## run autogen if missing the configure script
80 if [ ! -f "configure" ]; then
81         ./autogen.sh
82 fi
83
84 CFLAGS="$RPM_OPT_FLAGS $EXTRA" ./configure \
85         --prefix=%{prefix} \
86         --localstatedir=/var \
87         --with-configdir=/etc/samba \
88         --with-privatedir=/etc/samba \
89         --with-fhs \
90         --with-quotas \
91         --with-smbmount \
92         --with-pam \
93         --with-pam_smbpass \
94         --with-syslog \
95         --with-utmp \
96         --with-sambabook=%{prefix}/share/swat/using_samba \
97         --with-swatdir=%{prefix}/share/swat \
98         --with-libsmbclient 
99 make -j${NUMCPU} proto
100 make -j${NUMCPU} all nsswitch/libnss_wins.so 
101 make -j${NUMCPU} debug2html
102
103 # Remove some permission bits to avoid to many dependencies
104 find examples docs -type f | xargs -r chmod -x
105
106 %install
107 rm -rf $RPM_BUILD_ROOT
108 mkdir -p $RPM_BUILD_ROOT
109 mkdir -p $RPM_BUILD_ROOT/sbin
110 mkdir -p $RPM_BUILD_ROOT/etc/samba
111 mkdir -p $RPM_BUILD_ROOT/etc/{logrotate.d,pam.d,samba}
112 mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
113 mkdir -p $RPM_BUILD_ROOT%{prefix}/{bin,sbin}
114 mkdir -p $RPM_BUILD_ROOT%{prefix}/share/swat/{images,help,include,using_samba}
115 mkdir -p $RPM_BUILD_ROOT%{prefix}/share/swat/using_samba/{figs,gifs}
116 mkdir -p $RPM_BUILD_ROOTMANDIR_MACRO
117 mkdir -p $RPM_BUILD_ROOT/var/lib/samba
118 mkdir -p $RPM_BUILD_ROOT/var/{log,run}/samba
119 mkdir -p $RPM_BUILD_ROOT/var/spool/samba
120 mkdir -p $RPM_BUILD_ROOT/lib/security
121 mkdir -p $RPM_BUILD_ROOT%{prefix}/lib/samba/vfs
122 mkdir -p $RPM_BUILD_ROOT%{prefix}/{lib,include}
123
124 # Install standard binary files
125 for i in nmblookup smbclient smbpasswd smbstatus testparm testprns \
126         rpcclient smbspool smbcacls smbcontrol wbinfo smbmnt net \
127         smbcacls pdbedit tdbbackup smbtree ntlm_auth smbcquotas
128 do
129         install -m755 source/bin/$i $RPM_BUILD_ROOT%{prefix}/bin
130 done
131
132 for i in mksmbpasswd.sh smbtar findsmb
133 do
134         install -m755 source/script/$i $RPM_BUILD_ROOT%{prefix}/bin
135 done
136
137 # Install secure binary files
138 for i in smbd nmbd swat smbmount smbumount debug2html winbindd 
139 do
140         install -m755 source/bin/$i $RPM_BUILD_ROOT%{prefix}/sbin
141 done
142
143 # we need a symlink for mount to recognise the smb and smbfs filesystem types
144 ln -sf %{prefix}/sbin/smbmount $RPM_BUILD_ROOT/sbin/mount.smbfs
145 ln -sf %{prefix}/sbin/smbmount $RPM_BUILD_ROOT/sbin/mount.smb
146
147 # This allows us to get away without duplicating code that 
148 #  sombody else can maintain for us.  
149 cd source
150 make DESTDIR=$RPM_BUILD_ROOT \
151         BASEDIR=/usr \
152         CONFIGDIR=/etc/samba \
153         LIBDIR=%{prefix}/lib/samba \
154         VARDIR=/var \
155         SBINDIR=%{prefix}/sbin \
156         BINDIR=%{prefix}/bin \
157         MANDIR=MANDIR_MACRO \
158         SWATDIR=%{prefix}/share/swat \
159         SAMBABOOK=%{prefix}/share/swat/using_samba \
160         installman installswat installdat installmodules
161 cd ..
162
163 ## don't duplicate the docs.  These are installed with SWAT
164 rm -rf docs/htmldocs
165 rm -rf docs/manpages
166 ( cd docs; ln -s %{prefix}/share/swat/help htmldocs )
167
168
169
170 # Install the nsswitch wins library
171 install -m755 source/nsswitch/libnss_wins.so $RPM_BUILD_ROOT/lib
172 ( cd $RPM_BUILD_ROOT/lib; ln -sf libnss_wins.so libnss_wins.so.2 )
173
174 # Install winbind shared libraries
175 install -m755 source/nsswitch/libnss_winbind.so $RPM_BUILD_ROOT/lib
176 ( cd $RPM_BUILD_ROOT/lib; ln -sf libnss_winbind.so libnss_winbind.so.2 )
177 install -m755 source/nsswitch/pam_winbind.so $RPM_BUILD_ROOT/lib/security
178
179 # Install pam_smbpass.so
180 install -m755 source/bin/pam_smbpass.so $RPM_BUILD_ROOT/lib/security
181
182 # libsmbclient
183 install -m 755 source/bin/libsmbclient.so $RPM_BUILD_ROOT%{prefix}/lib/
184 install -m 755 source/bin/libsmbclient.a $RPM_BUILD_ROOT%{prefix}/lib/
185 install -m 644 source/include/libsmbclient.h $RPM_BUILD_ROOT%{prefix}/include/
186
187 # Install the miscellany
188 install -m755 packaging/RedHat/smbprint $RPM_BUILD_ROOT%{prefix}/bin
189 install -m755 packaging/RedHat/smb.init $RPM_BUILD_ROOT/etc/rc.d/init.d/smb
190 install -m755 packaging/RedHat/winbind.init $RPM_BUILD_ROOT/etc/rc.d/init.d/winbind
191 install -m755 packaging/RedHat/smb.init $RPM_BUILD_ROOT%{prefix}/sbin/samba
192 install -m644 packaging/RedHat/samba.log $RPM_BUILD_ROOT/etc/logrotate.d/samba
193 install -m644 packaging/RedHat/smb.conf $RPM_BUILD_ROOT/etc/samba/smb.conf
194 install -m644 packaging/RedHat/smbusers $RPM_BUILD_ROOT/etc/samba/smbusers
195 install -m644 packaging/RedHat/samba.pamd $RPM_BUILD_ROOT/etc/pam.d/samba
196 install -m644 packaging/RedHat/samba.pamd.stack $RPM_BUILD_ROOT/etc/samba/samba.stack
197 install -m644 packaging/RedHat/samba.xinetd $RPM_BUILD_ROOT/etc/samba/samba.xinetd
198 echo 127.0.0.1 localhost > $RPM_BUILD_ROOT/etc/samba/lmhosts
199
200 # Remove "*.old" files
201 find $RPM_BUILD_ROOT -name "*.old" -exec rm -f {} \;
202
203 ##
204 ## Clean out man pages for tools not installed here
205 ##
206 rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/editreg.1*
207 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/log2pcap.1*
208 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/smbsh.1*
209 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/smbget.1*
210 rm -f $RPM_BUILD_ROOT/%{_mandir}/man8/mount.cifs.8*
211
212
213 %clean
214 rm -rf $RPM_BUILD_ROOT
215
216 %post
217 ## 
218 ## only needed if this is a new install (not an upgrade)
219 ##
220 if [ "$1" -eq "1" ]; then
221         /sbin/chkconfig --add smb
222         /sbin/chkconfig --add winbind
223         /sbin/chkconfig smb off
224         /sbin/chkconfig winbind off
225 fi
226
227 ##
228 ## we only have to wory about this if we are upgrading
229 ##
230 if [ "$1" -eq "2" ]; then
231         if [ -f /etc/smb.conf -a ! -f /etc/samba/smb.conf ]; then
232                 echo "Moving old /etc/smb.conf to /etc/samba/smb.conf"
233                 mv /etc/smb.conf /etc/samba/smb.conf
234         fi
235
236         if [ -f /etc/smbusers -a ! -f /etc/samba/smbusers ]; then
237                 echo "Moving old /etc/smbusers to /etc/samba/smbusers"
238                 mv /etc/smbusers /etc/samba/smbusers
239         fi
240
241         if [ -f /etc/lmhosts -a ! -f /etc/samba/lmhosts ]; then
242                 echo "Moving old /etc/lmhosts to /etc/samba/lmhosts"
243                 mv /etc/lmhosts /etc/samba/lmhosts
244         fi
245
246         if [ -f /etc/MACHINE.SID -a ! -f /etc/samba/MACHINE.SID ]; then
247                 echo "Moving old /etc/MACHINE.SID to /etc/samba/MACHINE.SID"
248                 mv /etc/MACHINE.SID /etc/samba/MACHINE.SID
249         fi
250
251         if [ -f /etc/smbpasswd -a ! -f /etc/samba/smbpasswd ]; then
252                 echo "Moving old /etc/smbpasswd to /etc/samba/smbpasswd"
253                 mv /etc/smbpasswd /etc/samba/smbpasswd
254         fi
255
256         #
257         # For 2.2.1 we move the tdb files from /var/lock/samba to /var/cache/samba
258         # to preserve across reboots.
259         #
260         for i in /var/lock/samba/*.tdb; do
261                 if [ -f $i ]; then
262                         newname="/var/lib/samba/`basename $i`"
263                         echo "Moving $i to $newname"
264                         mv $i $newname
265                 fi
266         done
267
268         #
269         # For 3.0.1 we move the tdb files from /var/cache/samba to /var/lib/samba
270         #
271         echo "Moving tdb files in /var/cache/samba/*.tdb to /var/lib/samba/*.tdb"
272         for i in /var/cache/samba/*.tdb; do
273                 if [ -f $i ]; then
274                         newname="/var/lib/samba/`basename $i`"
275                         echo "Moving $i to $newname"
276                         mv $i $newname
277                 fi
278         done
279 fi
280
281 ##
282 ## New things
283 ##
284
285 # Add swat entry to /etc/services if not already there.
286 if [ ! "`grep ^\s**swat /etc/services`" ]; then
287         echo 'swat              901/tcp                         # Add swat service used via inetd' >> /etc/services
288 fi
289
290 # Add swat entry to /etc/inetd.conf if needed.
291 if [ -f /etc/inetd.conf ]; then
292         if [ ! "`grep ^\s*swat /etc/inetd.conf`" ]; then
293                 echo 'swat      stream  tcp     nowait.400      root    %{prefix}/sbin/swat swat' >> /etc/inetd.conf
294         killall -HUP inetd || :
295         fi
296 fi
297
298 # Add swat entry to xinetd.d if needed.
299 if [ -d /etc/xinetd.d -a ! -f /etc/xinetd.d/swat ]; then
300         mv /etc/samba/samba.xinetd /etc/xinetd.d/swat
301 else
302         rm -f /etc/samba/samba.xinetd
303 fi
304
305 # Install the correct version of the samba pam file
306 if [ -f /lib/security/pam_stack.so ]; then
307         echo "Installing stack version of /etc/pam.d/samba..."
308         mv /etc/samba/samba.stack /etc/pam.d/samba
309 else
310         echo "Installing non-stack version of /etc/pam.d/samba..."
311         rm -f /etc/samba/samba.stack
312 fi
313
314 ## call ldconfig to create the version symlink for libsmbclient.so
315 /sbin/ldconfig
316
317 %preun
318 if [ "$1" -eq "0" ] ; then
319         /sbin/chkconfig --del smb
320         /sbin/chkconfig --del winbind
321
322         # We want to remove the browse.dat and wins.dat files 
323         # so they can not interfer with a new version of samba!
324         if [ -e /var/lib/samba/browse.dat ]; then
325                 rm -f /var/lib/samba/browse.dat
326         fi
327         if [ -e /var/lib/samba/wins.dat ]; then
328                 rm -f /var/lib/samba/wins.dat
329         fi
330
331         # Remove the transient tdb files.
332         if [ -e /var/lib/samba/brlock.tdb ]; then
333                 rm -f /var/lib/samba/brlock.tdb
334         fi
335
336         if [ -e /var/lib/samba/unexpected.tdb ]; then
337                 rm -f /var/lib/samba/unexpected.tdb
338         fi
339
340         if [ -e /var/lib/samba/connections.tdb ]; then
341                 rm -f /var/lib/samba/connections.tdb
342         fi
343
344         if [ -e /var/lib/samba/locking.tdb ]; then
345                 rm -f /var/lib/samba/locking.tdb
346         fi
347
348         if [ -e /var/lib/samba/messages.tdb ]; then
349                 rm -f /var/lib/samba/messages.tdb
350         fi
351 fi
352
353 %postun
354 # Only delete remnants of samba if this is the final deletion.
355 if [ "$1" -eq  "0" ] ; then
356     if [ -x /etc/pam.d/samba ]; then
357       rm -f /etc/pam.d/samba
358     fi
359
360     if [ -e /var/log/samba ]; then
361       rm -rf /var/log/samba
362     fi
363
364     if [ -e /var/lib/samba ]; then
365       rm -rf /var/lib/samba
366     fi
367
368     # Remove swat entries from /etc/inetd.conf and /etc/services
369     cd /etc
370     tmpfile=/etc/tmp.$$
371     if [ -f /etc/inetd.conf ]; then
372       # preserve inetd.conf permissions.
373       cp -p /etc/inetd.conf $tmpfile
374       sed -e '/^[:space:]*swat.*$/d' /etc/inetd.conf > $tmpfile
375       mv $tmpfile inetd.conf
376     fi
377
378     # preserve services permissions.
379     cp -p /etc/services $tmpfile
380     sed -e '/^[:space:]*swat.*$/d' /etc/services > $tmpfile
381     mv $tmpfile /etc/services
382
383     # Remove swat entry from /etc/xinetd.d
384     if [ -f /etc/xinetd.d/swat ]; then
385       rm -r /etc/xinetd.d/swat
386     fi
387 fi
388
389 /sbin/ldconfig
390
391 %files
392 %defattr(-,root,root)
393 %doc README COPYING Manifest Read-Manifest-Now
394 %doc WHATSNEW.txt Roadmap
395 %doc docs
396 %doc examples
397 %{prefix}/sbin/smbd
398 %{prefix}/sbin/nmbd
399 %{prefix}/sbin/swat
400 %{prefix}/bin/smbmnt
401 %{prefix}/sbin/smbmount
402 %{prefix}/sbin/smbumount
403 %{prefix}/sbin/winbindd
404 %{prefix}/sbin/samba
405 %{prefix}/sbin/debug2html
406 /sbin/mount.smbfs
407 /sbin/mount.smb
408 %{prefix}/bin/mksmbpasswd.sh
409 %{prefix}/bin/smbclient
410 %{prefix}/bin/smbspool
411 %{prefix}/bin/rpcclient
412 %{prefix}/bin/testparm
413 %{prefix}/bin/testprns
414 %{prefix}/bin/findsmb
415 %{prefix}/bin/smbstatus
416 %{prefix}/bin/nmblookup
417 %{prefix}/bin/smbpasswd
418 %{prefix}/bin/smbtar
419 %{prefix}/bin/smbprint
420 %{prefix}/bin/smbcontrol
421 %{prefix}/bin/wbinfo
422 %{prefix}/bin/net
423 %{prefix}/bin/ntlm_auth
424 %{prefix}/bin/smbcquotas
425 %{prefix}/bin/smbcacls
426 %{prefix}/bin/pdbedit
427 %{prefix}/bin/tdbbackup
428 %{prefix}/bin/smbtree
429 %attr(755,root,root) /lib/libnss_wins.s*
430 %attr(755,root,root) %{prefix}/lib/samba/vfs/*.so
431 %attr(755,root,root) %{prefix}/lib/samba/charset/*.so
432 #%attr(755,root,root) %{prefix}/lib/samba/pdb/*.so
433 %attr(755,root,root) %{prefix}/lib/samba/*.dat
434 %attr(755,root,root) %{prefix}/lib/samba/*.msg
435 %{prefix}/include/libsmbclient.h
436 %{prefix}/lib/libsmbclient.a
437 %{prefix}/lib/libsmbclient.so
438 %{prefix}/share/swat/help/*
439 %{prefix}/share/swat/images/*
440 %{prefix}/share/swat/include/*.html
441 %{prefix}/share/swat/lang/*/help/*
442 %{prefix}/share/swat/lang/*/images/*
443 %{prefix}/share/swat/lang/*/include/*.html
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
450 /etc/rc.d/init.d/smb
451 /etc/rc.d/init.d/winbind
452 /etc/logrotate.d/samba
453 %config(noreplace) /etc/pam.d/samba
454 MANDIR_MACRO/man1/*
455 MANDIR_MACRO/man5/*
456 MANDIR_MACRO/man7/*
457 MANDIR_MACRO/man8/*
458 %attr(755,root,root) %dir /var/lib/samba
459 %dir /var/log/samba
460 %dir /var/run/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