Renamed Applications/Application tags.
[shibboleth/sp.git] / shibboleth.spec.in
1 Name:           shibboleth
2 Summary:        Open source system to enable inter-institutional resource sharing
3 Version:        @-VERSION-@
4 Release:        5
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 BuildRequires:  xerces%{?xercesver}-c-devel >= 2.8.0
13 BuildRequires:  xml-security-c-devel >= 1.4.0
14 BuildRequires:  zlib-devel, opensaml-devel >= 2.0
15 %{?_with_log4cpp:BuildRequires: log4cpp-devel >= 1.0}
16 %{!?_with_log4cpp:BuildRequires: log4shib-devel}
17 %{?_with_fastcgi:BuildRequires: fcgi-devel}
18 %if "%{_vendor}" == "redhat"
19 %{!?_without_builtinapache:BuildRequires: httpd-devel}
20 %endif
21 %if "%{_vendor}" == "suse"
22 %{!?_without_builtinapache:BuildRequires: apache2-devel}
23 %endif
24
25
26 %description
27 Shibboleth, a project of Internet2/MACE, is developing architectures,
28 policy structures, practical technologies, and an open source
29 implementation to support inter-institutional sharing of web resources
30 subject to access controls. In addition, Shibboleth will develop a
31 policy framework that will allow inter-operation within the higher
32 education community.
33
34 This package contains the shibboleth runtime library and apache module.
35
36 %package devel
37 Summary: Shibboleth development Headers
38 Group: Development/Libraries
39 Requires: %{name} = %{version}
40
41 %description devel
42 Shibboleth, a project of Internet2/MACE, is developing architectures,
43 policy structures, practical technologies, and an open source
44 implementation to support inter-institutional sharing of web resources
45 subject to access controls. In addition, Shibboleth will develop a
46 policy framework that will allow inter-operation within the higher
47 education community.
48
49 This package contains the headers and other necessary files to build
50 applications that use the shibboleth library.
51
52 %package docs
53 Summary: Shibboleth API Documentation
54 Group: Development/Libraries
55 Requires: %{name} = %{version}
56
57 %description docs
58 Shibboleth Library API documentation generated by doxygen.
59
60 %prep
61 %setup -q
62
63 %build
64 %configure %{?_without_odbc:--disable-odbc} %{?_without_adfs:--disable-adfs} %{?_with_fastcgi} %{?shib_options}
65 %{__make}
66
67 %install
68 [ "$RPM_BUILD_ROOT" != "/" ] && %{__rm} -rf $RPM_BUILD_ROOT
69 %{__make} install DESTDIR=$RPM_BUILD_ROOT
70
71 %if "%{_vendor}" == "suse"
72         %{__sed} -i "s/\/var\/log\/httpd/\/var\/log\/apache2/g" \
73                 $RPM_BUILD_ROOT/%{_sysconfdir}/%{name}/native.logger
74 %endif
75
76 %check || :
77 %{__make} check
78
79 %clean
80 [ "$RPM_BUILD_ROOT" != "/" ] && %{__rm} -rf $RPM_BUILD_ROOT
81
82 %post
83 %ifnos solaris2.8 solaris2.9 solaris2.10
84 /sbin/ldconfig
85 %endif
86
87
88 # Plug the SP into Apache on a recognized system.
89 APACHE_CONFIG="no"
90 if [ -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/mod_shib_13.so ] ; then
91         APACHE_CONFIG="apache.config"
92 fi
93 if [ -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/mod_shib_20.so ] ; then
94         APACHE_CONFIG="apache2.config"
95 fi
96 if [ -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/mod_shib_22.so ] ; then
97         APACHE_CONFIG="apache22.config"
98 fi
99 if [ "$APACHE_CONFIG" != "no" ] ; then
100         APACHE_CONFD="no"
101         if [ -d %{_sysconfdir}/httpd/conf.d ] ; then
102                 APACHE_CONFD="%{_sysconfdir}/httpd/conf.d"
103         fi
104         if [ -d %{_sysconfdir}/apache2/conf.d ] ; then
105                 APACHE_CONFD="%{_sysconfdir}/apache2/conf.d"
106         fi
107         if [ "$APACHE_CONFD" != "no" ] ; then
108                 if [ ! -f $APACHE_CONFD/shib.conf ] ; then
109 %if "%{_vendor}" == "suse"
110                     %{__sed} "s/\/usr\/doc\/%{name}/\/usr\/share\/doc\/packages\/%{name}/g" \
111                                 %{_sysconfdir}/%{name}/$APACHE_CONFIG \
112                                 > $APACHE_CONFD/shib.conf
113 %else
114                         %{__sed} "s/\/usr\/doc\/%{name}/\/usr\/share\/doc\/%{name}-@-VERSION-@/g" \
115                             %{_sysconfdir}/%{name}/$APACHE_CONFIG \
116                             > $APACHE_CONFD/shib.conf
117 %endif
118                 fi
119         fi
120 fi
121
122 # Install the shibd init.d scripts and service
123 %if "%{_vendor}" == "redhat"
124         if [ -d %{_sysconfdir}/init.d ] ; then
125                 if [ ! -f %{_sysconfdir}/init.d/shibd ] ; then
126                         %{__cp} -p %{_sysconfdir}/%{name}/shibd-%{_vendor} %{_sysconfdir}/init.d/shibd
127                         %{__chmod} 755 %{_sysconfdir}/init.d/shibd
128                         chkconfig --add shibd
129                 fi
130         fi
131 %endif
132
133 %postun
134 %ifnos solaris2.8 solaris2.9 solaris2.10
135 /sbin/ldconfig
136 %endif
137
138 # delete the Apache configuration if we're being removed
139 [ "$1" = 0 ] || exit 0
140 [ -f %{_sysconfdir}/httpd/conf.d/shib.conf ] && \
141     %{__rm} -f %{_sysconfdir}/httpd/conf.d/shib.conf
142 [ -f %{_sysconfdir}/apache2/conf.d/shib.conf ] && \
143     %{__rm} -f %{_sysconfdir}/apache2/conf.d/shib.conf
144
145 # clear init.d state
146 %if "%{_vendor}" == "redhat"
147         chkconfig --del shibd
148         [ -f %{_sysconfdir}/init.d/shibd ] && \
149             %{__rm} -f %{_sysconfdir}/init.d/shibd
150 %endif
151
152 %files
153 %defattr(-,root,root,-)
154 %{_sbindir}/shibd
155 %{_bindir}/mdquery
156 %{_bindir}/resolvertest
157 %{_libdir}/libshibsp.so.*
158 %{_libdir}/libshibsp-lite.so.*
159 %dir %{_libdir}/%{name}
160 %{_libdir}/%{name}/*
161 %exclude %{_libdir}/%{name}/*.la
162 %dir %{_localstatedir}/log/%{name}
163 %dir %{_localstatedir}/run/%{name}
164 %dir %{_datadir}/xml/%{name}
165 %{_datadir}/xml/%{name}/*
166 %dir %{_sysconfdir}/%{name}
167 %config(noreplace) %{_sysconfdir}/%{name}/*.xml
168 %config(noreplace) %{_sysconfdir}/%{name}/*.html
169 %config(noreplace) %{_sysconfdir}/%{name}/*.logger
170 %config %{_sysconfdir}/%{name}/sp-example.crt
171 %config %{_sysconfdir}/%{name}/sp-example.key
172 %{_sysconfdir}/%{name}/*.dist
173 %{_sysconfdir}/%{name}/apache*.config
174 %{_sysconfdir}/%{name}/shibd-redhat
175 %{_sysconfdir}/%{name}/shibd-debian
176 %{_sysconfdir}/%{name}/shibd-osx.plist
177 %docdir %{_datadir}/doc/%{name}
178 %{_datadir}/doc/%{name}/CREDITS.txt
179 %{_datadir}/doc/%{name}/FASTCGI.LICENSE
180 %{_datadir}/doc/%{name}/INSTALL.txt
181 %{_datadir}/doc/%{name}/LICENSE.txt
182 %{_datadir}/doc/%{name}/LOG4CPP.LICENSE
183 %{_datadir}/doc/%{name}/logo.jpg
184 %{_datadir}/doc/%{name}/main.css
185 %{_datadir}/doc/%{name}/NOTICE.txt
186 %{_datadir}/doc/%{name}/OPENSSL.LICENSE
187 %{_datadir}/doc/%{name}/README.txt
188 %{_datadir}/doc/%{name}/RELEASE.txt
189 %exclude %{_datadir}/doc/%{name}/INSTALL-WIN32.txt
190
191 %files devel
192 %defattr(-,root,root,-)
193 %{_includedir}
194 %{_libdir}/libshibsp.so
195 %{_libdir}/libshibsp-lite.so
196
197 %files docs
198 %defattr(644,root,root,755)
199 %doc %{_datadir}/doc/%{name}/api
200
201 %changelog
202 * Fri Jan 18 2008  Scott Cantor  <cantor.2@osu.edu>  - 2.0-5
203 - Release candidate 1.
204
205 * Sun Oct 21 2007 Scott Cantor  <cantor.2@osu.edu>  - 2.0-4
206 - libexec -> lib/shibboleth changes
207 - Added doc subpackage
208
209 * Thu Aug 16 2007 Scott Cantor  <cantor.2@osu.edu>  - 2.0-3
210 - First public beta.
211
212 * Fri Jul 13 2007 Scott Cantor  <cantor.2@osu.edu>  - 2.0-2
213 - Second alpha release.
214
215 * Sun Jun 10 2007 Scott Cantor  <cantor.2@osu.edu>  - 2.0-1
216 - First alpha release.
217
218 * Mon Oct 2 2006 Scott Cantor   <cantor.2@osu.edu>  - 1.3-11
219 - Applied fix for secadv 20061002
220 - Fix for metadata loader loop
221
222 * Wed Jun 15 2006 Scott Cantor  <cantor.2@osu.edu>  - 1.3-10
223 - Applied fix for sec 20060615
224
225 * Fri Apr 15 2006 Scott Cantor  <cantor.2@osu.edu>  - 1.3-9
226 - Misc. patches, SuSE, Apache 2.2, gcc 4.1, and 64-bit support
227
228 * Mon Jan 9 2006 Scott Cantor  <cantor.2@osu.edu>  - 1.3-8
229 - Applied new fix for secadv 20060109
230
231 * Tue Nov 8 2005 Scott Cantor  <cantor.2@osu.edu>  - 1.3-7
232 - Applied new fix for secadv 20050901 plus rollup
233
234 * Fri Sep 23 2005 Scott Cantor  <cantor.2@osu.edu>  - 1.3-6
235 - Minor patches and default config changes
236 - pidfile patch
237 - Fix shib.conf creation
238 - Integrated init.d script
239 - Prevent replacement of config files
240
241 * Thu Sep 1 2005  Scott Cantor  <cantor.2@osu.edu>  - 1.3-5
242 - Applied fix for secadv 20050901 plus rollup of NSAPI fixes
243
244 * Sun Apr 24 2005  Scott Cantor  <cantor.2@osu.edu>  - 1.3-1
245 - Updated test programs and location of schemas.
246 - move siterefresh to to sbindir
247
248 * Fri Apr  1 2005  Derek Atkins  <derek@ihtfp.com>  - 1.3-1
249 - Add selinux-targeted-policy package
250 - move shar to sbindir
251
252 * Tue Oct 19 2004  Derek Atkins  <derek@ihtfp.com>  - 1.2-1
253 - Create SPEC file based on various versions in existence.