]> git.pld-linux.org Git - packages/amavis-stats.git/blob - amavis-stats.spec
f7882e4d8c1985d9e3b82349592380813e249857
[packages/amavis-stats.git] / amavis-stats.spec
1 %include        /usr/lib/rpm/macros.perl
2 Summary:        Simple amavisd-new statistics generator
3 Summary(pl):    Prosty generator statystyk dla amavisd-new
4 Name:           amavis-stats
5 Version:        0.1.10
6 Release:        5
7 License:        GPL
8 Group:          Applications/System
9 # http://rekudos.net/download/amavis-stats.tar.gz
10 Source0:        ftp://distfiles.pld-linux.org/src/%{name}-%{version}.tar.gz
11 # Source0-md5:  12288bbf8cf9da0fec64c9660712892a
12 Source1:        %{name}.cron
13 Patch0:         %{name}-gzip.patch
14 URL:            http://rekudos.net/amavis-stats/
15 BuildArch:      noarch
16 Provides:       %{name}-%{version}-%{release}
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %define         _pkglibdir              /var/lib/%{name}
20 %define         _phpdir                 /usr/share/%{name}
21
22 %description
23 amavis-stats is a simple amavis statistics generator based on rrdtool.
24 It produces graphs from amavisd-new log entries of infections broken
25 down by virus.
26
27 %description -l pl
28 amavis-stats jest prostym generatorem statystyk opartym na rrdtool.
29 Tworzy wykresy zainfekowanych wiadomo¶ci, w rozbiciu na poszczególne
30 wirusy, na podstawie logów amavisd-new.
31
32 %package php
33 Summary:        PHP interface for amavis-stats
34 Summary(pl):    Interfejs PHP dla amavis-stats
35 Group:          Applications/System
36 Requires:       %{name}-%{version}-%{release}
37
38 %description php
39 PHP interface for amavis-stats.
40
41 %description php -l pl
42 Interfejs PHP dla amavis-stats.
43
44 %prep
45 %setup -q
46 %patch0 -p1
47
48 %install
49 rm -rf $RPM_BUILD_ROOT
50 install -d $RPM_BUILD_ROOT/etc/cron.d
51
52 %{__make} install installman \
53         DESTDIR=$RPM_BUILD_ROOT \
54         
55 install %{SOURCE1} $RPM_BUILD_ROOT/etc/cron.d/amavis-stats
56
57 %clean
58 rm -rf $RPM_BUILD_ROOT
59
60 %post php
61 if [ -f /etc/httpd/httpd.conf ] && ! grep -q "^Include.*/etc/%{name}/apache.conf" /etc/httpd/httpd.conf; then
62         echo "Include /etc/%{name}/apache.conf" >> /etc/httpd/httpd.conf
63 fi
64 if [ -f /var/lock/subsys/httpd ]; then
65         /usr/sbin/apachectl restart 1>&2
66 fi
67
68 %preun php
69 if [ "$1" = "0" ]; then
70         umask 027
71         grep -v "^Include.*/etc/%{name}/apache.conf" /etc/httpd/httpd.conf > \
72                 etc/httpd/httpd.conf.tmp
73         mv -f /etc/httpd/httpd.conf.tmp /etc/httpd/httpd.conf
74         if [ -f /var/lock/subsys/httpd ]; then
75                 /usr/sbin/apachectl restart 1>&2
76         fi
77 fi
78
79 %files
80 %defattr(644,root,root,755)
81 %doc README
82 %attr(755,root,root) %{_sbindir}/amavis-stats
83 %dir %{_pkglibdir}
84 %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/cron.d/amavis-stats
85 %{_mandir}/man1/*
86
87 %files php
88 %defattr(644,root,root,755)
89 %dir /etc/%{name}
90 %attr(640,root,root) %config(noreplace) /etc/%{name}/apache.conf
91 %dir %{_phpdir}
92 %dir %attr(755,http,root) %{_phpdir}/img
93 %{_phpdir}/%{name}.php
94 %{_phpdir}/index.php
95 %attr(755,http,http) %dir %{_pkglibdir}/img
This page took 0.110062 seconds and 3 git commands to generate.