1966ac7e24fe15a86a7c7cacc82782d7748a4727
[samba.git] / ctdb / packaging / RPM / ctdb.spec.in
1 %define with_systemd  %{?_with_systemd: 1} %{?!_with_systemd: 0}
2 %define initdir %{_sysconfdir}/init.d
3 Name: ctdb
4 Summary: Clustered TDB
5 Vendor: Samba Team
6 Packager: Samba Team <samba@samba.org>
7 Version: @VERSION@
8 Release: @RELEASE@
9 Epoch: 0
10 License: GNU GPL version 3
11 Group: System Environment/Daemons
12 URL: http://ctdb.samba.org/
13
14 Source: ctdb-%{version}.tar.gz
15
16 # Packages
17 Requires: coreutils, sed, gawk, iptables, iproute, procps, ethtool, sudo
18 # Commands - package name might vary
19 Requires: /usr/bin/killall, /bin/kill, /bin/netstat
20
21 Provides: ctdb = %{version}
22
23 Prefix: /usr
24 BuildRoot: %{_tmppath}/%{name}-%{version}-root
25
26 # Allow build with system libraries
27 # To enable, run rpmbuild with,
28 #      "--with system_talloc"
29 #      "--with system_tdb"
30 #      "--with system_tevent"
31 #%define with_included_talloc %{?_with_system_talloc: 0} %{?!_with_system_talloc: 1}
32 #%define with_included_tdb %{?_with_system_tdb: 0} %{?!_with_system_tdb: 1}
33 #%define with_included_tevent %{?_with_system_tevent: 0} %{?!_with_system_tevent: 1}
34
35 %define with_included_talloc 0
36 %define with_included_tevent 0
37 %define with_included_tdb 0
38
39 # Required minimum library versions when building with system libraries
40 %define libtalloc_version 2.0.8
41 %define libtdb_version 1.3.11
42 %define libtevent_version 0.9.16
43
44 %if ! %with_included_talloc
45 BuildRequires: libtalloc-devel >= %{libtalloc_version}
46 Requires: libtalloc >= %{libtalloc_version}
47 %endif
48 %if ! %with_included_tdb
49 BuildRequires: libtdb-devel >= %{libtdb_version}
50 Requires: libtdb >= %{libtdb_version}
51 %endif
52 %if ! %with_included_tevent
53 BuildRequires: libtevent-devel >= %{libtevent_version}
54 Requires: libtevent >= %{libtevent_version}
55 %endif
56
57 # To build the ctdb-pcp-pmda package, run rpmbuild with "--with pmda"
58 %define with_pcp_pmda  %{?_with_pmda: 1} %{?!_with_pmda: 0}
59 %if %with_pcp_pmda
60 BuildRequires: pcp-libs-devel
61 %endif
62
63 %if %{with_systemd}
64 BuildRequires: systemd-units
65 %endif
66
67 %description
68 ctdb is the clustered database used by samba
69
70 #######################################################################
71
72
73
74 %prep
75 %setup -q
76 # setup the init script and sysconfig file
77 %setup -T -D -n ctdb-%{version} -q
78
79 %build
80
81 ## check for ccache
82 if ccache -h >/dev/null 2>&1 ; then
83         CC="ccache gcc"
84 else
85         CC="gcc"
86 fi
87
88 export CC
89
90 CFLAGS="$RPM_OPT_FLAGS $EXTRA -D_GNU_SOURCE" ./buildtools/bin/waf configure \
91         --builtin-libraries=replace,popt \
92         --bundled-libraries=!talloc,!tevent,!tdb \
93         --minimum-library-version=talloc:%libtalloc_version,tdb:%libtdb_version,tevent:%libtevent_version \
94 %if %with_pcp_pmda
95         --enable-pmda \
96 %endif
97         --prefix=%{_prefix} \
98         --includedir=%{_includedir}/ctdb \
99         --libdir=%{_libdir} \
100         --libexecdir=%{_libexecdir} \
101         --sysconfdir=%{_sysconfdir} \
102         --mandir=%{_mandir} \
103         --localstatedir=%{_localstatedir}
104
105 ./buildtools/bin/waf build
106
107 %install
108 # Clean up in case there is trash left from a previous build
109 rm -rf $RPM_BUILD_ROOT
110
111 # Create the target build directory hierarchy
112 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sudoers.d
113
114 DESTDIR=$RPM_BUILD_ROOT ./buildtools/bin/waf install
115
116 install -m644 config/ctdb.conf $RPM_BUILD_ROOT%{_sysconfdir}/ctdb
117 install -m644 config/ctdbd.conf $RPM_BUILD_ROOT%{_sysconfdir}/ctdb
118 install -m644 config/ctdb.tunables $RPM_BUILD_ROOT%{_sysconfdir}/ctdb
119 install -m644 config/script.options $RPM_BUILD_ROOT%{_sysconfdir}/ctdb
120
121 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
122 install -m644 config/ctdb.sysconfig $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/ctdb
123
124 %if %{with_systemd}
125 mkdir -p $RPM_BUILD_ROOT%{_unitdir}
126 install -m 755 config/ctdb.service $RPM_BUILD_ROOT%{_unitdir}
127 %else
128 mkdir -p $RPM_BUILD_ROOT%{initdir}
129 install -m755 config/ctdb.init $RPM_BUILD_ROOT%{initdir}/ctdb
130 %endif
131
132 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/ctdb/notify.d
133
134 # This is a hack. All documents should be installed in /usr/share/doc.
135 rm -f $RPM_BUILD_ROOT%{_sysconfdir}/ctdb/events.d/README
136 cp config/events.d/README README.eventscripts
137 rm -f $RPM_BUILD_ROOT%{_sysconfdir}/ctdb/nfs-checks.d/README
138 cp config/nfs-checks.d/README README.nfs-checks.d
139 cp config/notify.d.README README.notify.d
140
141 # Remove "*.old" files
142 find $RPM_BUILD_ROOT -name "*.old" -exec rm -f {} \;
143
144 %clean
145 rm -rf $RPM_BUILD_ROOT
146
147
148 #######################################################################
149 ## Files section                                                     ##
150 #######################################################################
151
152 %files
153 %defattr(-,root,root)
154
155 %config(noreplace) %{_sysconfdir}/ctdb/ctdb.conf
156 %config(noreplace) %{_sysconfdir}/ctdb/ctdbd.conf
157 %config(noreplace) %{_sysconfdir}/ctdb/ctdb.tunables
158 %config(noreplace) %{_sysconfdir}/ctdb/script.options
159 %{_sysconfdir}/ctdb/notify.sh
160 %dir %{_sysconfdir}/ctdb/notify.d
161 %config(noreplace) %{_sysconfdir}/ctdb/debug-hung-script.sh
162 %config(noreplace) %{_sysconfdir}/ctdb/ctdb-crash-cleanup.sh
163 %config(noreplace) %{_sysconfdir}/ctdb/debug_locks.sh
164
165 %config(noreplace, missingok) %{_sysconfdir}/sysconfig/ctdb
166
167 %if %{with_systemd}
168 %{_unitdir}/ctdb.service
169 %else
170 %attr(755,root,root) %{initdir}/ctdb
171 %endif
172
173 %attr(755,root,root) %{_sysconfdir}/ctdb/notify.d
174
175 %doc README COPYING
176 %doc README.eventscripts README.notify.d
177 %doc doc/recovery-process.txt
178 %doc doc/cluster_mutex_helper.txt
179 %doc doc/*.html
180 %doc doc/examples
181 %{_sysconfdir}/sudoers.d/ctdb
182 %dir %{_sysconfdir}/ctdb
183 %{_sysconfdir}/ctdb/functions
184 %dir %{_sysconfdir}/ctdb/events.d
185 %{_sysconfdir}/ctdb/events.d/*
186 %dir %{_sysconfdir}/ctdb/nfs-checks.d
187 %config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/00.portmapper.check
188 %config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/10.status.check
189 %config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/20.nfs.check
190 %config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/30.nlockmgr.check
191 %config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/40.mountd.check
192 %config(noreplace) %{_sysconfdir}/ctdb/nfs-checks.d/50.rquotad.check
193 %{_sysconfdir}/ctdb/statd-callout
194 %{_sysconfdir}/ctdb/nfs-linux-kernel-callout
195 %{_sbindir}/ctdbd
196 %{_sbindir}/ctdbd_wrapper
197 %{_bindir}/ctdb
198 %{_bindir}/ping_pong
199 %{_bindir}/ltdbtool
200 %{_bindir}/ctdb_diagnostics
201 %{_bindir}/onnode
202 %dir %{_libexecdir}/ctdb
203 %{_libexecdir}/ctdb/*
204 %dir %{_libdir}
205 %{_libdir}/ctdb/lib*
206 %{_mandir}/man1/ctdb.1.gz
207 %{_mandir}/man1/ctdb_diagnostics.1.gz
208 %{_mandir}/man1/ctdbd.1.gz
209 %{_mandir}/man1/ctdbd_wrapper.1.gz
210 %{_mandir}/man1/onnode.1.gz
211 %{_mandir}/man1/ltdbtool.1.gz
212 %{_mandir}/man1/ping_pong.1.gz
213 %{_mandir}/man5/ctdb.conf.5.gz
214 %{_mandir}/man5/ctdb-script.options.5.gz
215 %{_mandir}/man5/ctdb.sysconfig.5.gz
216 %{_mandir}/man5/ctdbd.conf.5.gz
217 %{_mandir}/man7/ctdb.7.gz
218 %{_mandir}/man7/ctdb-statistics.7.gz
219 %{_mandir}/man7/ctdb-tunables.7.gz
220 %attr(0700,root,root) %dir %{_localstatedir}/lib/ctdb
221 %attr(0700,root,root) %dir %{_localstatedir}/lib/ctdb/*
222 %attr(0700,root,root) %dir %{_localstatedir}/run/ctdb
223
224
225 %package devel
226 Summary: CTDB development libraries
227 Group: Development/Libraries
228
229 %description devel
230 development libraries for ctdb
231
232 %files devel
233 %defattr(-,root,root)
234
235 %package tests
236 Summary: CTDB test suite
237 Group: Development/Tools
238 Requires: ctdb = %{version}
239 Requires: nc
240
241 %description tests
242 test suite for ctdb
243
244 %files tests
245 %defattr(-,root,root)
246 %dir %{_datadir}/%{name}/tests
247 %{_datadir}/%{name}/tests/*
248 %dir %{_libexecdir}/%{name}/tests
249 %{_libexecdir}/%{name}/tests/*
250 %{_bindir}/ctdb_run_tests
251 %{_bindir}/ctdb_run_cluster_tests
252 %doc tests/README
253
254 %if %with_pcp_pmda
255
256 %package pcp-pmda
257 Summary: CTDB PCP pmda support
258 Group: Development/Tools
259 Requires: ctdb = %{version}
260 Requires: pcp-libs
261
262 %description pcp-pmda
263 Performance Co-Pilot (PCP) support for CTDB
264
265 %files pcp-pmda
266 %dir %{_localstatedir}/lib/pcp/pmdas/ctdb
267 %{_localstatedir}/lib/pcp/pmdas/ctdb/*
268
269 %endif