Add vendor name to rpm preamble.
[nivanova/samba-autobuild/.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 >= 0.72 kernel >= 2.2.1 glibc >= 2.1.2
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/cache/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 # Install the nsswitch wins library
164 install -m755 source/nsswitch/libnss_wins.so $RPM_BUILD_ROOT/lib
165 ( cd $RPM_BUILD_ROOT/lib; ln -sf libnss_wins.so libnss_wins.so.2 )
166
167 # Install winbind shared libraries
168 install -m755 source/nsswitch/libnss_winbind.so $RPM_BUILD_ROOT/lib
169 ( cd $RPM_BUILD_ROOT/lib; ln -sf libnss_winbind.so libnss_winbind.so.2 )
170 install -m755 source/nsswitch/pam_winbind.so $RPM_BUILD_ROOT/lib/security
171
172 # Install pam_smbpass.so
173 install -m755 source/bin/pam_smbpass.so $RPM_BUILD_ROOT/lib/security
174
175 # libsmbclient
176 install -m 755 source/bin/libsmbclient.so $RPM_BUILD_ROOT%{prefix}/lib/
177 install -m 755 source/bin/libsmbclient.a $RPM_BUILD_ROOT%{prefix}/lib/
178 install -m 644 source/include/libsmbclient.h $RPM_BUILD_ROOT%{prefix}/include/
179
180 # Install the miscellany
181 install -m755 packaging/RedHat/smbprint $RPM_BUILD_ROOT%{prefix}/bin
182 install -m755 packaging/RedHat/smb.init $RPM_BUILD_ROOT/etc/rc.d/init.d/smb
183 install -m755 packaging/RedHat/winbind.init $RPM_BUILD_ROOT/etc/rc.d/init.d/winbind
184 install -m755 packaging/RedHat/smb.init $RPM_BUILD_ROOT%{prefix}/sbin/samba
185 install -m644 packaging/RedHat/samba.log $RPM_BUILD_ROOT/etc/logrotate.d/samba
186 install -m644 packaging/RedHat/smb.conf $RPM_BUILD_ROOT/etc/samba/smb.conf
187 install -m644 packaging/RedHat/smbusers $RPM_BUILD_ROOT/etc/samba/smbusers
188 install -m644 packaging/RedHat/samba.pamd $RPM_BUILD_ROOT/etc/pam.d/samba
189 install -m644 packaging/RedHat/samba.pamd.stack $RPM_BUILD_ROOT/etc/samba/samba.stack
190 install -m644 packaging/RedHat/samba.xinetd $RPM_BUILD_ROOT/etc/samba/samba.xinetd
191 echo 127.0.0.1 localhost > $RPM_BUILD_ROOT/etc/samba/lmhosts
192
193 # Remove "*.old" files
194 find $RPM_BUILD_ROOT -name "*.old" -exec rm -f {} \;
195
196 %clean
197 rm -rf $RPM_BUILD_ROOT
198
199 %post
200 ## 
201 ## only needed if this is a new install (not an upgrade)
202 ##
203 if [ "$1" -eq "1" ]; then
204         /sbin/chkconfig --add smb
205         /sbin/chkconfig --add winbind
206         /sbin/chkconfig smb off
207         /sbin/chkconfig winbind off
208 fi
209
210 ##
211 ## we only have to wory about this if we are upgrading
212 ##
213 if [ "$1" -eq "2" ]; then
214         if [ -f /etc/smb.conf -a ! -f /etc/samba/smb.conf ]; then
215                 echo "Moving old /etc/smb.conf to /etc/samba/smb.conf"
216                 mv /etc/smb.conf /etc/samba/smb.conf
217         fi
218
219         if [ -f /etc/smbusers -a ! -f /etc/samba/smbusers ]; then
220                 echo "Moving old /etc/smbusers to /etc/samba/smbusers"
221                 mv /etc/smbusers /etc/samba/smbusers
222         fi
223
224         if [ -f /etc/lmhosts -a ! -f /etc/samba/lmhosts ]; then
225                 echo "Moving old /etc/lmhosts to /etc/samba/lmhosts"
226                 mv /etc/lmhosts /etc/samba/lmhosts
227         fi
228
229         if [ -f /etc/MACHINE.SID -a ! -f /etc/samba/MACHINE.SID ]; then
230                 echo "Moving old /etc/MACHINE.SID to /etc/samba/MACHINE.SID"
231                 mv /etc/MACHINE.SID /etc/samba/MACHINE.SID
232         fi
233
234         if [ -f /etc/smbpasswd -a ! -f /etc/samba/smbpasswd ]; then
235                 echo "Moving old /etc/smbpasswd to /etc/samba/smbpasswd"
236                 mv /etc/smbpasswd /etc/samba/smbpasswd
237         fi
238
239         #
240         # For 2.2.1 we move the tdb files from /var/lock/samba to /var/cache/samba
241         # to preserve across reboots.
242         #
243         for i in /var/lock/samba/*.tdb; do
244                 if [ -f $i ]; then
245                         newname=`echo $i | sed -e's|var\/lock\/samba|var\/cache\/samba|'`
246                         echo "Moving $i to $newname"
247                         mv $i $newname
248                 fi
249         done
250
251         # Remove the transient tdb files.
252         if [ -e /var/cache/samba/brlock.tdb ]; then
253                 rm -f /var/cache/samba/brlock.tdb
254         fi
255
256         if [ -e /var/cache/samba/unexpected.tdb ]; then
257                 rm -f /var/cache/samba/unexpected.tdb
258         fi
259
260         if [ -e /var/cache/samba/connections.tdb ]; then
261                 rm -f /var/cache/samba/connections.tdb
262         fi
263
264         if [ -e /var/cache/samba/locking.tdb ]; then
265                 rm -f /var/cache/samba/locking.tdb
266         fi
267
268         if [ -e /var/cache/samba/messages.tdb ]; then
269                 rm -f /var/cache/samba/messages.tdb
270         fi
271
272         if [ -d /var/lock/samba ]; then
273                 rm -rf /var/lock/samba
274         fi
275 fi
276
277 ##
278 ## New things
279 ##
280
281 # Add swat entry to /etc/services if not already there.
282 if [ ! "`grep ^\s**swat /etc/services`" ]; then
283         echo 'swat              901/tcp                         # Add swat service used via inetd' >> /etc/services
284 fi
285
286 # Add swat entry to /etc/inetd.conf if needed.
287 if [ -f /etc/inetd.conf ]; then
288         if [ ! "`grep ^\s*swat /etc/inetd.conf`" ]; then
289                 echo 'swat      stream  tcp     nowait.400      root    %{prefix}/sbin/swat swat' >> /etc/inetd.conf
290         killall -HUP inetd || :
291         fi
292 fi
293
294 # Add swat entry to xinetd.d if needed.
295 if [ -d /etc/xinetd.d -a ! -f /etc/xinetd.d/swat ]; then
296         mv /etc/samba/samba.xinetd /etc/xinetd.d/swat
297 else
298         rm -f /etc/samba/samba.xinetd
299 fi
300
301 # Install the correct version of the samba pam file, depending on pam version.
302 # (always keep an existing PAM config file)
303 if [ ! -f /etc/pam.d/samba ]; then 
304         if [ -f /lib/security/pam_stack.so ]; then
305                 echo "Installing stack version of /etc/pam.d/samba..."
306                 mv /etc/samba/samba.stack /etc/pam.d/samba
307         else
308                 echo "Installing non-stack version of /etc/pam.d/samba..."
309                 rm -f /etc/samba/samba.stack
310         fi
311 fi
312
313 ## call ldconfig to create the version symlink for libsmbclient.so
314 /sbin/ldconfig
315
316 %preun
317 if [ "$1" -eq "0" ] ; then
318         /sbin/chkconfig --del smb
319         /sbin/chkconfig --del winbind
320
321         # We want to remove the browse.dat and wins.dat files 
322         # so they can not interfer with a new version of samba!
323         if [ -e /var/cache/samba/browse.dat ]; then
324                 rm -f /var/cache/samba/browse.dat
325         fi
326         if [ -e /var/cache/samba/wins.dat ]; then
327                 rm -f /var/cache/samba/wins.dat
328         fi
329
330         # Remove the transient tdb files.
331         if [ -e /var/cache/samba/brlock.tdb ]; then
332                 rm -f /var/cache/samba/brlock.tdb
333         fi
334
335         if [ -e /var/cache/samba/unexpected.tdb ]; then
336                 rm -f /var/cache/samba/unexpected.tdb
337         fi
338
339         if [ -e /var/cache/samba/connections.tdb ]; then
340                 rm -f /var/cache/samba/connections.tdb
341         fi
342
343         if [ -e /var/cache/samba/locking.tdb ]; then
344                 rm -f /var/cache/samba/locking.tdb
345         fi
346
347         if [ -e /var/cache/samba/messages.tdb ]; then
348                 rm -f /var/cache/samba/messages.tdb
349         fi
350 fi
351
352 %postun
353 # Only delete remnants of samba if this is the final deletion.
354 if [ "$1" -eq  "0" ] ; then
355     if [ -x /etc/pam.d/samba ]; then
356       rm -f /etc/pam.d/samba
357     fi
358
359     if [ -e /var/log/samba ]; then
360       rm -rf /var/log/samba
361     fi
362
363     if [ -e /var/cache/samba ]; then
364       rm -rf /var/cache/samba
365     fi
366
367     # Remove swat entries from /etc/inetd.conf and /etc/services
368     cd /etc
369     tmpfile=/etc/tmp.$$
370     if [ -f /etc/inetd.conf ]; then
371       # preserve inetd.conf permissions.
372       cp -p /etc/inetd.conf $tmpfile
373       sed -e '/^[:space:]*swat.*$/d' /etc/inetd.conf > $tmpfile
374       mv $tmpfile inetd.conf
375     fi
376
377     # preserve services permissions.
378     cp -p /etc/services $tmpfile
379     sed -e '/^[:space:]*swat.*$/d' /etc/services > $tmpfile
380     mv $tmpfile /etc/services
381
382     # Remove swat entry from /etc/xinetd.d
383     if [ -f /etc/xinetd.d/swat ]; then
384       rm -r /etc/xinetd.d/swat
385     fi
386 fi
387
388 /sbin/ldconfig
389
390 %files
391 %defattr(-,root,root)
392 %doc README COPYING Manifest Read-Manifest-Now
393 %doc WHATSNEW.txt Roadmap
394 %doc docs
395 %doc examples
396 %{prefix}/sbin/smbd
397 %{prefix}/sbin/nmbd
398 %{prefix}/sbin/swat
399 %{prefix}/bin/smbmnt
400 %{prefix}/sbin/smbmount
401 %{prefix}/sbin/smbumount
402 %{prefix}/sbin/winbindd
403 %{prefix}/sbin/samba
404 %{prefix}/sbin/debug2html
405 /sbin/mount.smbfs
406 /sbin/mount.smb
407 %{prefix}/bin/mksmbpasswd.sh
408 %{prefix}/bin/smbclient
409 %{prefix}/bin/smbspool
410 %{prefix}/bin/rpcclient
411 %{prefix}/bin/testparm
412 %{prefix}/bin/testprns
413 %{prefix}/bin/findsmb
414 %{prefix}/bin/smbstatus
415 %{prefix}/bin/nmblookup
416 %{prefix}/bin/smbpasswd
417 %{prefix}/bin/smbtar
418 %{prefix}/bin/smbprint
419 %{prefix}/bin/smbcontrol
420 %{prefix}/bin/wbinfo
421 %{prefix}/bin/net
422 %{prefix}/bin/ntlm_auth
423 %{prefix}/bin/smbcquotas
424 %{prefix}/bin/smbcacls
425 %{prefix}/bin/pdbedit
426 %{prefix}/bin/tdbbackup
427 %{prefix}/bin/smbtree
428 %attr(755,root,root) /lib/libnss_wins.s*
429 %attr(755,root,root) %{prefix}/lib/samba/vfs/*.so
430 %attr(755,root,root) %{prefix}/lib/samba/charset/*.so
431 #%attr(755,root,root) %{prefix}/lib/samba/pdb/*.so
432 %attr(755,root,root) %{prefix}/lib/samba/*.dat
433 %attr(755,root,root) %{prefix}/lib/samba/*.msg
434 %{prefix}/include/libsmbclient.h
435 %{prefix}/lib/libsmbclient.a
436 %{prefix}/lib/libsmbclient.so
437 %{prefix}/share/swat/help/*
438 %{prefix}/share/swat/images/*
439 %{prefix}/share/swat/include/*.html
440 %{prefix}/share/swat/lang/*/help/*
441 %{prefix}/share/swat/lang/*/images/*
442 %{prefix}/share/swat/lang/*/include/*.html
443 %{prefix}/share/swat/using_samba/*
444 %config(noreplace) /etc/samba/lmhosts
445 %config(noreplace) /etc/samba/smb.conf
446 %config(noreplace) /etc/samba/smbusers
447 /etc/samba/samba.stack
448 /etc/samba/samba.xinetd
449 /etc/rc.d/init.d/smb
450 /etc/rc.d/init.d/winbind
451 /etc/logrotate.d/samba
452 %config(noreplace) /etc/pam.d/samba
453 MANDIR_MACRO/man1/*
454 MANDIR_MACRO/man5/*
455 MANDIR_MACRO/man7/*
456 MANDIR_MACRO/man8/*
457 %attr(755,root,root) %dir /var/cache/samba
458 %dir /var/log/samba
459 %dir /var/run/samba
460 %attr(1777,root,root) %dir /var/spool/samba
461 %attr(-,root,root) /lib/libnss_winbind.so*
462 %attr(-,root,root) /lib/security/pam_winbind.so
463 %attr(-,root,root) /lib/security/pam_smbpass.so