]> git.pld-linux.org Git - packages/anteater.git/blame_incremental - anteater.spec
- cstdlib.patch (buildfix)
[packages/anteater.git] / anteater.spec
... / ...
CommitLineData
1Summary: Dynamic MTA logfile analyser
2Summary(pl.UTF-8): Dynamiczny analizator logów MTA
3Name: anteater
4Version: 0.4.5
5Release: 0.1
6Epoch: 0
7License: GPL v2
8Group: Applications/System
9Source0: http://downloads.sourceforge.net/anteater/%{name}-%{version}.tar.bz2
10# Source0-md5: 21ab169a88e1a80942cc8816d7ea6438
11Patch0: %{name}-configure.in.patch
12Patch0: %{name}-cstdlib.patch
13URL: http://anteater.sourceforge.net/
14BuildRequires: autoconf
15BuildRequires: automake
16BuildRequires: libstdc++-devel
17BuildRequires: libtool
18BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20%description
21Anteater is a log analyser for MTA logfiles (for example sendmail and
22postfix). The tool is written in 100% C++ and very easy to customize.
23Input, output, and the analysis are modular class objects with a clear
24interface.
25
26%description -l pl.UTF-8
27Anteater (mrówkojad) jest analizatorem logów MTA (np. sendmaila i
28postfiksa). Narzędzie jest napisane w 100% w C++ i jest bardzo łatwe
29do przystosowania. Wejście i wyjście są modularnymi klasami obiektów z
30przejrzystym interfejsem.
31
32%prep
33%setup -q
34
35%patch0 -p1
36%patch1 -p1
37
38%build
39%{__libtoolize}
40%{__aclocal}
41%{__autoconf}
42%{__autoheader}
43%{__automake}
44%configure
45%{__make}
46
47%install
48rm -rf $RPM_BUILD_ROOT
49
50%{__make} install \
51 DESTDIR=$RPM_BUILD_ROOT
52
53%clean
54rm -rf $RPM_BUILD_ROOT
55
56%files
57%defattr(644,root,root,755)
58%doc AUTHORS ChangeLog NEWS README TODO
59%attr(755,root,root) %{_bindir}/*
60%{_mandir}/man?/*
This page took 0.051056 seconds and 4 git commands to generate.