364 lines
13 KiB
RPMSpec
364 lines
13 KiB
RPMSpec
|
|
# Rebuild option:
|
|
#
|
|
# --with spoofsource enables the syslog-ng spoof-source feature
|
|
#
|
|
|
|
%define spoofsource 0
|
|
|
|
%{?_with_spoofsource:%define spoofsource 1}
|
|
|
|
%define sbindir /sbin
|
|
|
|
Name: syslog-ng
|
|
Version: 2.0.3
|
|
Release: 1%{?dist}
|
|
Summary: Syslog replacement daemon
|
|
|
|
Group: System Environment/Daemons
|
|
License: GPL
|
|
URL: http://www.balabit.com/products/syslog_ng/
|
|
Source0: http://www.balabit.com/downloads/syslog-ng/2.0/src/syslog-ng-%{version}.tar.gz
|
|
Source1: syslog.log
|
|
Patch0: syslog-ng-2.0.0-init.patch
|
|
Patch1: syslog-ng-1.6.7-logrotate.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildRequires: flex
|
|
BuildRequires: pkgconfig >= 0.20
|
|
BuildRequires: glib2-devel >= 2.2
|
|
BuildRequires: eventlog-devel >= 0.2.5
|
|
BuildRequires: tcp_wrappers-devel
|
|
%if %{spoofsource}
|
|
BuildRequires: libnet-devel >= 1.1
|
|
%endif
|
|
|
|
Requires: logrotate
|
|
Requires(post): chkconfig, initscripts
|
|
Requires(preun): chkconfig, initscripts
|
|
Requires(postun): initscripts
|
|
#
|
|
# Keep initscripts and vixie-cron happy
|
|
#
|
|
Provides: syslog
|
|
|
|
%description
|
|
syslog-ng, as the name shows, is a syslogd replacement, but with new
|
|
functionality for the new generation. The original syslogd allows
|
|
messages only to be sorted based on priority/facility pairs; syslog-ng
|
|
adds the possibility to filter based on message contents using regular
|
|
expressions. The new configuration scheme is intuitive and powerful.
|
|
Forwarding logs over TCP and remembering all forwarding hops makes it
|
|
ideal for firewalled environments.
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
%{__sed} -i 's|^#!/usr/local/bin/perl|#!%{__perl}|' contrib/relogger.pl
|
|
chmod -c a-x contrib/syslog2ng
|
|
|
|
|
|
%build
|
|
%configure \
|
|
--sbindir=%{sbindir} \
|
|
--sysconfdir=%{_sysconfdir}/syslog-ng \
|
|
--enable-ipv6 \
|
|
--enable-tcp-wrapper \
|
|
%if ! %{spoofsource}
|
|
--disable-spoof-source \
|
|
%else
|
|
--enable-spoof-source \
|
|
%endif
|
|
--enable-dynamic-linking
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_initrddir}
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_sysconfdir}/%{name}
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d
|
|
|
|
install -p -m 755 contrib/fedora-packaging/syslog-ng.init \
|
|
$RPM_BUILD_ROOT%{_initrddir}/syslog-ng
|
|
install -p -m 644 contrib/fedora-packaging/syslog-ng.conf \
|
|
$RPM_BUILD_ROOT%{_sysconfdir}/%{name}/syslog-ng.conf
|
|
install -p -m 644 contrib/fedora-packaging/syslog-ng.sysconfig \
|
|
$RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/syslog-ng
|
|
install -p -m 644 %{SOURCE1} \
|
|
$RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/syslog
|
|
|
|
# Vim syntax file
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}
|
|
install -p -m 644 contrib/syslog-ng.vim $RPM_BUILD_ROOT%{_datadir}/%{name}/
|
|
for vimver in 63 64 70 ; do
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/vim/vim$vimver/syntax
|
|
cd $RPM_BUILD_ROOT%{_datadir}/vim/vim$vimver/syntax
|
|
ln -s ../../../%{name}/syslog-ng.vim .
|
|
done
|
|
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
%post
|
|
# only rpm -i (not rpm {-U|-F})
|
|
if [ $1 = 1 ]; then
|
|
/sbin/chkconfig --add syslog-ng
|
|
# /sbin/service syslog-ng start
|
|
fi
|
|
|
|
%preun
|
|
# only rpm -e (not rpm {-U|-F})
|
|
if [ $1 = 0 ]; then
|
|
/sbin/service syslog-ng stop > /dev/null 2>&1 || :
|
|
/sbin/chkconfig --del syslog-ng
|
|
fi
|
|
|
|
%postun
|
|
# only rpm {-U|-F} (not rpm -e)
|
|
if [ $1 = 1 ]; then
|
|
/sbin/service syslog-ng condrestart
|
|
fi
|
|
|
|
|
|
%triggerin -- vim-common
|
|
VIMVERNEW=`rpm -q --qf='%%{epoch}:%%{version}\n' vim-common | sort | tail -n 1 | sed -e 's/[0-9]*://' | sed -e 's/\.[0-9]*$//' | sed -e 's/\.//'`
|
|
[ -d %{_datadir}/vim/vim${VIMVERNEW}/syntax ] && \
|
|
ln -sf %{_datadir}/%{name}/syslog-ng.vim %{_datadir}/vim/vim${VIMVERNEW}/syntax || :
|
|
|
|
%triggerun -- vim-common
|
|
VIMVEROLD=`rpm -q --qf='%%{epoch}:%%{version}\n' vim-common | sort | head -n 1 | sed -e 's/[0-9]*://' | sed -e 's/\.[0-9]*$//' | sed -e 's/\.//'`
|
|
[ $2 = 0 ] && rm -f %{_datadir}/vim/vim${VIMVEROLD}/syntax/syslog-ng.vim || :
|
|
|
|
%triggerpostun -- vim-common
|
|
VIMVEROLD=`rpm -q --qf='%%{epoch}:%%{version}\n' vim-common | sort | head -n 1 | sed -e 's/[0-9]*://' | sed -e 's/\.[0-9]*$//' | sed -e 's/\.//'`
|
|
VIMVERNEW=`rpm -q --qf='%%{epoch}:%%{version}\n' vim-common | sort | tail -n 1 | sed -e 's/[0-9]*://' | sed -e 's/\.[0-9]*$//' | sed -e 's/\.//'`
|
|
if [ $1 = 1 ]; then
|
|
rm -f %{_datadir}/vim/vim${VIMVEROLD}/syntax/syslog-ng.vim || :
|
|
[ -d %{_datadir}/vim/vim${VIMVERNEW}/syntax ] && \
|
|
ln -sf %{_datadir}/%{name}/syslog-ng.vim %{_datadir}/vim/vim${VIMVERNEW}/syntax || :
|
|
fi
|
|
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc AUTHORS ChangeLog COPYING NEWS README
|
|
%doc doc/reference/syslog-ng.txt
|
|
%doc doc/security/*.txt
|
|
%doc doc/examples/syslog-ng.conf.sample
|
|
%doc contrib/{relogger.pl,syslog2ng,syslog-ng.conf.doc}
|
|
%{sbindir}/syslog-ng
|
|
%{_initrddir}/syslog-ng
|
|
%dir %{_sysconfdir}/%{name}
|
|
%config(noreplace) %{_sysconfdir}/%{name}/syslog-ng.conf
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/syslog-ng
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/syslog
|
|
%{_datadir}/%{name}/
|
|
%{_mandir}/man5/*.5*
|
|
%{_mandir}/man8/*.8*
|
|
%ghost %{_datadir}/vim/
|
|
|
|
|
|
%changelog
|
|
* Mon Mar 26 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 2.0.3-1
|
|
- Update to 2.0.3.
|
|
|
|
* Fri Mar 23 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 2.0.3-0.20070323
|
|
- Update to latest snapshot (2007-03-23).
|
|
|
|
* Fri Mar 9 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 2.0.3-0.20070309
|
|
- Enable support for TCP wrappers (--enable-tcp-wrapper).
|
|
- Optional support for spoofed source addresses (--enable-spoof-source)
|
|
(disabled by default; build requires libnet).
|
|
|
|
* Sun Feb 25 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 2.0.2-2
|
|
- Dynamic link glib2 and eventlog (--enable-dynamic-linking).
|
|
For Fedora Core 6 (and above) both packages install their dynamic
|
|
libraries in /lib.
|
|
|
|
* Mon Jan 29 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 2.0.2-1
|
|
- Update to 2.0.2.
|
|
|
|
* Thu Jan 4 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 2.0.1-1
|
|
- Update to 2.0.1.
|
|
|
|
* Fri Dec 15 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 2.0.0-1
|
|
- Updated the init script patch: LSB Description and Short-Description.
|
|
|
|
* Fri Nov 3 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 2.0.0-0
|
|
- Update to 2.0.0.
|
|
|
|
* Sun Sep 10 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.11-3
|
|
- Rebuild for FC6.
|
|
|
|
* Sun Jun 4 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.11-2
|
|
- Install the vim syntax file.
|
|
|
|
* Fri May 5 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.11-1
|
|
- Update to 1.6.11.
|
|
|
|
* Sun Apr 2 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.10-2
|
|
- Build option to support the syslog-ng spoof-source feature
|
|
(the feature spoof-source is disabled by default).
|
|
|
|
* Thu Mar 30 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.10-1
|
|
- Update to 1.6.10.
|
|
- The postscript documentation has been dropped (upstream).
|
|
|
|
* Wed Feb 15 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.9-3
|
|
- Rebuild.
|
|
|
|
* Mon Dec 19 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.9-2
|
|
- Provides syslog instead of sysklogd (#172885).
|
|
|
|
* Wed Nov 30 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.9-1
|
|
- Build conflict statement
|
|
(see: https://lists.balabit.hu/pipermail/syslog-ng/2005-June/007630.html)
|
|
|
|
* Wed Nov 23 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.9-0
|
|
- Update to 1.6.9.
|
|
- The libol support library is now included in the syslog-ng tarball.
|
|
|
|
* Wed Jun 22 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.8-2
|
|
- BuildRequire which, since it's not part of the default buildgroup
|
|
(Konstantin Ryabitsev).
|
|
|
|
* Fri May 27 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.8-1
|
|
- Update to 1.6.8.
|
|
|
|
* Thu May 26 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.7-3
|
|
- Shipping the sysklogd logrotate file and using the same pidfile
|
|
as suggested by Jeremy Katz.
|
|
- Patching the init script: no default runlevels.
|
|
- Removed the triggers to handle the logrotate file (no longer needed).
|
|
- The SELinux use_syslogng boolean has been dropped (rules enabled).
|
|
|
|
* Sat May 07 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.6.7-2.fc4
|
|
- Increased libol required version to 0.3.16
|
|
(https://lists.balabit.hu/pipermail/syslog-ng/2005-May/007385.html).
|
|
|
|
* Sat Apr 09 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.6.7-0.fdr.1
|
|
- Update to 1.6.7.
|
|
- The Red Hat/Fedora Core configuration files are now included in the
|
|
syslog-ng tarball (directory: contrib/fedora-packaging).
|
|
|
|
* Fri Mar 25 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.6.6-0.fdr.4
|
|
- Logrotate file conflict: just comment/uncomment contents of the syslog
|
|
logrotate file using triggers.
|
|
|
|
* Tue Feb 15 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.6.6-0.fdr.3
|
|
- Require logrotate.
|
|
- Documentation updates (upstream).
|
|
|
|
* Sat Feb 05 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.6.6-0.fdr.2
|
|
- Added contrib/relogger.pl (missing in syslog-ng-1.6.6).
|
|
- Requires libol 0.3.15.
|
|
- Added %%trigger scripts to handle the logrotate file.
|
|
|
|
* Fri Feb 04 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.6.6-0.fdr.1
|
|
- Update to 1.6.6.
|
|
- Patches no longer needed.
|
|
|
|
* Fri Feb 04 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.6.5-0.fdr.7
|
|
- Took ownership of the configuration directory (/etc/syslog-ng/).
|
|
- Updated the syslog-ng(8) manpage (upstream patch).
|
|
- Updated the configuration file: /proc/kmsg is a file not a pipe.
|
|
- Patched two contrib files: syslog2ng and syslog-ng.conf.RedHat.
|
|
- Logrotate file inline replacement: perl --> sed (bug 1332 comment 23).
|
|
|
|
* Tue Jan 25 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.6.5-0.fdr.6
|
|
- Logrotate problem: only one logrotate file for syslog and syslog-ng.
|
|
- Configuration file: don't sync d_mail destination (/var/log/maillog).
|
|
|
|
* Mon Jan 24 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.6.5-0.fdr.5
|
|
- SIGHUP handling upstream patch (syslog-ng-1.6.5+20050121.tar.gz).
|
|
- Static linking /usr libraries (patch already upstream).
|
|
|
|
* Thu Sep 30 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.6.5-0.fdr.4
|
|
- make: do not strip the binaries during installation (install vs install-strip)
|
|
(bug 1332 comment 18).
|
|
- install: preserve timestamps (option -p) (bug 1332 comment 18).
|
|
|
|
* Wed Sep 1 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> 0:1.6.5-0.fdr.3
|
|
- use the tcp_wrappers static library instead (bug 1332 comment 15).
|
|
|
|
* Wed Sep 1 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> 0:1.6.5-0.fdr.2
|
|
- added missing build requirement: flex (bug 1332 comment 13).
|
|
|
|
* Wed Aug 25 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> 0:1.6.5-0.fdr.1
|
|
- update to 1.65.
|
|
- removed the syslog-ng.doc.patch patch (already upstream).
|
|
- removed the syslog-ng.conf.solaris documentation file.
|
|
|
|
* Wed Apr 21 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> 0:1.6.2-0.fdr.3
|
|
- removed Conflits:
|
|
- changed the %post and %preun scripts
|
|
- splitted Requires( ... , ... ) into Requires( ... )
|
|
|
|
* Fri Mar 5 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> 0:1.6.2-0.fdr.2
|
|
- corrected the source URL
|
|
|
|
* Sat Feb 28 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> 0:1.6.2-0.fdr.1
|
|
- changed packaged name to be compliant with fedora.us naming conventions
|
|
|
|
* Fri Feb 27 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> 0:1.6.2-0.fdr.0.2
|
|
- updated to version 1.6.2
|
|
- undo "Requires: tcp_wrappers" - tcp_wrappers is a static lib
|
|
|
|
* Sat Feb 7 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> 0:1.6.1-0.fdr.2
|
|
- make %{?_smp_mflags}
|
|
- Requires: tcp_wrappers
|
|
|
|
* Sat Jan 10 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> 0:1.6.1-0.fdr.1
|
|
- first release for fedora.us
|
|
|
|
* Fri Jan 9 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> 1.6.1-1.1tux
|
|
- updated to version 1.6.1
|
|
|
|
* Tue Oct 7 2003 Jose Pedro Oliveira <jpo at di.uminho.pt> 1.6.0rc4-1.1tux
|
|
- updated to version 1.6.0rc4
|
|
|
|
* Tue Aug 26 2003 Jose Pedro Oliveira <jpo at di.uminho.pt> 1.6.0rc3-1.4tux
|
|
- installation scripts improved
|
|
- conflits line
|
|
|
|
* Sat Aug 16 2003 Jose Pedro Oliveira <jpo at di.uminho.pt> 1.6.0rc3-1.3tux
|
|
- install-strip
|
|
|
|
* Tue Jul 22 2003 Jose Pedro Oliveira <jpo at di.uminho.pt> 1.6.0rc3-1.2tux
|
|
- missing document: contrib/syslog-ng.conf.doc
|
|
|
|
* Thu Jun 12 2003 Jose Pedro Oliveira <jpo at di.uminho.pt> 1.6.0rc3-1.1tux
|
|
- Version 1.6.0rc3
|
|
|
|
* Sat Apr 12 2003 Jose Pedro Oliveira <jpo at di.uminho.pt> 1.6.0rc2 snapshot
|
|
- Reorganized specfile
|
|
- Corrected the scripts (%post, %postun, and %preun)
|
|
- Commented the mysql related lines; create an option for future inclusion
|
|
|
|
* Thu Feb 27 2003 Richard E. Perlotto II <richard@perlotto.com> 1.6.0rc1-1
|
|
- Updated for new version
|
|
|
|
* Mon Feb 17 2003 Richard E. Perlotto II <richard@perlotto.com> 1.5.26-1
|
|
- Updated for new version
|
|
|
|
* Sun Dec 20 2002 Richard E. Perlotto II <richard@perlotto.com> 1.5.24-1
|
|
- Updated for new version
|
|
|
|
* Sun Dec 13 2002 Richard E. Perlotto II <richard@perlotto.com> 1.5.23-2
|
|
- Corrected the mass of errors that occured with rpmlint
|
|
- Continue to clean up for the helpful hints on how to write to a database
|
|
|
|
* Sun Dec 08 2002 Richard E. Perlotto II <richard@perlotto.com> 1.5.23-1
|
|
- Updated file with notes and PGP signatures
|
|
|
|
# vim:set ai ts=4 sw=4 sts=4 et:
|