Posttrans hack needs to be conditional, and copy from installed locations, not build...
[shibboleth/cpp-sp.git] / shibboleth.spec.in
1 Name:           shibboleth
2 Summary:        Open source system for attribute-based Web SSO
3 Version:        @-VERSION-@
4 Release:        2
5 #Copyright:     Internet2
6 Group:          System Environment/Libraries
7 License:        Apache style
8 URL:            http://shibboleth.internet2.edu/
9 Source0:        http://shibboleth.internet2.edu/downloads/%{name}-%{version}.tar.gz
10 BuildRoot:      %{_tmppath}/%{name}-%{version}-root
11 BuildRequires:  openssl-devel
12 %if 0%{?suse_version} > 1030
13 BuildRequires:  libXerces-c-devel >= 2.8.0
14 %else
15 BuildRequires:  xerces%{?xercesver}-c-devel >= 2.8.0
16 %endif
17 BuildRequires:  xml-security-c-devel >= 1.4.0
18 BuildRequires:  zlib-devel, opensaml-devel >= 2.2
19 %{?_with_log4cpp:BuildRequires: log4cpp-devel >= 1.0}
20 %{!?_with_log4cpp:BuildRequires: log4shib-devel}
21 %{?_with_fastcgi:BuildRequires: fcgi-devel}
22 %if "%{_vendor}" == "redhat"
23 %{!?_without_builtinapache:BuildRequires: httpd-devel}
24 %endif
25 %if "%{_vendor}" == "suse"
26 %{!?_without_builtinapache:BuildRequires: apache2-devel}
27 %endif
28
29
30 %description
31 Shibboleth, a project of Internet2/MACE, is developing architectures,
32 policy structures, practical technologies, and an open source
33 implementation to support inter-institutional sharing of web resources
34 subject to access controls. In addition, Shibboleth will develop a
35 policy framework that will allow inter-operation within the higher
36 education community.
37
38 This package contains the shibboleth runtime library and apache module.
39
40 %package devel
41 Summary: Shibboleth development Headers
42 Group: Development/Libraries
43 Requires: %{name} = %{version}
44 Requires: opensaml-devel >= 2.2
45
46 %description devel
47 Shibboleth, a project of Internet2/MACE, is developing architectures,
48 policy structures, practical technologies, and an open source
49 implementation to support inter-institutional sharing of web resources
50 subject to access controls. In addition, Shibboleth will develop a
51 policy framework that will allow inter-operation within the higher
52 education community.
53
54 This package contains the headers and other necessary files to build
55 applications that use the shibboleth library.
56
57 %package docs
58 Summary: Shibboleth API Documentation
59 Group: Development/Libraries
60 Requires: %{name} = %{version}
61
62 %description docs
63 Shibboleth Library API documentation generated by doxygen.
64
65 %prep
66 %setup -q
67
68 %build
69 %configure %{?_without_odbc:--disable-odbc} %{?_without_adfs:--disable-adfs} %{?_with_fastcgi} %{?_with_memcached} %{?shib_options}
70 %{__make}
71
72 %install
73 [ "$RPM_BUILD_ROOT" != "/" ] && %{__rm} -rf $RPM_BUILD_ROOT
74 %{__make} install NOKEYGEN=1 DESTDIR=$RPM_BUILD_ROOT
75
76 %if "%{_vendor}" == "suse"
77         %{__sed} -i "s/\/var\/log\/httpd/\/var\/log\/apache2/g" \
78                 $RPM_BUILD_ROOT/%{_sysconfdir}/%{name}/native.logger
79 %endif
80
81 # Plug the SP into Apache on a recognized system.
82 touch rpm.filelist
83 APACHE_CONFIG="no"
84 if [ -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/mod_shib_13.so ] ; then
85     APACHE_CONFIG="apache.config"
86 fi
87 if [ -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/mod_shib_20.so ] ; then
88     APACHE_CONFIG="apache2.config"
89 fi
90 if [ -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/mod_shib_22.so ] ; then
91     APACHE_CONFIG="apache22.config"
92 fi
93 %{?_without_builtinapache:APACHE_CONFIG="no"}
94 if [ "$APACHE_CONFIG" != "no" ] ; then
95     APACHE_CONFD="no"
96     if [ -d %{_sysconfdir}/httpd/conf.d ] ; then
97             APACHE_CONFD="%{_sysconfdir}/httpd/conf.d"
98     fi
99     if [ -d %{_sysconfdir}/apache2/conf.d ] ; then
100             APACHE_CONFD="%{_sysconfdir}/apache2/conf.d"
101     fi
102     if [ "$APACHE_CONFD" != "no" ] ; then
103         %{__mkdir} -p $RPM_BUILD_ROOT$APACHE_CONFD
104 %if "%{_vendor}" == "suse"
105         %{__sed} "s/\/usr\/doc\/%{name}/\/usr\/share\/doc\/packages\/%{name}/g" \
106             $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/$APACHE_CONFIG \
107             > $RPM_BUILD_ROOT$APACHE_CONFD/shib.conf
108 %else
109         %{__sed} "s/\/usr\/doc\/%{name}/\/usr\/share\/doc\/%{name}-@-VERSION-@/g" \
110             $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/$APACHE_CONFIG \
111             > $RPM_BUILD_ROOT$APACHE_CONFD/shib.conf
112 %endif
113         echo "%config $APACHE_CONFD/shib.conf" > rpm.filelist
114     fi
115 fi
116
117 %if "%{_vendor}" == "redhat"
118         # %{_initddir} not yet in RHEL5, use deprecated %{_initrddir}
119         mkdir -p $RPM_BUILD_ROOT%{_initrddir}
120         %{__cp} -p $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/shibd-%{_vendor} $RPM_BUILD_ROOT%{_initrddir}/shibd
121         %{__chmod} 755 $RPM_BUILD_ROOT%{_initrddir}/shibd
122 %endif
123
124 %check
125 %{__make} check
126
127 %clean
128 [ "$RPM_BUILD_ROOT" != "/" ] && %{__rm} -rf $RPM_BUILD_ROOT
129
130 %post
131 %ifnos solaris2.8 solaris2.9 solaris2.10
132 /sbin/ldconfig
133 %endif
134
135 %if "%{_vendor}" == "redhat"
136         # This adds the proper /etc/rc*.d links for the script
137         /sbin/chkconfig --add shibd
138 %endif
139
140 # Key generation
141 cd %{_sysconfdir}/%{name}
142 sh ./keygen.sh -b
143
144 %preun
145 %if "%{_vendor}" == "redhat"
146         if [ "$1" = 0 ] ; then
147                 /sbin/service shibd stop >/dev/null 2>&1
148                 /sbin/chkconfig --del shibd
149         fi
150 %endif
151
152 %postun
153 %ifnos solaris2.8 solaris2.9 solaris2.10
154 /sbin/ldconfig
155 %endif
156
157 %if "%{_vendor}" == "redhat"
158         if [ "$1" -ge "1" ] ; then
159                 #/sbin/service shibd condrestart >/dev/null 2>&1 || :
160                 /etc/init.d/shibd status 1>/dev/null && /etc/init.d/shibd start 1>/dev/null
161         fi
162 %endif
163
164 %posttrans
165 # ugly hack if init script got removed during %postun by upgraded (buggy/2.1) package
166 %if "%{_vendor}" == "redhat"
167     if [ ! -f %{_initrddir}/shibd ] ; then
168         if [ -f %{_sysconfdir}/%{name}/shibd-%{_vendor} ] ; then
169             %{__cp} -p %{_sysconfdir}/%{name}/shibd-%{_vendor} %{_initrddir}/shibd
170             %{__chmod} 755 %{_initrddir}/shibd
171         fi
172     fi
173 %endif
174
175 %files -f rpm.filelist
176 %defattr(-,root,root,-)
177 %{_sbindir}/shibd
178 %{_bindir}/mdquery
179 %{_bindir}/resolvertest
180 %{_libdir}/libshibsp.so.*
181 %{_libdir}/libshibsp-lite.so.*
182 %dir %{_libdir}/%{name}
183 %{_libdir}/%{name}/*
184 %exclude %{_libdir}/%{name}/*.la
185 %dir %{_localstatedir}/log/%{name}
186 %dir %{_localstatedir}/run/%{name}
187 %dir %{_datadir}/xml/%{name}
188 %{_datadir}/xml/%{name}/*
189 %dir %{_sysconfdir}/%{name}
190 %config(noreplace) %{_sysconfdir}/%{name}/*.xml
191 %config(noreplace) %{_sysconfdir}/%{name}/*.html
192 %config(noreplace) %{_sysconfdir}/%{name}/*.logger
193 %if "%{_vendor}" == "redhat"
194 %attr(755, root, root) %{_initrddir}/shibd
195 %endif
196 %{_sysconfdir}/%{name}/*.dist
197 %{_sysconfdir}/%{name}/apache*.config
198 %{_sysconfdir}/%{name}/shibd-redhat
199 %{_sysconfdir}/%{name}/shibd-debian
200 %{_sysconfdir}/%{name}/shibd-osx.plist
201 %attr(755, root, root) %{_sysconfdir}/%{name}/keygen.sh
202 %attr(755, root, root) %{_sysconfdir}/%{name}/metagen.sh
203 %{_sysconfdir}/%{name}/*.xsl
204 %docdir %{_datadir}/doc/%{name}
205 %{_datadir}/doc/%{name}/CREDITS.txt
206 %{_datadir}/doc/%{name}/FASTCGI.LICENSE
207 %{_datadir}/doc/%{name}/LICENSE.txt
208 %{_datadir}/doc/%{name}/LOG4CPP.LICENSE
209 %{_datadir}/doc/%{name}/logo.jpg
210 %{_datadir}/doc/%{name}/main.css
211 %{_datadir}/doc/%{name}/NOTICE.txt
212 %{_datadir}/doc/%{name}/OPENSSL.LICENSE
213 %{_datadir}/doc/%{name}/README.txt
214 %{_datadir}/doc/%{name}/RELEASE.txt
215
216 %files devel
217 %defattr(-,root,root,-)
218 %{_includedir}
219 %{_libdir}/libshibsp.so
220 %{_libdir}/libshibsp-lite.so
221
222 %files docs
223 %defattr(644,root,root,755)
224 %doc %{_datadir}/doc/%{name}/api
225
226 %changelog
227 * Tue Jun 23 2009 Scott Cantor  <cantor.2@osu.edu>  - 2.2-2
228 - Reverse without_builtinapache macro test
229 - Fix init script handling on Red Hat to handle upgrades
230
231 * Wed Dec 3 2008  Scott Cantor  <cantor.2@osu.edu>  - 2.2-1
232 - Bump minor version.
233 - Make keygen.sh executable.
234 - Fixing SUSE Xerces dependency name.
235 - Optionally package shib.conf.
236
237 * Tue Jun 10 2008  Scott Cantor  <cantor.2@osu.edu>  - 2.1-1
238 - Change shib.conf handling to treat as config file.
239
240 * Mon Mar 17 2008  Scott Cantor  <cantor.2@osu.edu>  - 2.0-6
241 - Official release.
242
243 * Fri Jan 18 2008  Scott Cantor  <cantor.2@osu.edu>  - 2.0-5
244 - Release candidate 1.
245
246 * Sun Oct 21 2007 Scott Cantor  <cantor.2@osu.edu>  - 2.0-4
247 - libexec -> lib/shibboleth changes
248 - Added doc subpackage
249
250 * Thu Aug 16 2007 Scott Cantor  <cantor.2@osu.edu>  - 2.0-3
251 - First public beta.
252
253 * Fri Jul 13 2007 Scott Cantor  <cantor.2@osu.edu>  - 2.0-2
254 - Second alpha release.
255
256 * Sun Jun 10 2007 Scott Cantor  <cantor.2@osu.edu>  - 2.0-1
257 - First alpha release.
258
259 * Mon Oct 2 2006 Scott Cantor   <cantor.2@osu.edu>  - 1.3-11
260 - Applied fix for secadv 20061002
261 - Fix for metadata loader loop
262
263 * Wed Jun 15 2006 Scott Cantor  <cantor.2@osu.edu>  - 1.3-10
264 - Applied fix for sec 20060615
265
266 * Fri Apr 15 2006 Scott Cantor  <cantor.2@osu.edu>  - 1.3-9
267 - Misc. patches, SuSE, Apache 2.2, gcc 4.1, and 64-bit support
268
269 * Mon Jan 9 2006 Scott Cantor  <cantor.2@osu.edu>  - 1.3-8
270 - Applied new fix for secadv 20060109
271
272 * Tue Nov 8 2005 Scott Cantor  <cantor.2@osu.edu>  - 1.3-7
273 - Applied new fix for secadv 20050901 plus rollup
274
275 * Fri Sep 23 2005 Scott Cantor  <cantor.2@osu.edu>  - 1.3-6
276 - Minor patches and default config changes
277 - pidfile patch
278 - Fix shib.conf creation
279 - Integrated init.d script
280 - Prevent replacement of config files
281
282 * Thu Sep 1 2005  Scott Cantor  <cantor.2@osu.edu>  - 1.3-5
283 - Applied fix for secadv 20050901 plus rollup of NSAPI fixes
284
285 * Sun Apr 24 2005  Scott Cantor  <cantor.2@osu.edu>  - 1.3-1
286 - Updated test programs and location of schemas.
287 - move siterefresh to to sbindir
288
289 * Fri Apr  1 2005  Derek Atkins  <derek@ihtfp.com>  - 1.3-1
290 - Add selinux-targeted-policy package
291 - move shar to sbindir
292
293 * Tue Oct 19 2004  Derek Atkins  <derek@ihtfp.com>  - 1.2-1
294 - Create SPEC file based on various versions in existence.