]> git.pld-linux.org Git - packages/apache-mod_auth_kerb.git/blame - apache-mod_auth_kerb.spec
- rel 4
[packages/apache-mod_auth_kerb.git] / apache-mod_auth_kerb.spec
CommitLineData
3a8fe259 1%define mod_name auth_kerb
2%define apxs /usr/sbin/apxs
cb733775 3Summary: This is the Kerberos authentication module for Apache
54902bb8 4Summary(pl.UTF-8): Moduł uwierzytelnienia Kerberos dla Apache
3a8fe259 5Name: apache-mod_%{mod_name}
0de9d138 6Version: 5.4
eb6fe6b9 7Release: 4
3a8fe259 8Epoch: 1
9License: GPL
1e14559f 10Group: Networking/Daemons/HTTP
ef395627 11Source0: http://dl.sourceforge.net/modauthkerb/mod_%{mod_name}-%{version}.tar.gz
0de9d138 12# Source0-md5: 642b81763ad3ca81dba359cb952da5e3
3a8fe259 13Source1: %{name}.conf
9a8b3ed6 14Patch0: %{name}-heimdal.patch
3a8fe259 15URL: http://modauthkerb.sourceforge.net/
d286a0b7
ER
16BuildRequires: %{apxs}
17BuildRequires: apache-devel >= 2.0
3a8fe259 18BuildRequires: gdbm-devel
97e8002d 19BuildRequires: heimdal-devel
993543eb 20BuildRequires: rpmbuild(macros) >= 1.268
f56eec7f
ER
21BuildRequires: sed >= 4.0
22Requires: apache(modules-api) = %apache_modules_api
3a8fe259 23BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
f4686fec
ER
25%define apacheconfdir %(%{apxs} -q SYSCONFDIR 2>/dev/null)/conf.d
26%define apachelibdir %(%{apxs} -q LIBEXECDIR 2>/dev/null)
3a8fe259 27
28%description
29This is an authentication module for Apache that allows you to
cb733775 30authenticate HTTP clients using user entries in an Kerberos directory.
3a8fe259 31
ace66492
JR
32%description -l pl.UTF-8
33To jest moduł uwierzytelnienia dla Apache pozwalający na
34uwierzytelnianie klientów HTTP z użyciem wpisów w katalogu Kerberosa.
3a8fe259 35
36%prep
ef395627 37%setup -q -n mod_%{mod_name}-%{version}
9a8b3ed6 38%patch0 -p1
3a8fe259 39
40%build
ef395627 41%configure \
97e8002d 42 --without-krb4 \
ef395627
JR
43 --with-apache=%{_prefix}
44
f56eec7f 45%{__sed} -i -e 's/-pthread/-lpthread/' Makefile
cb733775 46%{__make}
3a8fe259 47
48%install
49rm -rf $RPM_BUILD_ROOT
f4686fec 50install -d $RPM_BUILD_ROOT{%{apachelibdir},%{apacheconfdir}}
3a8fe259 51
f4686fec
ER
52install src/.libs/mod_%{mod_name}.so $RPM_BUILD_ROOT%{apachelibdir}
53install %{SOURCE1} $RPM_BUILD_ROOT%{apacheconfdir}/20_mod_%{mod_name}.conf
3a8fe259 54
55%clean
56rm -rf $RPM_BUILD_ROOT
57
58%post
993543eb 59%service -q httpd restart
3a8fe259 60
09f415c0 61%postun
3a8fe259 62if [ "$1" = "0" ]; then
993543eb 63 %service -q httpd restart
3a8fe259 64fi
65
66%files
67%defattr(644,root,root,755)
68%doc README
f4686fec
ER
69%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{apacheconfdir}/*_mod_%{mod_name}.conf
70%attr(755,root,root) %{apachelibdir}/*.so
This page took 0.118463 seconds and 4 git commands to generate.