f7c980f1abe46d9fe47efb4056e2b0c6a73a7d62
[samba.git] / packaging / RHEL / samba.spec.tmpl
1 %define initdir %{_sysconfdir}/rc.d/init.d
2 %define auth %(test -f /etc/pam.d/system-auth && echo /etc/pam.d/system-auth || echo)
3
4 Summary: Samba SMB client and server
5 Vendor: Samba Team
6 Packager: Samba Team <samba@samba.org>
7 Name:         samba
8 Version:      PVERSION
9 Release:      PRELEASEPRPMREV
10 Epoch:        0
11 License: GNU GPL version 3
12 Group: System Environment/Daemons
13 URL: http://www.samba.org/
14
15 Source: samba-%{version}.tar.bz2
16
17 # Don't depend on Net::LDAP
18 Source998: filter-requires-samba.sh
19 Source999: setup.tar.bz2
20
21 Prereq: /sbin/chkconfig /bin/mktemp /usr/bin/killall
22 Prereq: fileutils sed /etc/init.d
23
24 Requires: pam >= 0.64 %{auth} 
25 Requires: samba-common = %{version}-%{release}
26 Requires: logrotate >= 3.4 initscripts >= 5.54-1
27 Provides: samba = %{version}
28
29 Prefix: /usr
30 BuildRoot: %{_tmppath}/%{name}-%{version}-root
31 BuildRequires: pam-devel, readline-devel, fileutils, libacl-devel, openldap-devel, krb5-devel, cups-devel, keyutils-devel
32
33 # Working around perl dependency problem from docs
34 %define __perl_requires %{SOURCE998}
35
36 # rpm screws up the arch lib dir when using --target on RHEL5
37 %ifarch i386 i486 i586 i686 ppc s390
38 %define _libarch lib
39 %else
40 %define _libarch %_lib
41 %endif
42
43 %define _libarchdir /usr/%{_libarch}
44
45
46 %description
47 Samba is the protocol by which a lot of PC-related machines share
48 files, printers, and other information (such as lists of available
49 files and printers). The Windows NT, OS/2, and Linux operating systems
50 support this natively, and add-on packages can enable the same thing
51 for DOS, Windows, VMS, UNIX of all kinds, MVS, and more. This package
52 provides an SMB server that can be used to provide network services to
53 SMB (sometimes called "Lan Manager") clients. Samba uses NetBIOS over
54 TCP/IP (NetBT) protocols and does NOT need the NetBEUI (Microsoft Raw
55 NetBIOS frame) protocol.
56
57
58 #######################################################################
59 %package client
60 Summary: Samba (SMB) client programs.
61 Group: Applications/System
62 Requires: samba-common = %{version}-%{release}
63 Obsoletes: smbfs
64 Provides: samba-client = %{version}-%{release}
65
66 %description client
67 The samba-client package provides some SMB clients to compliment the
68 built-in SMB filesystem in Linux. These clients allow access of SMB
69 shares and printing to SMB printers.
70
71
72 #######################################################################
73 %package common
74 Summary: Files used by both Samba servers and clients.
75 Group: Applications/System
76 Provides: samba-common = %{version}-%{release}
77
78 %description common
79 Samba-common provides files necessary for both the server and client
80 packages of Samba.
81
82
83 #######################################################################
84 %package swat
85 Summary: The Samba SMB server configuration program.
86 Group: Applications/System
87 Requires: samba = %{version} xinetd
88 Provides: samba-swat = %{version}-%{release}
89
90 %description swat
91 The samba-swat package includes the new SWAT (Samba Web Administration
92 Tool), for remotely managing Samba's smb.conf file using your favorite
93 Web browser.
94
95
96 #######################################################################
97 %package doc
98 Summary:      Samba Documentation
99 Group:        Documentation/Other
100 Provides:     samba-doc = %{version}-%{release}
101 Prereq:       /usr/bin/find /bin/rm /usr/bin/xargs
102
103 %description doc
104 The samba-doc package includes the HTML versions of the Samba manpages
105 utilized by SWAT as well as the HTML and PDF version of "Using Samba",
106 "Samba By Example", and "The Official Samba HOWTO and Reference Guide".
107
108
109 #######################################################################
110
111 %prep
112 %setup -q
113
114 # setup the vendor files (init scripts, etc...)
115 %setup -T -D -a 999 -n samba-%{version} -q
116
117 %build
118
119 /bin/cp setup/filter-requires-samba.sh %{SOURCE998}
120
121 cd source
122 # RPM_OPT_FLAGS="$RPM_OPT_FLAGS -D_FILE_OFFSET_BITS=64"
123
124 ## check for ccache
125  ccache -h 2>&1 > /dev/null
126 if [ $? -eq 0 ]; then
127         CC="ccache gcc"
128 else
129         CC="gcc"
130 fi 
131
132 ## always run autogen.sh
133 ./autogen.sh
134
135 CC="$CC" CFLAGS="$RPM_OPT_FLAGS $EXTRA -D_GNU_SOURCE" ./configure \
136         --prefix=%{_prefix} \
137         --localstatedir=/var \
138         --with-configdir=%{_sysconfdir}/samba \
139         --with-libdir=%{_libarchdir}/samba \
140         --with-pammodulesdir=%{_libarch}/security \
141         --with-lockdir=/var/lib/samba \
142         --with-logfilebase=/var/log/samba \
143         --with-mandir=%{_mandir} \
144         --with-piddir=/var/run \
145         --with-privatedir=%{_sysconfdir}/samba \
146         --with-sambabook=%{_datadir}/swat/using_samba \
147         --with-swatdir=%{_datadir}/swat \
148         --enable-cups \
149         --with-acl-support \
150         --with-ads \
151         --with-automount \
152         --with-fhs \
153         --with-pam_smbpass \
154         --with-libsmbclient \
155         --with-libsmbsharemodes \
156         --without-smbwrapper \
157         --with-pam \
158         --with-quotas \
159         --with-shared-modules=idmap_rid,idmap_ad \
160         --with-syslog \
161         --with-utmp \
162         --with-dnsupdate
163
164 make showlayout
165
166 make CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE"  proto 
167
168 ## check for gcc 3.4 or later
169 CC_VERSION=`${CC} --version | head -1 | awk '{print $3}'`
170 CC_MAJOR=`echo ${CC_VERSION} | cut -d. -f 1`
171 CC_MINOR=`echo ${CC_VERSION} | cut -d. -f 2`
172 if [ ${CC_MAJOR} -ge 3 ]; then
173         if [ ${CC_MAJOR} -gt 3 -o ${CC_MINOR} -ge 4 ]; then
174                 make pch
175         fi
176 fi
177
178
179 make CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE" %{?_smp_mflags} \
180         all modules pam_smbpass
181
182 # Remove some permission bits to avoid to many dependencies
183 cd ..
184 find examples docs -type f | xargs -r chmod -x
185
186 %install
187 # Clean up in case there is trash left from a previous build
188 rm -rf $RPM_BUILD_ROOT
189
190 # Create the target build directory hierarchy
191 mkdir -p $RPM_BUILD_ROOT%{_datadir}/swat/{help,include,using_samba/{figs,gifsa}}
192 mkdir -p $RPM_BUILD_ROOT%{_includedir}
193 mkdir -p $RPM_BUILD_ROOT%{_initrddir}
194 mkdir -p $RPM_BUILD_ROOT{%{_libarchdir},%{_includedir}}
195 mkdir -p $RPM_BUILD_ROOT%{_libarchdir}/samba/{auth,charset,idmap,vfs,pdb}
196 mkdir -p $RPM_BUILD_ROOT/%{_libarch}/security
197 mkdir -p $RPM_BUILD_ROOT%{_mandir}
198 mkdir -p $RPM_BUILD_ROOT%{_prefix}/{bin,sbin}
199 mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib
200 mkdir -p $RPM_BUILD_ROOT/sbin
201 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/{logrotate.d,pam.d,samba}
202 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/{pam.d,logrotate.d}
203 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d
204 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/{samba,sysconfig}
205 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d
206 mkdir -p $RPM_BUILD_ROOT/var/lib/samba/winbindd_privileged
207 mkdir -p $RPM_BUILD_ROOT/var/{log,run/winbindd,spool}/samba
208
209 cd source
210 make DESTDIR=$RPM_BUILD_ROOT \
211         install
212 cd ..
213
214 # NSS winbind support
215 install -m 755 source/nsswitch/libnss_winbind.so $RPM_BUILD_ROOT/%{_libarch}/libnss_winbind.so.2
216 install -m 755 source/nsswitch/libnss_wins.so $RPM_BUILD_ROOT/%{_libarch}/libnss_wins.so.2
217 ( cd $RPM_BUILD_ROOT/%{_libarch};
218   ln -sf libnss_winbind.so.2  libnss_winbind.so;
219   ln -sf libnss_wins.so.2  libnss_wins.so )
220
221 # Put the shared (and possibly static) libraries into /usr/lib{,64}/ .
222 # Samba 3.2.2 installs them into /usr/lib{,64}/samba/ .
223 # This step will become unnecessary in 3.3.0.
224 #
225 for library in libsmbclient libsmbsharemodes libwbclient libtalloc libtdb libnetapi
226 do
227         mv -f ${RPM_BUILD_ROOT}%{_libarchdir}/samba/${library}.* \
228                 ${RPM_BUILD_ROOT}%{_libarchdir}/
229 done
230
231
232 ## cleanup
233 /bin/rm -rf $RPM_BUILD_ROOT/usr/lib*/samba/security
234
235 # Install the miscellany
236 echo 127.0.0.1 localhost > $RPM_BUILD_ROOT%{_sysconfdir}/samba/lmhosts
237
238 install -m644 setup/samba.log $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/samba
239 install -m644 setup/swat $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/swat
240 install -m644 setup/samba.sysconfig $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/samba
241 install -m755 setup/smb.init $RPM_BUILD_ROOT%{initdir}/smb
242 install -m755 setup/winbind.init $RPM_BUILD_ROOT%{initdir}/winbind
243 install -m644 setup/samba.pamd $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/samba
244 install -m755 setup/smbprint $RPM_BUILD_ROOT%{_bindir}
245 install -m644 setup/smbusers $RPM_BUILD_ROOT%{_sysconfdir}/samba/smbusers
246 install -m644 setup/smb.conf $RPM_BUILD_ROOT%{_sysconfdir}/samba/smb.conf
247 install -m755 source/bin/mount.cifs $RPM_BUILD_ROOT/sbin/mount.cifs
248 install -m755 source/bin/umount.cifs $RPM_BUILD_ROOT/sbin/umount.cifs
249 install -m755 source/script/mksmbpasswd.sh $RPM_BUILD_ROOT%{_bindir}
250
251 /bin/rm $RPM_BUILD_ROOT%{_sbindir}/*mount.cifs
252
253 ln -s ../..%{initdir}/smb  $RPM_BUILD_ROOT%{_sbindir}/samba
254 ln -s ../..%{initdir}/winbind  $RPM_BUILD_ROOT%{_sbindir}/winbind
255
256 # Remove "*.old" files
257 find $RPM_BUILD_ROOT -name "*.old" -exec rm -f {} \;
258
259 ## don't duplicate the docs.  These are installed by/with SWAT
260 rm -rf docs/htmldocs
261 rm -rf docs/manpages
262 ( cd docs; ln -s %{_prefix}/share/swat/help htmldocs )
263
264 ##
265 ## Clean out man pages for tools not installed here
266 ##
267 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/log2pcap.1*
268 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/smbsh.1*
269 rm -f $RPM_BUILD_ROOT%{_mandir}/man5/vfstest.1*
270
271
272 %clean
273 rm -rf $RPM_BUILD_ROOT
274
275 %post
276 ## deal with an upgrade from a broken 3.0.21b RPM
277 if [ "$1" -eq "2" ]; then
278         if [ -d /var/cache/samba ]; then
279                 for file in `ls /var/cache/samba/*tdb`; do
280                         /bin/cp -up $file /var/lib/samba/`basename $file`
281                 done
282                 mkdir -p /var/lib/samba/eventlog
283                 for file in `ls /var/cache/samba/eventlog/*tdb`; do
284                         /bin/cp -up $file /var/lib/samba/eventlog/`basename $file`
285                 done
286                 /bin/mv /var/cache/samba /var/cache/samba.moved
287         fi
288 fi
289
290 %preun
291 if [ $1 = 0 ] ; then
292     /sbin/chkconfig --del smb
293     /sbin/chkconfig --del winbind
294     # rm -rf /var/log/samba/* /var/lib/samba/*
295     /sbin/service smb stop >/dev/null 2>&1
296 fi
297 exit 0
298
299 %postun
300 if [ "$1" -ge "1" ]; then
301         %{initdir}/smb restart >/dev/null 2>&1
302 fi      
303
304
305 %post swat
306 # Add swat entry to /etc/services if not already there.
307 if [ ! "`grep ^\s**swat /etc/services`" ]; then
308         echo 'swat        901/tcp     # Add swat service used via inetd' >> /etc/services
309 fi
310
311 %post common
312 /sbin/ldconfig
313
314 %postun common 
315 /sbin/ldconfig
316
317 #######################################################################
318 ## Files section                                                     ##
319 #######################################################################
320
321 %files
322 %defattr(-,root,root)
323
324 %config(noreplace) %{_sysconfdir}/sysconfig/samba
325 %config(noreplace) %{_sysconfdir}/samba/smbusers
326 %attr(755,root,root) %config %{initdir}/smb
327 %attr(755,root,root) %config %{initdir}/winbind
328 %config(noreplace) %{_sysconfdir}/logrotate.d/samba
329 %config(noreplace) %{_sysconfdir}/pam.d/samba
330
331 %attr(0755,root,root) %dir /var/log/samba
332 %attr(0755,root,root) %dir /var/lib/samba
333 %attr(1777,root,root) %dir /var/spool/samba
334
335 %{_sbindir}/samba
336 %{_sbindir}/winbind
337
338 %{_sbindir}/smbd
339 %{_sbindir}/nmbd
340 %{_sbindir}/winbindd
341
342 %{_bindir}/mksmbpasswd.sh
343 %{_bindir}/smbcontrol
344 %{_bindir}/smbstatus
345 %{_bindir}/tdbbackup
346 %{_bindir}/tdbtool
347 %{_bindir}/tdbdump
348 %{_bindir}/wbinfo
349 %{_bindir}/ntlm_auth
350 %{_bindir}/pdbedit
351 %{_bindir}/eventlogadm
352
353 %{_libarchdir}/samba/idmap/*.so
354 %{_libarchdir}/samba/nss_info/*.so
355 %{_libarchdir}/samba/vfs/*.so
356 %{_libarchdir}/samba/auth/*.so
357
358 %{_mandir}/man1/smbcontrol.1*
359 %{_mandir}/man1/smbstatus.1*
360 %{_mandir}/man1/vfstest.1*
361 %{_mandir}/man5/smbpasswd.5*
362 %{_mandir}/man7/samba.7*
363 %{_mandir}/man8/nmbd.8*
364 %{_mandir}/man8/pdbedit.8*
365 %{_mandir}/man8/smbd.8*
366 %{_mandir}/man8/tdbbackup.8*
367 %{_mandir}/man8/tdbdump.8*
368 %{_mandir}/man8/tdbtool.8*
369 %{_mandir}/man8/eventlogadm.8*
370 %{_mandir}/man8/winbindd.8*
371 %{_mandir}/man1/ntlm_auth.1*
372 %{_mandir}/man1/wbinfo.1*
373 %{_mandir}/man8/vfs_*.8*
374 %{_mandir}/man8/idmap_*.8*
375
376
377 ##########
378
379 %files doc
380 %defattr(-,root,root)
381 %doc README COPYING Manifest 
382 %doc WHATSNEW.txt Roadmap
383 %doc docs
384 %doc examples/autofs examples/LDAP examples/libsmbclient examples/misc examples/printer-accounting
385 %doc examples/printing
386 %doc %{_datadir}/swat/help
387 %doc %{_datadir}/swat/using_samba
388
389 ##########
390
391 %files swat
392 %defattr(-,root,root)
393 %config(noreplace) %{_sysconfdir}/xinetd.d/swat
394 %dir %{_datadir}/swat
395 %{_datadir}/swat/include
396 %{_datadir}/swat/images
397 %{_datadir}/swat/lang
398 %{_sbindir}/swat
399 %{_mandir}/man8/swat.8*
400
401 ##########
402
403 %files client
404 %defattr(-,root,root)
405 /sbin/mount.cifs
406 /sbin/umount.cifs
407 %{_sbindir}/cifs.upcall
408
409 %{_bindir}/rpcclient
410 %{_bindir}/smbcacls
411 %{_bindir}/findsmb
412 %{_bindir}/smbcquotas
413 %{_bindir}/nmblookup
414 %{_bindir}/smbget
415 %{_bindir}/smbclient
416 %{_bindir}/smbprint
417 %{_bindir}/smbspool
418 %{_bindir}/smbtar
419 %{_bindir}/net
420 %{_bindir}/smbtree
421
422 %{_mandir}/man8/mount.cifs.8.*
423 %{_mandir}/man8/umount.cifs.8.*
424 %{_mandir}/man8/cifs.upcall.8.*
425 %{_mandir}/man8/smbspool.8*
426 %{_mandir}/man1/smbget.1*
427 %{_mandir}/man5/smbgetrc.5*
428 %{_mandir}/man1/findsmb.1*
429 %{_mandir}/man1/nmblookup.1*
430 %{_mandir}/man1/rpcclient.1*
431 %{_mandir}/man1/smbcacls.1*
432 %{_mandir}/man1/smbclient.1*
433 %{_mandir}/man1/smbtar.1*
434 %{_mandir}/man1/smbtree.1*
435 %{_mandir}/man8/net.8*
436 %{_mandir}/man1/smbcquotas.1*
437
438 ##########
439
440 %files common
441 %defattr(-,root,root)
442 %dir %{_sysconfdir}/samba
443 %dir %{_libarchdir}/samba
444 %dir %{_libarchdir}/samba/charset
445 %config(noreplace) %{_sysconfdir}/samba/smb.conf
446 %config(noreplace) %{_sysconfdir}/samba/lmhosts
447
448 %attr(755,root,root) /%{_libarch}/libnss_wins.so*
449 %attr(755,root,root) /%{_libarch}/libnss_winbind.so*
450 %attr(755,root,root) /%{_libarch}/security/pam_winbind.so
451 %attr(755,root,root) /%{_libarch}/security/pam_smbpass.so
452
453 %{_includedir}/libsmbclient.h
454 %{_libarchdir}/libsmbclient.*
455 %{_includedir}/smb_share_modes.h
456 %{_libarchdir}/libsmbsharemodes.*
457
458 %{_libarchdir}/samba/*.dat
459 %{_libarchdir}/samba/*.msg
460 %{_libarchdir}/samba/charset/*.so
461
462 %{_includedir}/netapi.h
463 %{_includedir}/wbclient.h
464 %{_includedir}/talloc.h
465 %{_includedir}/tdb.h
466 %{_libarchdir}/libnetapi.so*
467 %{_libarchdir}/libtalloc.so*
468 %{_libarchdir}/libtdb.so*
469 %{_libarchdir}/libwbclient.so*
470
471 %{_bindir}/testparm
472 %{_bindir}/smbpasswd
473 %{_bindir}/profiles
474
475 %{_bindir}/ldbadd
476 %{_bindir}/ldbdel
477 %{_bindir}/ldbedit
478 %{_bindir}/ldbmodify
479 %{_bindir}/ldbsearch
480
481 %{_mandir}/man1/profiles.1*
482 %{_mandir}/man1/testparm.1*
483 %{_mandir}/man5/smb.conf.5*
484 %{_mandir}/man5/lmhosts.5*
485 %{_mandir}/man8/smbpasswd.8*
486 %{_mandir}/man7/libsmbclient.7*
487 %{_mandir}/man7/pam_winbind.7*
488
489 %{_mandir}/man1/ldbadd.1*
490 %{_mandir}/man1/ldbdel.1*
491 %{_mandir}/man1/ldbedit.1*
492 %{_mandir}/man1/ldbmodify.1*
493 %{_mandir}/man1/ldbsearch.1*
494
495 %changelog
496 * Fri Jan 16 2004 Gerald (Jerry) Carter <jerry@samba,org>
497 - Removed ChangeLog entries since they are kept in CVS
498
499
500