]> git.pld-linux.org Git - packages/exiscan.git/blob - exiscan.spec
a63dd45a605ccf77b0955527bbf99e52756ab1b3
[packages/exiscan.git] / exiscan.spec
1 %include        /usr/lib/rpm/macros.perl    
2 Summary:        A EMail Virus Scanner for Exim MTA
3 Summary(pl):    Antywirusowy skaner poczty elektronicznej dla Exim MTA
4 Name:           exiscan
5 Version:        2.4
6 Release:        2
7 URL:            http://duncanthrax.net/exiscan/
8 Source0:        http://duncanthrax.net/exiscan/%{name}-v%{version}.tar.gz
9 Source1:        %{name}.init
10 Patch0:         %{name}-config.patch
11 Patch1:         %{name}-user.patch
12 License:        GPL
13 Group:          Applications/Mail
14 BuildRequires:  perl-devel
15 BuildRequires:  perl-modules
16 BuildRequires:  perl-MailTools
17 BuildRequires:  perl-Unix-Syslog
18 Requires:       exim >= 3.00
19 # http://www.pldaniels.com/ripmime/
20 Requires:       ripmime
21 # http://world.std.com/~damned/software.html
22 Requires:       tnef
23 Prereq:         /sbin/chkconfig
24 BuildArch:      noarch
25 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27 %description
28 Exiscan is an email virus scanner which works together with the Exim
29 MTA (http://www.exim.org). It is written in Perl and designed to be
30 very easy to implement. Exiscan supports multithreaded unpacking and
31 scanning of mail, with a configurable number of processes. Exiscan has
32 generic support for available command line virus scanners. Exiscan can
33 scan inside of MS-TNEF and SMIME (signed) wrapped messages.
34
35 %description -l pl
36 Exiscan to antywirusowy skaner poczty dzia³aj±cy wraz z MTA Exim
37 (http://www.exim.org). Exiscan zosta³ napisany w Perlu oraz
38 zaprojektowany tak by byæ bardzo ³atwym w u¿yciu. Exiscan wspiera
39 wielow±tkowe rozpakowywanie i skanowanie poczty z konfigurowalnym
40 ograniczeniem ilo¶ci procesów. Exiscan mo¿e wspó³pracowaæ z wieloma
41 skanerami antywirusowymi wywo³ywanymi z lini poleceñ. Exiscan mo¿e
42 skanowaæ wiadomo¶ci opakowane za pomoc± MS-TNEF oraz SMIME
43 (podpisane).
44
45 %prep
46 %setup -q -n %{name}
47 %patch0 -p1
48 %patch1 -p0
49
50 %install
51 rm -rf $RPM_BUILD_ROOT
52
53 install -d $RPM_BUILD_ROOT{%{_sbindir},%{_sysconfdir}/{mail,rc.d/init.d}}
54 install -d $RPM_BUILD_ROOT%{_var}/spool/%{name}/{checkqueue,virusmails}
55
56 install %{SOURCE1}      $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/%{name}
57 install exiscan*.pl     $RPM_BUILD_ROOT%{_sbindir}/exiscan
58 install exiscan*.cf     $RPM_BUILD_ROOT%{_sysconfdir}/mail/exiscan.cf
59
60 %post
61 /sbin/chkconfig --add %{name}
62 if [ -f %{_var}/lock/subsys/%{name} ]; then
63         %{_sysconfdir}/rc.d/init.d/%{name} restart 1>&2
64 else
65         echo "Run \"%{_sysconfdir}/rc.d/init.d/%{name} start\" to start %{name} daemon."
66 fi
67
68 %preun
69 if [ "$1" = "0" -a -f %{_var}/lock/subsys/%{name} ]; then
70         %{_sysconfdir}/rc.d/init.d/%{name} stop 1>&2
71 fi
72 /sbin/chkconfig --del %{name}
73
74 %files
75 %defattr(644,root,root,755)
76 %doc CHANGELOG INSTALL README*
77 %attr(755,root,root) %{_sbindir}/*
78 %attr(640,root,exim) %config(noreplace) %verify(not md5 mtime size) /etc/mail/*.cf
79 %attr(750,exim,root) %{_var}/spool/%{name}
80 %attr(754,root,root) %{_sysconfdir}/rc.d/init.d/%{name}
81
82 %clean
83 rm -rf $RPM_BUILD_ROOT
This page took 0.529199 seconds and 2 git commands to generate.