]> git.pld-linux.org Git - packages/syslog-ng.git/blobdiff - syslog-ng.spec
- release 10
[packages/syslog-ng.git] / syslog-ng.spec
index 8b42dceeccb5e8084151aa8f0ae336675e6d2a9f..d0d4f4fabc96a07ee2eb3c5795e99d35ea734f92 100644 (file)
@@ -1,37 +1,43 @@
 Summary:       Syslog-ng - new generation fo the system logger
 Summary(pl):   Syslog-ng - zamiennik sysklog'a
 Name:          syslog-ng
-Version:       1.4.3
-Release:       
+Version:       1.4.5
+Release:       10
 License:       GPL
 Group:         Daemons
-Group(pl):     Demony
-Source0:       http://www.balabit.hu//downloads/syslog-ng/source/%{name}-%{version}.tar.gz
-Source1:       syslog-ng.init
-Source2:       syslog-ng.conf
-Patch0:                syslog-ng-autoconf.patch
+Group(de):     Server
+Group(pl):     Serwery
+Source0:       http://www.balabit.hu/downloads/syslog-ng/source/%{name}-%{version}.tar.gz
+Source1:       %{name}.init
+Source2:       %{name}.conf
+Source3:       %{name}.logrotate
+Patch0:                %{name}-autoconf.patch
+URL:           http://www.balabit.hu/products/syslog-ng/
 BuildRequires: libol-static >= 0.2.16
 BuildRequires: flex
 Requires:      rc-scripts >= 0.2.0
+Requires:      logrotate
+Provides:      syslogdaemon
 Obsoletes:     syslog
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %define                _sysconfdir     /etc
 
 %description
-syslog-ng is a syslogd replacement for unix and unix-like systems. It has
-been tested on Solaris, BSDi and Linux, and were found to run reliably.
-syslog-ng gives you a much enhanced configuration scheme, which lets you
-filter messages based on not only priority/facility pairs, but also on
-message content. You can use regexps to direct log stream to different
-destinations. A destination can be anything from a simple file to a
-network connection. syslog-ng supports TCP logforwarding, together with
-hashing to prevent unauthorized  modification on the line.
+syslog-ng is a syslogd replacement for unix and unix-like systems. It
+has been tested on Solaris, BSDi and Linux, and were found to run
+reliably. syslog-ng gives you a much enhanced configuration scheme,
+which lets you filter messages based on not only priority/facility
+pairs, but also on message content. You can use regexps to direct log
+stream to different destinations. A destination can be anything from a
+simple file to a network connection. syslog-ng supports TCP
+logforwarding, together with hashing to prevent unauthorized
+modification on the line.
 
 %description -l pl
-Syslog-ng jest zamiennikiem dla standartowo u¿ywanych programów typu sysklog
-Dzia³a w systemie SunON, BSD, Linux. Daje znacznie wiêksze mo¿liwosci
-logowanie i kontrolowanie zbieranych informacji.
+Syslog-ng jest zamiennikiem dla standartowo u¿ywanych programów typu
+sysklog Dzia³a w systemie SunON, BSD, Linux. Daje znacznie wiêksze
+mo¿liwosci logowanie i kontrolowanie zbieranych informacji.
 
 %prep
 %setup -q
@@ -40,20 +46,20 @@ logowanie i kontrolowanie zbieranych informacji.
 %build
 aclocal
 autoconf
-LDFLAGS="-s"; export LDFLAGS
 %configure
-make
+%{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
 
-install -d $RPM_BUILD_ROOT{/etc/rc.d/init.d,%{_sysconfdir}/syslog-ng} \
-       $RPM_BUILD_ROOT/var/log/news
+install -d $RPM_BUILD_ROOT{/etc/rc.d/init.d,%{_sysconfdir}/{syslog-ng,logrotate.d}} \
+       $RPM_BUILD_ROOT/var/log/{archiv,}/{news,mail}
 
-make DESTDIR=$RPM_BUILD_ROOT install
+%{__make} DESTDIR=$RPM_BUILD_ROOT install
 
 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/syslog-ng
 install %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/syslog-ng/syslog-ng.conf
+install %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/syslog-ng
 
 gzip -9nf doc/syslog-ng.conf.{demo,sample} doc/sgml/syslog-ng.txt \
        $RPM_BUILD_ROOT%{_mandir}/man[58]/*
@@ -61,7 +67,7 @@ gzip -9nf doc/syslog-ng.conf.{demo,sample} doc/sgml/syslog-ng.txt \
 touch $RPM_BUILD_ROOT/var/log/syslog
 
 %post
-for n in /var/log/{auth.log,syslog,cron.log,daemon.log,kern.log,lpr.log,user.log,uucp.log,ppp.log,mail.log,mail.info,mail.warn,mail.err,debug,messages}
+for n in /var/log/{kernel,messages,secure,maillog,spooler,debug,cron,syslog,daemon,lpr,user,ppp,mail/{info,warn,err}}
 do
        [ -f $n ] && continue
        touch $n
@@ -69,15 +75,18 @@ do
 done
 
 /sbin/chkconfig --add syslog-ng
-if [ -f /var/lock/subsys/ ]; then
-       /etc/rc.d/init.d/syslog restart &>/dev/null
+if [ -f /var/lock/subsys/syslog-ng ]; then
+       /etc/rc.d/init.d/syslog-ng restart &>/dev/null
 else
        echo "Run \"/etc/rc.d/init.d/syslog-ng start\" to start syslog-ng daemon."
 fi
+if [ -f /var/lock/subsys/klogd ]; then
+       /etc/rc.d/init.d/klogd restart 1>&2
+fi
 
 %preun
 if [ "$1" = "0" ]; then
-       if [ -f /var/lock/subsys/ ]; then
+       if [ -f /var/lock/subsys/syslog-ng ]; then
                /etc/rc.d/init.d/syslog-ng stop >&2
        fi
        /sbin/chkconfig --del syslog-ng
@@ -91,8 +100,12 @@ rm -rf $RPM_BUILD_ROOT
 %doc doc/*.gz doc/sgml/syslog-ng.txt*
 %attr(750,root,root) %dir %{_sysconfdir}/syslog-ng
 %attr(640,root,root) %config %verify(not size mtime md5) %{_sysconfdir}/syslog-ng/syslog-ng.conf
+%attr(640,root,root) %config %verify(not size mtime md5) %{_sysconfdir}/logrotate.d/syslog-ng
 %attr(754,root,root) /etc/rc.d/init.d/syslog-ng
-%attr(755,root,root) %{_sbindir}/syslog-ng/
-
+%attr(755,root,root) %{_sbindir}/syslog-ng
 %{_mandir}/man[58]/*
-%attr(640,root,root) %config(noreplace) %verify(not mtime md5 size) /var/log/*
+
+%attr(640,root,root) %ghost /var/log/syslog
+%attr(750,root,root) %ghost /var/log/news
+%attr(750,root,root) %dir /var/log/mail
+%attr(750,root,root) %dir /var/log/archiv/mail
This page took 0.087891 seconds and 4 git commands to generate.