s3/packaging: Fix rpm build issues on RHEL.
[Samba.git] / packaging / RHEL / samba.spec.tmpl
blob505b1ea1ca33c6e79729a836b7b9d3a2875798cd
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)
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/
15 Source: samba-%{version}.tar.bz2
17 # Don't depend on Net::LDAP
18 Source998: filter-requires-samba.sh
19 Source999: setup.tar.bz2
21 Prereq: /sbin/chkconfig /bin/mktemp /usr/bin/killall
22 Prereq: fileutils sed /etc/init.d
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}
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
33 # Working around perl dependency problem from docs
34 %define __perl_requires %{SOURCE998}
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
43 %define _libarchdir /usr/%{_libarch}
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.
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}
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.
72 #######################################################################
73 %package common
74 Summary: Files used by both Samba servers and clients.
75 Group: Applications/System
76 Provides: samba-common = %{version}-%{release}
78 %description common
79 Samba-common provides files necessary for both the server and client
80 packages of Samba.
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}
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.
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
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".
109 #######################################################################
111 %prep
112 %setup -q
114 # setup the vendor files (init scripts, etc...)
115 %setup -T -D -a 999 -n samba-%{version} -q
117 %build
119 /bin/cp setup/filter-requires-samba.sh %{SOURCE998}
121 cd source3
122 # RPM_OPT_FLAGS="$RPM_OPT_FLAGS -D_FILE_OFFSET_BITS=64"
124 ## check for ccache
125 if [ "$(which ccache 2> /dev/null)" != "" ]; then
126         CC="ccache gcc"
127 else
128         CC="gcc"
129 fi 
131 ## always run autogen.sh
132 ./autogen.sh
134 ## ignore insufficiently linked libreadline (RH bugzilla #499837):
135 export LDFLAGS="$LDFLAGS -Wl,--allow-shlib-undefined,--no-as-needed"
137 CC="$CC" CFLAGS="$RPM_OPT_FLAGS $EXTRA -D_GNU_SOURCE" ./configure \
138         --prefix=%{_prefix} \
139         --localstatedir=/var \
140         --with-configdir=%{_sysconfdir}/samba \
141         --libdir=%{_libarchdir} \
142         --with-modulesdir=%{_libarchdir}/samba \
143         --with-pammodulesdir=%{_libarch}/security \
144         --with-lockdir=/var/lib/samba \
145         --with-logfilebase=/var/log/samba \
146         --with-mandir=%{_mandir} \
147         --with-piddir=/var/run \
148         --with-privatedir=%{_sysconfdir}/samba \
149         --with-sambabook=%{_datadir}/swat/using_samba \
150         --with-swatdir=%{_datadir}/swat \
151         --enable-cups \
152         --with-acl-support \
153         --with-ads \
154         --with-automount \
155         --with-fhs \
156         --with-pam_smbpass \
157         --with-libsmbclient \
158         --with-libsmbsharemodes \
159         --without-smbwrapper \
160         --with-pam \
161         --with-quotas \
162         --with-shared-modules=idmap_rid,idmap_ad,idmap_hash,idmap_adex \
163         --with-syslog \
164         --with-utmp \
165         --with-dnsupdate
167 make showlayout
169 ## check for gcc 3.4 or later
170 CC_VERSION=`${CC} --version | head -1 | awk '{print $3}'`
171 CC_MAJOR=`echo ${CC_VERSION} | cut -d. -f 1`
172 CC_MINOR=`echo ${CC_VERSION} | cut -d. -f 2`
173 if [ ${CC_MAJOR} -ge 3 ]; then
174         if [ ${CC_MAJOR} -gt 3 -o ${CC_MINOR} -ge 4 ]; then
175                 make pch
176         fi
180 make all modules pam_smbpass
182 # Remove some permission bits to avoid to many dependencies
183 cd ..
184 find examples docs -type f | xargs -r chmod -x
186 %install
187 # Clean up in case there is trash left from a previous build
188 rm -rf $RPM_BUILD_ROOT
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
209 cd source3
210 make DESTDIR=$RPM_BUILD_ROOT \
211         install
212 cd ..
214 # NSS winbind support
215 install -m 755 nsswitch/libnss_winbind.so $RPM_BUILD_ROOT/%{_libarch}/libnss_winbind.so.2
216 install -m 755 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 )
221 ## cleanup
222 /bin/rm -rf $RPM_BUILD_ROOT/usr/lib*/samba/security
224 # Install the miscellany
225 echo 127.0.0.1 localhost > $RPM_BUILD_ROOT%{_sysconfdir}/samba/lmhosts
227 install -m644 setup/samba.log $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/samba
228 install -m644 setup/swat $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/swat
229 install -m644 setup/samba.sysconfig $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/samba
230 install -m755 setup/smb.init $RPM_BUILD_ROOT%{initdir}/smb
231 install -m755 setup/winbind.init $RPM_BUILD_ROOT%{initdir}/winbind
232 install -m644 setup/samba.pamd $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/samba
233 install -m755 setup/smbprint $RPM_BUILD_ROOT%{_bindir}
234 install -m644 setup/smbusers $RPM_BUILD_ROOT%{_sysconfdir}/samba/smbusers
235 install -m644 setup/smb.conf $RPM_BUILD_ROOT%{_sysconfdir}/samba/smb.conf
236 install -m755 source3/script/mksmbpasswd.sh $RPM_BUILD_ROOT%{_bindir}
238 ln -s ../..%{initdir}/smb  $RPM_BUILD_ROOT%{_sbindir}/samba
239 ln -s ../..%{initdir}/winbind  $RPM_BUILD_ROOT%{_sbindir}/winbind
241 # Remove "*.old" files
242 find $RPM_BUILD_ROOT -name "*.old" -exec rm -f {} \;
244 ## don't duplicate the docs.  These are installed by/with SWAT
245 rm -rf docs/htmldocs
246 rm -rf docs/manpages
247 ( cd docs; ln -s %{_prefix}/share/swat/help htmldocs )
250 ## Clean out man pages for tools not installed here
252 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/log2pcap.1*
253 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/smbsh.1*
254 rm -f $RPM_BUILD_ROOT%{_mandir}/man5/vfstest.1*
257 %clean
258 rm -rf $RPM_BUILD_ROOT
260 %post
261 ## deal with an upgrade from a broken 3.0.21b RPM
262 if [ "$1" -eq "2" ]; then
263         if [ -d /var/cache/samba ]; then
264                 for file in `ls /var/cache/samba/*tdb`; do
265                         /bin/cp -up $file /var/lib/samba/`basename $file`
266                 done
267                 mkdir -p /var/lib/samba/eventlog
268                 for file in `ls /var/cache/samba/eventlog/*tdb`; do
269                         /bin/cp -up $file /var/lib/samba/eventlog/`basename $file`
270                 done
271                 /bin/mv /var/cache/samba /var/cache/samba.moved
272         fi
275 %preun
276 if [ $1 = 0 ] ; then
277     /sbin/chkconfig --del smb
278     /sbin/chkconfig --del winbind
279     # rm -rf /var/log/samba/* /var/lib/samba/*
280     /sbin/service smb stop >/dev/null 2>&1
282 exit 0
284 %postun
285 if [ "$1" -ge "1" ]; then
286         %{initdir}/smb restart >/dev/null 2>&1
287 fi      
290 %post swat
291 # Add swat entry to /etc/services if not already there.
292 if [ ! "`grep ^\s**swat /etc/services`" ]; then
293         echo 'swat        901/tcp     # Add swat service used via inetd' >> /etc/services
296 %post common
297 /sbin/ldconfig
299 %postun common 
300 /sbin/ldconfig
302 #######################################################################
303 ## Files section                                                     ##
304 #######################################################################
306 %files
307 %defattr(-,root,root)
309 %config(noreplace) %{_sysconfdir}/sysconfig/samba
310 %config(noreplace) %{_sysconfdir}/samba/smbusers
311 %attr(755,root,root) %config %{initdir}/smb
312 %attr(755,root,root) %config %{initdir}/winbind
313 %config(noreplace) %{_sysconfdir}/logrotate.d/samba
314 %config(noreplace) %{_sysconfdir}/pam.d/samba
316 %attr(0755,root,root) %dir /var/log/samba
317 %attr(0755,root,root) %dir /var/lib/samba
318 %attr(1777,root,root) %dir /var/spool/samba
320 %{_sbindir}/samba
321 %{_sbindir}/winbind
323 %{_sbindir}/smbd
324 %{_sbindir}/nmbd
325 %{_sbindir}/winbindd
327 %{_bindir}/mksmbpasswd.sh
328 %{_bindir}/smbcontrol
329 %{_bindir}/smbstatus
330 %{_bindir}/smbta-util
331 %{_bindir}/tdbbackup
332 %{_bindir}/tdbtool
333 %{_bindir}/tdbdump
334 %{_bindir}/tdbrestore
335 %{_bindir}/wbinfo
336 %{_bindir}/ntlm_auth
337 %{_bindir}/pdbedit
338 %{_bindir}/eventlogadm
340 %{_libarchdir}/samba/idmap/*.so
341 %{_libarchdir}/samba/nss_info/*.so
342 %{_libarchdir}/samba/vfs/*.so
343 %{_libarchdir}/samba/auth/*.so
345 %{_mandir}/man1/smbcontrol.1*
346 %{_mandir}/man1/smbstatus.1*
347 %{_mandir}/man1/vfstest.1*
348 %{_mandir}/man5/smbpasswd.5*
349 %{_mandir}/man7/samba.7*
350 %{_mandir}/man7/winbind_krb5_locator.7*
351 %{_mandir}/man8/nmbd.8*
352 %{_mandir}/man8/pdbedit.8*
353 %{_mandir}/man8/smbd.8*
354 %{_mandir}/man8/tdbbackup.8*
355 %{_mandir}/man8/tdbdump.8*
356 %{_mandir}/man8/tdbtool.8*
357 %{_mandir}/man8/eventlogadm.8*
358 %{_mandir}/man8/winbindd.8*
359 %{_mandir}/man1/ntlm_auth.1*
360 %{_mandir}/man1/wbinfo.1*
361 %{_mandir}/man8/vfs_*.8*
362 %{_mandir}/man8/idmap_*.8*
365 ##########
367 %files doc
368 %defattr(-,root,root)
369 %doc README COPYING Manifest 
370 %doc WHATSNEW.txt Roadmap
371 %doc docs
372 %doc examples/autofs examples/LDAP examples/libsmbclient examples/misc examples/printer-accounting
373 %doc examples/printing
374 %doc %{_datadir}/swat/help
375 %doc %{_datadir}/swat/using_samba
377 ##########
379 %files swat
380 %defattr(-,root,root)
381 %config(noreplace) %{_sysconfdir}/xinetd.d/swat
382 %dir %{_datadir}/swat
383 %{_datadir}/swat/include
384 %{_datadir}/swat/images
385 %{_datadir}/swat/lang
386 %{_sbindir}/swat
387 %{_mandir}/man8/swat.8*
389 ##########
391 %files client
392 %defattr(-,root,root)
394 %{_bindir}/rpcclient
395 %{_bindir}/smbcacls
396 %{_bindir}/sharesec
397 %{_bindir}/findsmb
398 %{_bindir}/smbcquotas
399 %{_bindir}/nmblookup
400 %{_bindir}/smbget
401 %{_bindir}/smbclient
402 %{_bindir}/smbprint
403 %{_bindir}/smbspool
404 %{_bindir}/smbtar
405 %{_bindir}/net
406 %{_bindir}/smbtree
408 %{_mandir}/man8/smbspool.8*
409 %{_mandir}/man1/smbget.1*
410 %{_mandir}/man5/smbgetrc.5*
411 %{_mandir}/man1/findsmb.1*
412 %{_mandir}/man1/nmblookup.1*
413 %{_mandir}/man1/rpcclient.1*
414 %{_mandir}/man1/smbcacls.1*
415 %{_mandir}/man1/sharesec.1*
416 %{_mandir}/man1/smbclient.1*
417 %{_mandir}/man1/smbtar.1*
418 %{_mandir}/man1/smbtree.1*
419 %{_mandir}/man8/net.8*
420 %{_mandir}/man1/smbcquotas.1*
422 ##########
424 %files common
425 %defattr(-,root,root)
426 %dir %{_sysconfdir}/samba
427 %dir %{_libarchdir}/samba
428 %dir %{_libarchdir}/samba/charset
429 %config(noreplace) %{_sysconfdir}/samba/smb.conf
430 %config(noreplace) %{_sysconfdir}/samba/lmhosts
432 %attr(755,root,root) /%{_libarch}/libnss_wins.so*
433 %attr(755,root,root) /%{_libarch}/libnss_winbind.so*
434 %attr(755,root,root) /%{_libarch}/security/pam_winbind.so
435 %attr(755,root,root) /%{_libarch}/security/pam_smbpass.so
436 /usr/share/locale/de/LC_MESSAGES/net.mo
437 /usr/share/locale/de/LC_MESSAGES/pam_winbind.mo
438 /usr/share/locale/ar/LC_MESSAGES/pam_winbind.mo
439 /usr/share/locale/cs/LC_MESSAGES/pam_winbind.mo
440 /usr/share/locale/da/LC_MESSAGES/pam_winbind.mo
441 /usr/share/locale/es/LC_MESSAGES/pam_winbind.mo
442 /usr/share/locale/fi/LC_MESSAGES/pam_winbind.mo
443 /usr/share/locale/fr/LC_MESSAGES/pam_winbind.mo
444 /usr/share/locale/hu/LC_MESSAGES/pam_winbind.mo
445 /usr/share/locale/it/LC_MESSAGES/pam_winbind.mo
446 /usr/share/locale/ja/LC_MESSAGES/pam_winbind.mo
447 /usr/share/locale/ko/LC_MESSAGES/pam_winbind.mo
448 /usr/share/locale/nb/LC_MESSAGES/pam_winbind.mo
449 /usr/share/locale/nl/LC_MESSAGES/pam_winbind.mo
450 /usr/share/locale/pl/LC_MESSAGES/pam_winbind.mo
451 /usr/share/locale/pt_BR/LC_MESSAGES/pam_winbind.mo
452 /usr/share/locale/ru/LC_MESSAGES/pam_winbind.mo
453 /usr/share/locale/sv/LC_MESSAGES/pam_winbind.mo
454 /usr/share/locale/zh_CN/LC_MESSAGES/pam_winbind.mo
455 /usr/share/locale/zh_TW/LC_MESSAGES/pam_winbind.mo
457 %{_includedir}/libsmbclient.h
458 %{_libarchdir}/libsmbclient.*
459 %{_includedir}/smb_share_modes.h
460 %{_libarchdir}/libsmbsharemodes.*
462 %{_libarchdir}/samba/*.dat
463 %{_libarchdir}/samba/*.msg
464 %{_libarchdir}/samba/charset/*.so
466 %{_includedir}/netapi.h
467 %{_includedir}/wbclient.h
468 %{_includedir}/talloc.h
469 %{_includedir}/tdb.h
470 %{_libarchdir}/libnetapi.so*
471 %{_libarchdir}/libtalloc.so*
472 %{_libarchdir}/libtdb.so*
473 %{_libarchdir}/libwbclient.so*
475 %{_bindir}/testparm
476 %{_bindir}/smbpasswd
477 %{_bindir}/profiles
479 %{_mandir}/man1/profiles.1*
480 %{_mandir}/man1/testparm.1*
481 %{_mandir}/man5/smb.conf.5*
482 %{_mandir}/man5/lmhosts.5*
483 %{_mandir}/man8/smbpasswd.8*
484 %{_mandir}/man5/pam_winbind.conf.5.*
485 %{_mandir}/man7/libsmbclient.7*
486 %{_mandir}/man8/smbta-util.8*
487 %{_mandir}/man8/pam_winbind.8*
489 %changelog
490 * Fri Jan 16 2004 Gerald (Jerry) Carter <jerry@samba,org>
491 - Removed ChangeLog entries since they are kept in CVS