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