]> git.pld-linux.org Git - packages/apache-mod_clamav.git/blame - apache-mod_clamav.spec
Release 8 (by relup.sh)
[packages/apache-mod_clamav.git] / apache-mod_clamav.spec
CommitLineData
71357e66 1%define apxs /usr/sbin/apxs
98557b57 2%define mod_name clamav
c95298f0 3Summary: An Apache virus scanning filter
ac3d21b0 4Summary(pl.UTF-8): Filtr skanera antywirusowego dla Apache'a
d418d050 5Name: apache-mod_%{mod_name}
dbef4112 6Version: 0.23
e7fca67e 7Release: 8
971c2e7b 8License: GPL v2
0de851f1 9Group: Networking/Daemons/HTTP
d418d050 10Source0: http://software.othello.ch/mod_clamav/mod_%{mod_name}-%{version}.tar.gz
dbef4112 11# Source0-md5: 32c7b285dfdff5d13371b92ebe73b352
d418d050 12Source1: %{name}.conf
971c2e7b 13Patch0: %{name}-clamav.patch
b11b96fd 14Patch1: gcc10.patch
d418d050 15URL: http://software.othello.ch/mod_clamav/
9d6893b9 16BuildRequires: %{apxs}
ecf6a5d2 17BuildRequires: apache-devel >= 2.0
2488ddd4
ER
18BuildRequires: apr-devel >= 1:1.0
19BuildRequires: apr-util-devel >= 1:1.0
971c2e7b 20BuildRequires: autoconf >= 2.12
c95298f0 21BuildRequires: automake
9c2e6dce 22BuildRequires: clamav-devel
0aa5d0e9 23BuildRequires: libtool
971c2e7b 24BuildRequires: pkgconfig
774081d9 25BuildRequires: rpmbuild(macros) >= 1.268
2488ddd4 26Requires: apache(modules-api) = %apache_modules_api
d418d050 27Requires: apache-mod_proxy
28Requires: clamav
29BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
30
2488ddd4 31%define _pkglibdir %(%{apxs} -q LIBEXECDIR 2>/dev/null)
b5658c7f 32%define _sysconfdir %(%{apxs} -q SYSCONFDIR 2>/dev/null)/conf.d
d418d050 33
34%description
35mod_clamav is an Apache 2 filter which scans the content delivered by
36the proxy module (mod_proxy) for viruses using the Clamav virus
37scanning engine.
38
9074edcb
JR
39%description -l pl.UTF-8
40mod_clamav to filtr dla serwera Apache 2 skanujący treści dostarczane
41przez moduł proxy (mod_proxy) pod kątem wirusów przy użyciu silnika
c95298f0
JB
42skanera antywirusowego Clamav.
43
d418d050 44%prep
45%setup -q -n mod_%{mod_name}-%{version}
971c2e7b 46%patch0 -p1
b11b96fd 47%patch1 -p1
d418d050 48
49%build
0aa5d0e9 50%{__libtoolize}
d418d050 51%{__aclocal}
52%{__autoconf}
53%{__automake}
971c2e7b 54CPPFLAGS="-I$(/usr/bin/apr-1-config --includedir) -I$(/usr/bin/apu-1-config --includedir) $(pkg-config --cflags libclamav)"
d418d050 55%configure \
98557b57 56 --with-apxs=%{apxs}
d418d050 57%{__make}
58
59%install
60rm -rf $RPM_BUILD_ROOT
b5658c7f 61install -d $RPM_BUILD_ROOT{%{_pkglibdir},%{_sysconfdir}}
c95298f0 62
0aa5d0e9 63install .libs/mod_%{mod_name}.so $RPM_BUILD_ROOT%{_pkglibdir}/mod_%{mod_name}.so
b5658c7f 64install %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/32_mod_clamav.conf
d418d050 65
66%clean
67rm -rf $RPM_BUILD_ROOT
68
69%post
774081d9 70%service -q httpd restart
d418d050 71
fd959990 72%postun
d418d050 73if [ "$1" = "0" ]; then
774081d9 74 %service -q httpd restart
d418d050 75fi
76
77%files
78%defattr(644,root,root,755)
ecf6a5d2 79%doc AUTHORS ChangeLog mod_clamav.html NEWS README TODO
971c2e7b
JB
80%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*_mod_clamav.conf
81%attr(755,root,root) %{_pkglibdir}/mod_clamav.so
This page took 0.135649 seconds and 4 git commands to generate.