Obsolete earlier devel pkg name
[shibboleth/cpp-sp.git] / shibboleth.spec.in
1 Name:           shibboleth-sp
2 Version:        @PACKAGE_VERSION@
3 Release:        1
4 Summary:        Open source system for attribute-based Web SSO
5 Group:          Productivity/Networking/Security
6 Vendor:         Shibboleth Consortium
7 License:        Apache 2.0
8 URL:            http://shibboleth.net/
9 Source:         %{name}-%{version}.tar.gz
10 BuildRoot:      %{_tmppath}/%{name}-%{version}-root
11 Obsoletes:      @PACKAGE_NAME@ < %{version}-%{release}
12 Requires:       openssl
13 PreReq:         xmltooling-schemas, opensaml-schemas
14 %if 0%{?suse_version} > 1030 && 0%{?suse_version} < 1130
15 PreReq:         %{insserv_prereq} %{fillup_prereq}
16 BuildRequires:  libXerces-c-devel >= 2.8.0
17 %else
18 BuildRequires:  libxerces-c-devel >= 2.8.0
19 %endif
20 BuildRequires:  libxml-security-c-devel >= 1.4.0
21 BuildRequires:  libxmltooling-devel >= 1.5
22 BuildRequires:  libsaml-devel >= 2.5
23 %{?_with_log4cpp:BuildRequires: liblog4cpp-devel >= 1.0}
24 %{!?_with_log4cpp:BuildRequires: liblog4shib-devel >= 1.0.4}
25 %if 0%{?rhel} >= 6 || 0%{?centos_version} >= 600
26 Requires:               libcurl-openssl >= 7.21.7
27 BuildRequires:  chrpath
28 %endif
29 BuildRequires:  gcc-c++, zlib-devel, boost-devel >= 1.32.0
30 %{!?_without_doxygen:BuildRequires: doxygen}
31 %{!?_without_odbc:BuildRequires:unixODBC-devel}
32 %{?_with_fastcgi:BuildRequires: fcgi-devel}
33 %if 0%{?centos_version} >= 600
34 BuildRequires:  libmemcached-devel
35 %endif
36 %{?_with_memcached:BuildRequires: libmemcached-devel}
37 %if "%{_vendor}" == "redhat"
38 %{!?_without_builtinapache:BuildRequires: httpd-devel}
39 BuildRequires: redhat-rpm-config
40 Requires(pre): shadow-utils
41 Requires(post): chkconfig
42 Requires(preun): chkconfig, initscripts
43 %endif
44 %if "%{_vendor}" == "suse"
45 Requires(pre): pwdutils
46 %{!?_without_builtinapache:BuildRequires: apache2-devel}
47 %endif
48
49 %define runuser shibd
50 %if "%{_vendor}" == "suse"
51 %define pkgdocdir %{_docdir}/shibboleth
52 %else
53 %define pkgdocdir %{_docdir}/shibboleth-%{version}
54 %endif
55
56 %description
57 Shibboleth is a Web Single Sign-On implementations based on OpenSAML
58 that supports multiple protocols, federated identity, and the extensible
59 exchange of rich attributes subject to privacy controls.
60
61 This package contains the Shibboleth Service Provider runtime libraries,
62 daemon, default plugins, and Apache module(s).
63
64 %package devel
65 Summary:        Shibboleth Development Headers
66 Group:          Development/Libraries/C and C++
67 Requires:       %{name} = %{version}-%{release}
68 Obsoletes:      shibboleth-devel < %{version}-%{release}
69 %if 0%{?suse_version} > 1030 && 0%{?suse_version} < 1130
70 Requires:       libXerces-c-devel >= 2.8.0
71 %else
72 Requires:       libxerces-c-devel >= 2.8.0
73 %endif
74 Requires:       libxml-security-c-devel >= 1.4.0
75 Requires:       libxmltooling-devel >= 1.5
76 Requires:       libsaml-devel >= 2.5
77 %{?_with_log4cpp:Requires: liblog4cpp-devel >= 1.0}
78 %{!?_with_log4cpp:Requires: liblog4shib-devel >= 1.0.4}
79
80 %description devel
81 Shibboleth is a Web Single Sign-On implementations based on OpenSAML
82 that supports multiple protocols, federated identity, and the extensible
83 exchange of rich attributes subject to privacy controls.
84
85 This package includes files needed for development with Shibboleth.
86
87 %prep
88 %setup -q
89
90 %build
91 %if 0%{?centos_version} >= 600
92         %configure %{?_without_odbc:--disable-odbc} %{?_without_adfs:--disable-adfs} %{?_with_fastcgi} %{!?_without_memcached:--with-memcached} %{?shib_options}
93 %else
94         %configure %{?_without_odbc:--disable-odbc} %{?_without_adfs:--disable-adfs} %{?_with_fastcgi} %{?_with_memcached} %{?shib_options}
95 %endif
96 %{__make} pkgdocdir=%{pkgdocdir}
97
98 %install
99 %{__make} install NOKEYGEN=1 DESTDIR=$RPM_BUILD_ROOT pkgdocdir=%{pkgdocdir}
100
101 %if "%{_vendor}" == "suse"
102         %{__sed} -i "s/\/var\/log\/httpd/\/var\/log\/apache2/g" \
103                 $RPM_BUILD_ROOT%{_sysconfdir}/shibboleth/native.logger
104 %endif
105
106 # Plug the SP into the built-in Apache on a recognized system.
107 touch rpm.filelist
108 APACHE_CONFIG="no"
109 if [ -f $RPM_BUILD_ROOT%{_libdir}/shibboleth/mod_shib_13.so ] ; then
110         APACHE_CONFIG="apache.config"
111 fi
112 if [ -f $RPM_BUILD_ROOT%{_libdir}/shibboleth/mod_shib_20.so ] ; then
113         APACHE_CONFIG="apache2.config"
114 fi
115 if [ -f $RPM_BUILD_ROOT%{_libdir}/shibboleth/mod_shib_22.so ] ; then
116         APACHE_CONFIG="apache22.config"
117 fi
118 if [ -f $RPM_BUILD_ROOT%{_libdir}/shibboleth/mod_shib_24.so ] ; then
119         APACHE_CONFIG="apache24.config"
120 fi
121 %{?_without_builtinapache:APACHE_CONFIG="no"}
122 if [ "$APACHE_CONFIG" != "no" ] ; then
123         APACHE_CONFD="no"
124         if [ -d %{_sysconfdir}/httpd/conf.d ] ; then
125                 APACHE_CONFD="%{_sysconfdir}/httpd/conf.d"
126         fi
127         if [ -d %{_sysconfdir}/apache2/conf.d ] ; then
128                 APACHE_CONFD="%{_sysconfdir}/apache2/conf.d"
129         fi
130         if [ "$APACHE_CONFD" != "no" ] ; then
131                 %{__mkdir} -p $RPM_BUILD_ROOT$APACHE_CONFD
132                 %{__cp} -p $RPM_BUILD_ROOT%{_sysconfdir}/shibboleth/$APACHE_CONFIG $RPM_BUILD_ROOT$APACHE_CONFD/shib.conf 
133                 echo "%config(noreplace) $APACHE_CONFD/shib.conf" >> rpm.filelist
134         fi
135 fi
136
137 # Establish location of sysconfig file, if any.
138 SYSCONFIG_SHIBD="no"
139 %if "%{_vendor}" == "redhat"
140         %{__mkdir} -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
141         echo "%config(noreplace) %{_sysconfdir}/sysconfig/shibd" >> rpm.filelist
142         SYSCONFIG_SHIBD="$RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/shibd"
143 %endif
144 %if "%{_vendor}" == "suse"
145         %{__mkdir} -p $RPM_BUILD_ROOT%{_localstatedir}/adm/fillup-templates
146         echo "%{_localstatedir}/adm/fillup-templates/sysconfig.shibd" >> rpm.filelist
147         SYSCONFIG_SHIBD="$RPM_BUILD_ROOT%{_localstatedir}/adm/fillup-templates/sysconfig.shibd"
148 %endif
149 if [ "$SYSCONFIG_SHIBD" != "no" ] ; then
150         # Populate the sysconfig file.
151         cat > $SYSCONFIG_SHIBD <<EOF
152 # Shibboleth SP init script customization
153
154 # User account for shibd
155 SHIBD_USER=%{runuser}
156 EOF
157         %if 0%{?rhel} >= 6 || 0%{?centos_version} >= 600
158                 cat >> $SYSCONFIG_SHIBD <<EOF
159
160 # Override OS-supplied libcurl
161 export LD_LIBRARY_PATH=/opt/shibboleth/%{_lib}
162 EOF
163                 # Strip existing rpath to libcurl.
164                 chrpath -d $RPM_BUILD_ROOT%{_sbindir}/shibd
165                 chrpath -d $RPM_BUILD_ROOT%{_bindir}/mdquery
166                 chrpath -d $RPM_BUILD_ROOT%{_bindir}/resolvertest
167         %endif
168 fi
169
170 %if "%{_vendor}" == "redhat" || "%{_vendor}" == "suse"
171         # %{_initddir} not yet in RHEL5, use deprecated %{_initrddir}
172         install -d -m 0755 $RPM_BUILD_ROOT%{_initrddir}
173         install -m 0755 $RPM_BUILD_ROOT%{_sysconfdir}/shibboleth/shibd-%{_vendor} $RPM_BUILD_ROOT%{_initrddir}/shibd
174 %if "%{_vendor}" == "suse"
175         install -d -m 0755 $RPM_BUILD_ROOT/%{_sbindir}
176         %{__ln_s} -f %{_initrddir}/shibd $RPM_BUILD_ROOT%{_sbindir}/rcshibd
177 %endif
178 %endif
179
180 %check
181 %{__make} check
182
183 %clean
184 [ "$RPM_BUILD_ROOT" != "/" ] && %{__rm} -rf $RPM_BUILD_ROOT
185
186 %pre
187 getent group %{runuser} >/dev/null || groupadd -r %{runuser}
188 getent passwd %{runuser} >/dev/null || useradd -r -g %{runuser} \
189         -d  %{_localstatedir}/run/shibboleth -s /sbin/nologin -c "Shibboleth SP daemon" %{runuser}
190 exit 0
191
192 %post
193 %ifnos solaris2.8 solaris2.9 solaris2.10
194 /sbin/ldconfig
195 %endif
196
197 # Key generation or ownership fix
198 cd %{_sysconfdir}/shibboleth
199 if [ -f sp-key.pem ] ; then
200         %{__chown} %{runuser}:%{runuser} sp-key.pem sp-cert.pem 2>/dev/null || :
201 else
202         sh ./keygen.sh -b -u %{runuser} -g %{runuser}
203 fi
204
205 # Fix ownership of log files (even on new installs, if they're left from an older one).
206 %{__chown} %{runuser}:%{runuser} %{_localstatedir}/log/shibboleth/* 2>/dev/null || :
207
208 %if "%{_vendor}" == "redhat"
209         if [ "$1" -gt "1" ] ; then
210                 # On Red Hat with shib.conf installed, clean up old Alias commands
211                 # by pointing them at new version-independent /usr/share/share tree.
212                 # Any Aliases we didn't create we assume are custom files.
213                 # This is to accomodate making shib.conf a noreplace config file.
214                 # We can't do this for SUSE, because they disallow changes to
215                 # packaged files in scriplets.
216                 APACHE_CONF="no"
217                 if [ -f %{_sysconfdir}/httpd/conf.d/shib.conf ] ; then
218                         APACHE_CONF="%{_sysconfdir}/httpd/conf.d/shib.conf"
219                 fi
220                 if [ "$APACHE_CONF" != "no" ] ; then
221                         %{__sed} -i "s/\/usr\/share\/doc\/shibboleth\(\-\(.\)\{1,\}\)\{0,1\}\/main\.css/\/usr\/share\/shibboleth\/main.css/g" \
222                                 $APACHE_CONF
223                         %{__sed} -i "s/\/usr\/share\/doc\/shibboleth\(\-\(.\)\{1,\}\)\{0,1\}\/logo\.jpg/\/usr\/share\/shibboleth\/logo.jpg/g" \
224                                 $APACHE_CONF
225                 fi
226         fi
227
228         # This adds the proper /etc/rc*.d links for the script
229         /sbin/chkconfig --add shibd
230
231         # On upgrade, restart components if they're already running.
232         # This gets repeated now down in %postun, and the next release
233         # should remove this copy. If we yank it now, we'll break upgrades.
234         if [ "$1" -gt "1" ] ; then
235                 /etc/init.d/shibd status 1>/dev/null && /etc/init.d/shibd restart 1>/dev/null
236                 %{!?_without_builtinapache:/etc/init.d/httpd status 1>/dev/null && /etc/init.d/httpd restart 1>/dev/null}
237                 exit 0
238         fi
239 %endif
240 %if "%{_vendor}" == "suse"
241         # This adds the proper /etc/rc*.d links for the script
242         # and populates the sysconfig/shibd file.
243         cd /
244         %{fillup_only -n shibd}
245         %insserv_force_if_yast shibd
246 %endif
247
248 %preun
249 # On final removal, stop shibd and remove service, restart Apache if running.
250 %if "%{_vendor}" == "redhat"
251         if [ "$1" -eq 0 ] ; then
252                 /sbin/service shibd stop >/dev/null 2>&1
253                 /sbin/chkconfig --del shibd
254                 %{!?_without_builtinapache:/etc/init.d/httpd status 1>/dev/null && /etc/init.d/httpd restart 1>/dev/null}
255         fi
256 %endif
257 %if "%{_vendor}" == "suse"
258         %stop_on_removal shibd
259         if [ "$1" -eq 0 ] ; then
260                 %{!?_without_builtinapache:/etc/init.d/apache2 status 1>/dev/null && /etc/init.d/apache2 restart 1>/dev/null}
261         fi
262 %endif
263 exit 0
264
265 %postun
266 %ifnos solaris2.8 solaris2.9 solaris2.10
267 /sbin/ldconfig
268 %endif
269 %if "%{_vendor}" == "redhat"
270         # On upgrade, restart components if they're already running.
271         if [ "$1" -ge "1" ] ; then
272                 /etc/init.d/shibd status 1>/dev/null && /etc/init.d/shibd restart 1>/dev/null
273                 %{!?_without_builtinapache:/etc/init.d/httpd status 1>/dev/null && /etc/init.d/httpd restart 1>/dev/null}
274                 exit 0
275         fi
276 %endif
277 %if "%{_vendor}" == "suse"
278         cd / 
279         %restart_on_update shibd
280         %{!?_without_builtinapache:%restart_on_update apache2}
281         %{insserv_cleanup}
282 %endif
283
284 %posttrans
285 # ugly hack if init script got removed during %postun by upgraded (buggy/2.1) package
286 %if "%{_vendor}" == "redhat"
287         if [ ! -f %{_initrddir}/shibd ] ; then
288                 if [ -f %{_sysconfdir}/shibboleth/shibd-%{_vendor} ] ; then
289                         %{__cp} -p %{_sysconfdir}/shibboleth/shibd-%{_vendor} %{_initrddir}/shibd
290                         %{__chmod} 755 %{_initrddir}/shibd
291                         /sbin/chkconfig --add shibd
292         fi
293 fi
294 %endif
295
296 %files -f rpm.filelist
297 %defattr(-,root,root,-)
298 %{_sbindir}/shibd
299 %{_bindir}/mdquery
300 %{_bindir}/resolvertest
301 %{_libdir}/libshibsp.so.*
302 %{_libdir}/libshibsp-lite.so.*
303 %dir %{_libdir}/shibboleth
304 %{_libdir}/shibboleth/*
305 %attr(0750,%{runuser},%{runuser}) %dir %{_localstatedir}/log/shibboleth
306 %attr(0755,%{runuser},%{runuser}) %dir %{_localstatedir}/run/shibboleth
307 %attr(0755,%{runuser},%{runuser}) %dir %{_localstatedir}/cache/shibboleth
308 %dir %{_datadir}/xml/shibboleth
309 %{_datadir}/xml/shibboleth/*
310 %dir %{_datadir}/shibboleth
311 %{_datadir}/shibboleth/*
312 %dir %{_sysconfdir}/shibboleth
313 %config(noreplace) %{_sysconfdir}/shibboleth/*.xml
314 %config(noreplace) %{_sysconfdir}/shibboleth/*.html
315 %config(noreplace) %{_sysconfdir}/shibboleth/*.logger
316 %if "%{_vendor}" == "redhat" || "%{_vendor}" == "suse"
317 %config %{_initrddir}/shibd
318 %endif
319 %if "%{_vendor}" == "suse"
320 %{_sbindir}/rcshibd
321 %endif
322 %{_sysconfdir}/shibboleth/*.dist
323 %{_sysconfdir}/shibboleth/apache*.config
324 %{_sysconfdir}/shibboleth/shibd-*
325 %attr(0755,root,root) %{_sysconfdir}/shibboleth/keygen.sh
326 %attr(0755,root,root) %{_sysconfdir}/shibboleth/metagen.sh
327 %{_sysconfdir}/shibboleth/*.xsl
328 %doc %{pkgdocdir}
329 %exclude %{pkgdocdir}/api
330
331 %files devel
332 %defattr(-,root,root,-)
333 %{_includedir}/*
334 %{_libdir}/libshibsp.so
335 %{_libdir}/libshibsp-lite.so
336 %doc %{pkgdocdir}/api
337
338 %changelog
339 * Thu Mar 1 2012  Scott Cantor  <cantor.2@osu.edu>  - 2.5-1
340 - Move logo and stylesheet to version-independent tree
341 - Make shib.conf noreplace
342 - Post-fixup of Alias commands in older shib.conf
343 - Changes to run shibd as non-root shibboleth user
344 - Move init customizations to /etc/sysconfig/shibd
345 - Copy shibd restart for Red Hat to postun
346 - Add boost-devel dependency
347 - Build memcache plugin on RH6
348 - Add cachedir to install
349 - Add Apache 2.4 to install
350
351 * Sun Jun 26 2011  Scott Cantor  <cantor.2@osu.edu>  - 2.4.3-1
352 - Log files shouldn't be world readable.
353 - Explicit requirement for libcurl-openssl on RHEL6
354 - Uncomment LD_LIBRARY_PATH in init script for RHEL6 
355 - Remove rpath from binaries for RHEL6
356
357 * Fri Dec 25 2009  Scott Cantor  <cantor.2@osu.edu>  - 2.4-1
358 - Update dependencies.
359
360 * Mon Nov 23 2009 Scott Cantor  <cantor.2@osu.edu>  - 2.3.1-1
361 - Reset revision for 2.3.1 release
362
363 * Wed Aug 19 2009 Scott Cantor  <cantor.2@osu.edu>  - 2.2.1-2
364 - SuSE init script changes
365 - Restart Apache on removal, not just upgrade
366 - Fix scriptlet exit values when Apache is stopped
367
368 * Mon Aug 10 2009 Scott Cantor  <cantor.2@osu.edu>  - 2.2.1-1
369 - Doc handling changes
370 - SuSE init script
371
372 * Tue Aug 4 2009 Scott Cantor  <cantor.2@osu.edu>  - 2.2.1-1
373 - Initial version for 2.2.1, with shibd/httpd restart on upgrade
374
375 * Thu Jun 25 2009 Scott Cantor  <cantor.2@osu.edu>  - 2.2-3
376 - Add additional cleanup to posttrans fix
377
378 * Tue Jun 23 2009 Scott Cantor  <cantor.2@osu.edu>  - 2.2-2
379 - Reverse without_builtinapache macro test
380 - Fix init script handling on Red Hat to handle upgrades
381
382 * Wed Dec 3 2008  Scott Cantor  <cantor.2@osu.edu>  - 2.2-1
383 - Bump minor version.
384 - Make keygen.sh executable.
385 - Fixing SUSE Xerces dependency name.
386 - Optionally package shib.conf.
387
388 * Tue Jun 10 2008  Scott Cantor  <cantor.2@osu.edu>  - 2.1-1
389 - Change shib.conf handling to treat as config file.
390
391 * Mon Mar 17 2008  Scott Cantor  <cantor.2@osu.edu>  - 2.0-6
392 - Official release.
393
394 * Fri Jan 18 2008  Scott Cantor  <cantor.2@osu.edu>  - 2.0-5
395 - Release candidate 1.
396
397 * Sun Oct 21 2007 Scott Cantor  <cantor.2@osu.edu>  - 2.0-4
398 - libexec -> lib/shibboleth changes
399 - Added doc subpackage
400
401 * Thu Aug 16 2007 Scott Cantor  <cantor.2@osu.edu>  - 2.0-3
402 - First public beta.
403
404 * Fri Jul 13 2007 Scott Cantor  <cantor.2@osu.edu>  - 2.0-2
405 - Second alpha release.
406
407 * Sun Jun 10 2007 Scott Cantor  <cantor.2@osu.edu>  - 2.0-1
408 - First alpha release.
409
410 * Mon Oct 2 2006 Scott Cantor   <cantor.2@osu.edu>  - 1.3-11
411 - Applied fix for secadv 20061002
412 - Fix for metadata loader loop
413
414 * Wed Jun 15 2006 Scott Cantor  <cantor.2@osu.edu>  - 1.3-10
415 - Applied fix for sec 20060615
416
417 * Fri Apr 15 2006 Scott Cantor  <cantor.2@osu.edu>  - 1.3-9
418 - Misc. patches, SuSE, Apache 2.2, gcc 4.1, and 64-bit support
419
420 * Mon Jan 9 2006 Scott Cantor  <cantor.2@osu.edu>  - 1.3-8
421 - Applied new fix for secadv 20060109
422
423 * Tue Nov 8 2005 Scott Cantor  <cantor.2@osu.edu>  - 1.3-7
424 - Applied new fix for secadv 20050901 plus rollup
425
426 * Fri Sep 23 2005 Scott Cantor  <cantor.2@osu.edu>  - 1.3-6
427 - Minor patches and default config changes
428 - pidfile patch
429 - Fix shib.conf creation
430 - Integrated init.d script
431 - Prevent replacement of config files
432
433 * Thu Sep 1 2005  Scott Cantor  <cantor.2@osu.edu>  - 1.3-5
434 - Applied fix for secadv 20050901 plus rollup of NSAPI fixes
435
436 * Sun Apr 24 2005  Scott Cantor  <cantor.2@osu.edu>  - 1.3-1
437 - Updated test programs and location of schemas.
438 - move siterefresh to to sbindir
439
440 * Fri Apr  1 2005  Derek Atkins  <derek@ihtfp.com>  - 1.3-1
441 - Add selinux-targeted-policy package
442 - move shar to sbindir
443
444 * Tue Oct 19 2004  Derek Atkins  <derek@ihtfp.com>  - 1.2-1
445 - Create SPEC file based on various versions in existence.