]> git.pld-linux.org Git - packages/syslog-ng.git/blob - syslog-ng.spec
- use more macros, some cosmetics, added missing "rm -f missing" and use new %doc
[packages/syslog-ng.git] / syslog-ng.spec
1 Summary:        Syslog-ng - new generation of the system logger
2 Summary(pl):    Syslog-ng - zamiennik syskloga
3 Summary(pt_BR): Daemon de log nova geração
4 Name:           syslog-ng
5 Version:        1.4.15
6 Release:        8
7 License:        GPL
8 Group:          Daemons
9 Source0:        http://www.balabit.hu/downloads/syslog-ng/1.4/%{name}-%{version}.tar.gz
10 Source1:        %{name}.init
11 Source2:        %{name}.conf
12 Source3:        %{name}.logrotate
13 Patch0:         %{name}-autoconf.patch
14 Patch1:         %{name}-notestlibolver.patch
15 Patch2:         %{name}-ac25x.patch
16 URL:            http://www.balabit.hu/products/syslog-ng/
17 BuildRequires:  autoconf
18 BuildRequires:  automake
19 BuildRequires:  flex
20 BuildRequires:  libol-static >= 0.2.21
21 PreReq:         rc-scripts >= 0.2.0
22 Requires(post,preun):   /sbin/chkconfig
23 Requires(post): fileutils
24 Requires:       logrotate
25 Requires:       psmisc >= 20.1
26 Provides:       syslogdaemon
27 Obsoletes:      syslog
28 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
29
30 %description
31 syslog-ng is a syslogd replacement for unix and unix-like systems. It
32 has been tested on Solaris, BSDi and Linux, and were found to run
33 reliably. syslog-ng gives you a much enhanced configuration scheme,
34 which lets you filter messages based on not only priority/facility
35 pairs, but also on message content. You can use regexps to direct log
36 stream to different destinations. A destination can be anything from a
37 simple file to a network connection. syslog-ng supports TCP
38 logforwarding, together with hashing to prevent unauthorized
39 modification on the line.
40
41 %description -l pl
42 Syslog-ng jest zamiennikiem dla standardowo u¿ywanych programów typu
43 sysklog. Dzia³a w systemie SunOS, BSD, Linux. Daje znacznie wiêksze
44 mo¿liwo¶ci logowania i kontrolowania zbieranych informacji.
45
46 %description -l pt_BR
47 Syslog-ng é um substituto para o syslog tradicional, mas com diversas
48 melhorias, como, por exemplo, a habilidade de filtrar mensagens de log
49 por seu conteúdo (usando expressões regulares) e não apenas pelo par
50 facility/prioridade como o syslog original.
51
52 %prep
53 %setup -q
54 %patch0 -p1
55 %patch1 -p0
56 %patch2 -p1
57
58 %build
59 rm -f missing
60 %{__aclocal}
61 %{__autoconf}
62 %{__automake}
63 %configure
64 %{__make}
65
66 %install
67 rm -rf $RPM_BUILD_ROOT
68 install -d $RPM_BUILD_ROOT{/etc/{logrotate.d,rc.d/init.d},%{_sysconfdir}/syslog-ng}
69 install -d $RPM_BUILD_ROOT/var/log/{mail,archiv}
70
71 %{__make} DESTDIR=$RPM_BUILD_ROOT install
72
73 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/syslog-ng
74 install %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/syslog-ng/syslog-ng.conf
75 install %{SOURCE3} $RPM_BUILD_ROOT/etc/logrotate.d/syslog-ng
76
77 > $RPM_BUILD_ROOT/var/log/syslog
78
79 %clean
80 rm -rf $RPM_BUILD_ROOT
81
82 %post
83 for n in /var/log/{cron,daemon,debug,kernel,lpr,maillog,messages,ppp,secure,spooler,syslog,user,mail/{info,warn,err}}
84 do
85         [ -f $n ] && continue
86         touch $n
87         chmod 640 $n
88 done
89
90 /sbin/chkconfig --add syslog-ng
91 if [ -f /var/lock/subsys/syslog-ng ]; then
92         /etc/rc.d/init.d/syslog-ng restart >/dev/null 2>&1
93 else
94         echo "Run \"/etc/rc.d/init.d/syslog-ng start\" to start syslog-ng daemon."
95 fi
96 if [ -f /var/lock/subsys/klogd ]; then
97         /etc/rc.d/init.d/klogd restart 1>&2
98 fi
99
100 %preun
101 if [ "$1" = "0" ]; then
102         if [ -f /var/lock/subsys/syslog-ng ]; then
103                 /etc/rc.d/init.d/syslog-ng stop >&2
104         fi
105         /sbin/chkconfig --del syslog-ng
106 fi
107
108 %files
109 %defattr(644,root,root,755)
110 %doc doc/syslog-ng.conf.{demo,sample} doc/sgml/syslog-ng.txt*
111 %attr(750,root,root) %dir %{_sysconfdir}/syslog-ng
112 %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/syslog-ng/syslog-ng.conf
113 %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/logrotate.d/syslog-ng
114 %attr(754,root,root) /etc/rc.d/init.d/syslog-ng
115 %attr(755,root,root) %{_sbindir}/syslog-ng
116 %{_mandir}/man[58]/*
117
118 %attr(640,root,root) %ghost /var/log/syslog
119 %dir /var/log/mail
120 %dir /var/log/archiv
This page took 0.107312 seconds and 4 git commands to generate.