- Build option to support the syslog-ng spoof-source feature (the feature

spoof-source is disabled by default).
This commit is contained in:
Jose Pedro Oliveira 2006-04-05 20:24:10 +00:00
parent cc8707615a
commit 35028b3e04
1 changed files with 33 additions and 12 deletions

View File

@ -1,22 +1,36 @@
#
# Rebuild option:
#
# --with spoofing enables the syslog-ng feature spoof-source
# (see README.spoof for more information)
#
%define sbindir /sbin
%define libolver 0.3.18
%define spoofing 0
%{?_with_spoofing:%define spoofing 1}
Name: syslog-ng
Version: 1.6.10
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Syslog replacement daemon
Group: System Environment/Daemons
License: GPL
Url: http://www.balabit.com/products/syslog_ng/
URL: http://www.balabit.com/products/syslog_ng/
Source0: http://www.balabit.com/downloads/syslog-ng/1.6/src/syslog-ng-%{version}.tar.gz
Source1: syslog.log
Patch0: syslog-ng-1.6.7-init.patch
Patch1: syslog-ng-1.6.7-logrotate.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildConflicts: libol-devel < 0.3.17
BuildRequires: flex, tcp_wrappers, which
BuildConflicts: libol-devel < %{libolver}
BuildRequires: flex, which
BuildRequires: tcp_wrappers
%if %{spoofing}
BuildRequires: libnet-devel >= 1.1
%endif
Requires: logrotate
Requires(post): chkconfig, initscripts
Requires(preun): chkconfig, initscripts
@ -42,11 +56,14 @@ ideal for firewalled environments.
%patch1 -p1
%{__sed} -i 's|^#!/usr/local/bin/perl|#!%{__perl}|' contrib/relogger.pl
chmod a-x contrib/syslog2ng
mv libol-0.3.18/ChangeLog ChangeLog.libol
mv libol-%{libolver}/{ChangeLog,ChangeLog.libol}
%build
%configure \
--sbindir=%{sbindir} \
%if %{spoofing}
--enable-spoof-source \
%endif
--enable-tcp-wrapper
make %{?_smp_mflags}
@ -76,15 +93,15 @@ 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
/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
/sbin/service syslog-ng stop > /dev/null 2>&1 || :
/sbin/chkconfig --del syslog-ng
fi
%postun
@ -97,11 +114,10 @@ fi
%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING README README.spoof ChangeLog INSTALL NEWS PORTS
%doc doc/sgml/syslog-ng.txt
%doc doc/*.demo doc/*.sample
%doc doc/sgml/syslog-ng.txt doc/*.{demo,sample}
%doc contrib/syslog-ng.conf.doc
%doc contrib/syslog2ng doc/stresstest.sh contrib/relogger.pl
%doc ChangeLog.libol
%doc libol-%{libolver}/ChangeLog.libol
%{sbindir}/syslog-ng
%{_initrddir}/syslog-ng
%dir %{_sysconfdir}/%{name}
@ -113,8 +129,13 @@ fi
%changelog
* 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.