X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=syslog-ng.spec;h=c534e0e1bc3a4ef5bba423abcd9075b8626b611b;hb=a2cd5504e5e08bbdc7e83a4d23e16a1aebc089fb;hp=234a5558ab3878618e8965ac8d23185e8f2a0631;hpb=2c074dbdf235dfa9be328f9890fa52c42ae6d8d6;p=packages%2Fsyslog-ng.git diff --git a/syslog-ng.spec b/syslog-ng.spec index 234a555..c534e0e 100644 --- a/syslog-ng.spec +++ b/syslog-ng.spec @@ -1,114 +1,107 @@ Summary: Syslog-ng - new generation fo the system logger Summary(pl): Syslog-ng - zamiennik sysklog'a Name: syslog-ng -Version: 1.1.28 -Release: 1 -Copyright: GPL +Version: 1.4.5 +Release: 6 +License: GPL Group: Daemons -Group(pl): Demony -#http: www.balabit.hu -#path: /downloads/syslog-ng/source -Source0: %name-%version.tar.gz -Source1: syslog-ng -Source2: syslog-ng.conf -BuildRequires: libol >= 0.2 -Requires: rc-scripts -Obsolotes: syslog -Buildroot: /tmp/%{name}-%{version}-root - -%define _prefix /usr +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 +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 +%patch -p1 %build +aclocal autoconf -./configure --prefix=%{_prefix} -make RPM_OPT_FLAGS="$RPM_OPT_FLAGS" -make dvi -make info +LDFLAGS="-s"; export LDFLAGS +%configure +%{__make} %install - rm -rf $RPM_BUILD_ROOT -install -d $RPM_BUILD_ROOT/etc/{syslog-ng,rc.d/init.d} +install -d $RPM_BUILD_ROOT{/etc/rc.d/init.d,%{_sysconfdir}/{syslog-ng,logrotate.d}} \ + $RPM_BUILD_ROOT/var/log/{news,mail} -install -d $RPM_BUILD_ROOT/var/log/news +%{__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 -install %{SOURCE2} $RPM_BUILD_ROOT/etc/syslog-ng - -make prefix=$RPM_BUILD_ROOT/usr install - -bzip2 -9 doc/syslog-ng.conf.demo -bzip2 -9 doc/syslog-ng.conf.sample -bzip2 -9 doc/*.ps -bzip2 -9 $RPM_BUILD_ROOT%{_mandir}/man[58]/* +gzip -9nf doc/syslog-ng.conf.{demo,sample} doc/sgml/syslog-ng.txt \ + $RPM_BUILD_ROOT%{_mandir}/man[58]/* 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 - chmod 640 &n + touch $n + chmod 640 $n done -/sbin/checkconfig --add syslog -if [ -f /var/lock/subsys/ ]; then - /etc/rc.d/init.d/syslog restart &>/dev/null +/sbin/chkconfig --add syslog-ng +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 start\" to start syslog-ng daemon." + echo "Run \"/etc/rc.d/init.d/syslog-ng start\" to start syslog-ng daemon." fi %preun if [ "$1" = "0" ]; then - /etc/rc.d/init.d/syslog stop >&2 - /sbin/checkconfig --del syslog + if [ -f /var/lock/subsys/syslog-ng ]; then + /etc/rc.d/init.d/syslog-ng stop >&2 + fi + /sbin/chkconfig --del syslog-ng fi %clean rm -rf $RPM_BUILD_ROOT %files -%defattr(644, root, root, 755) -%doc doc/*.bz2 doc/syslog-ng.html.tar.gz - -%attr(640,root,root) %config %verify(not size mtime md5)/etc/syslog-ng/syslog-ng.conf - -%attr(754,root,root) /etc/rc.d/init.d/syslog - +%defattr(644,root,root,755) +%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 +%{_mandir}/man[58]/* -%attr(644,root,root) %{_mandir}/man5/syslog-ng.conf.5.bz2 -%attr(644,root,root) %{_mandir}/man8/syslog-ng.8.bz2 - -%attr(640,root,root) %config(noreplace) %verify(not mtime md5 size) /var/log/* - -%changelog -* Tue Jul 20 1999 Wojciech "Sas" Ciêciwa - [1.1.27-1] -- update to last version. - -* Tue May 4 1999 Wojciech "Sas" Ciêciwa -- building RPM. +%attr(640,root,root) %ghost /var/log/syslog +%attr(750,root,root) %ghost /var/log/news +%attr(750,root,root) %dir /var/log/mail