2014-08-15 12:44:19 +00:00
|
|
|
Name: mod_auth_gssapi
|
2014-10-11 18:53:37 +00:00
|
|
|
Version: 1.0.3
|
2014-08-15 12:44:19 +00:00
|
|
|
Release: 1%{?dist}
|
|
|
|
Summary: A GSSAPI Authentication module for Apache
|
|
|
|
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
License: MIT
|
|
|
|
URL: https://github.com/modauthgssapi/mod_auth_gssapi
|
|
|
|
Source0: https://github.com/modauthgssapi/%{name}/releases/download/v%{version}/%name-%{version}.tar.gz
|
|
|
|
|
|
|
|
BuildRequires: httpd-devel, krb5-devel, openssl-devel
|
|
|
|
Requires: httpd-mmn = %{_httpd_mmn}
|
|
|
|
Requires: krb5-libs >= 1.11.5
|
|
|
|
|
|
|
|
%description
|
|
|
|
The mod_auth_gssapi module is an authentication service that implements the
|
|
|
|
SPNEGO based HTTP Authentication protocol defined in RFC4559.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
export APXS=%{_httpd_apxs}
|
|
|
|
%configure
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p %{buildroot}%{_httpd_moddir}
|
|
|
|
install -m 755 src/.libs/%{name}.so %{buildroot}%{_httpd_moddir}
|
|
|
|
|
|
|
|
# Apache configuration for the module
|
|
|
|
echo "LoadModule auth_gssapi_module modules/mod_auth_gssapi.so" > 10-auth_gssapi.conf
|
|
|
|
mkdir -p %{buildroot}%{_httpd_modconfdir}
|
|
|
|
install -m 644 10-auth_gssapi.conf %{buildroot}%{_httpd_modconfdir}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc README COPYING
|
|
|
|
%config(noreplace) %{_httpd_modconfdir}/10-auth_gssapi.conf
|
|
|
|
%{_httpd_moddir}/mod_auth_gssapi.so
|
|
|
|
|
|
|
|
%changelog
|
2014-10-11 18:53:37 +00:00
|
|
|
* Sat Oct 11 2014 Simo Sorce <simo@redhat.com> 1.0.3-1
|
|
|
|
- Patch release 1.0.3
|
|
|
|
- fixes some build issues on various distros
|
|
|
|
|
2014-08-27 13:43:40 +00:00
|
|
|
* Thu Aug 27 2014 Simo Sorce <simo@redhat.com> 1.0.2-1
|
|
|
|
- Adds documntation to README
|
|
|
|
- fixes bad bug that crippled configuration
|
|
|
|
|
2014-08-15 12:44:19 +00:00
|
|
|
* Thu Aug 14 2014 Simo Sorce <simo@redhat.com> 1.0.1-1
|
|
|
|
- Patch release 1.0.1
|
|
|
|
|
|
|
|
* Mon Aug 4 2014 Simo Sorce <simo@redhat.com> 1.0.0-1
|
|
|
|
- First release
|