]> git.pld-linux.org Git - packages/bogofilter.git/blob - bogofilter.spec
d62c8f6518ceed3d6944c7b16b1833c1267243a1
[packages/bogofilter.git] / bogofilter.spec
1 Summary:        Bayesian Spam Filter
2 Summary(pl):    Bayesjañski Filtr Antyspamowy
3 Name:           bogofilter
4 Version:        0.16.4
5 Release:        2
6 License:        GPL
7 Group:          Applications/Mail
8 Vendor:         Eric S. Raymond <esr@thyrsus.com>
9 Source0:        http://dl.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
10 # Source0-md5:  3f20cdd44b80a08d2114c5d95d485915
11 Patch0:         %{name}-home_etc.patch
12 Patch1:         %{name}-dummy.patch
13 URL:            http://bogofilter.sourceforge.net/
14 BuildRequires:  autoconf >= 2.53
15 BuildRequires:  automake
16 BuildRequires:  db-devel
17 BuildRequires:  flex
18 BuildRequires:  gsl-devel
19 BuildRequires:  judy-devel
20 Requires:       gsl >= 1.4
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %define         specflags_ia32  -fomit-frame-pointer
24
25 %description
26 Bogofilter is a Bayesian spam filter. In its normal mode of operation,
27 it takes an email message or other text on standard input, does a
28 statistical check against lists of "good" and "bad" words, and returns
29 a status code indicating whether or not the message is spam.
30 Bogofilter is designed with fast algorithms (including Berkeley DB
31 system), coded directly in C, and tuned for speed, so it can be used
32 for production by sites that process a lot of mail.
33
34 %description -l pl
35 Bogofilter jest bayesjañskim filtrem antyspamowym. W podstawowym
36 trybie dzia³ania na emailu lub innym tek¶cie odczytanym na wej¶ciu
37 wykonuje statystyczne testy na wystêpowanie "dobrych" i "z³ych" s³ów i
38 zwraca kod powrotu wskazuj±cy czy wiadomo¶æ jest spamem, czy te¿ nie.
39 Bogofilter jest zaprojektowany z u¿yciem szybkich algorytmów
40 (w³±czaj±c w to Berkeley DB), napisany w czystym C i "podkrêcony" pod
41 k±tem szybko¶ci, a wiêc mo¿e byæ u¿ywany na systemach "produkcyjnych",
42 które przetwarzaj± du¿e ilo¶ci poczty.
43
44 %prep
45 %setup -q
46 %patch0 -p1
47 %patch1 -p1
48
49 %build
50 rm -f missing
51 %{__aclocal}
52 %{__autoconf}
53 %{__autoheader}
54 %{__automake}
55 %configure
56 %{__make}
57
58 %install
59 rm -rf $RPM_BUILD_ROOT
60
61 %{__make} install DESTDIR=$RPM_BUILD_ROOT
62
63 cp $RPM_BUILD_ROOT%{_sysconfdir}/bogofilter.cf.example $RPM_BUILD_ROOT%{_sysconfdir}/bogofilter.cf
64
65 rm -f $RPM_BUILD_ROOT%{_bindir}/lexertest
66
67 %clean
68 rm -rf $RPM_BUILD_ROOT
69
70 %files
71 %defattr(644,root,root,755)
72 %doc AUTHORS METHODS NEWS README RELEASE.NOTES-0.16 TODO
73 %config(noreplace,missingok) %{_sysconfdir}/bogofilter.cf
74 %attr(755,root,root) %{_bindir}/*
75 %attr(644,root,root) %{_mandir}/man1/*
This page took 0.151013 seconds and 3 git commands to generate.