From 5b20cab69c875e41b14653b467a02d5d185a0a5f Mon Sep 17 00:00:00 2001 From: wbx Date: Wed, 15 Mar 2006 13:40:51 +0000 Subject: add miau from Benjamin Binier, updated to newest upstream, thx. add syslog-ng from Sebastien Bourgasser, pending missing libol package git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3378 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/syslog-ng/Config.in | 30 ++++++++++++ package/syslog-ng/Makefile | 76 ++++++++++++++++++++++++++++++ package/syslog-ng/files/syslog-ng.conf | 16 +++++++ package/syslog-ng/files/syslog-ng.init | 34 +++++++++++++ package/syslog-ng/ipkg/syslog-ng.conffiles | 1 + package/syslog-ng/ipkg/syslog-ng.control | 4 ++ 6 files changed, 161 insertions(+) create mode 100644 package/syslog-ng/Config.in create mode 100644 package/syslog-ng/Makefile create mode 100644 package/syslog-ng/files/syslog-ng.conf create mode 100755 package/syslog-ng/files/syslog-ng.init create mode 100644 package/syslog-ng/ipkg/syslog-ng.conffiles create mode 100644 package/syslog-ng/ipkg/syslog-ng.control (limited to 'package/syslog-ng') diff --git a/package/syslog-ng/Config.in b/package/syslog-ng/Config.in new file mode 100644 index 000000000..d9fface1e --- /dev/null +++ b/package/syslog-ng/Config.in @@ -0,0 +1,30 @@ +config BR2_PACKAGE_SYSLOG_NG + prompt "syslog-ng......................... A powerful syslog daemon" + tristate + default n + help + syslog-ng reads and logs messages to the system console, log + files, other machines and/or users as specified by its + configuration file. + + The configuration file is read at startup and is reread after + receipt of a hangup (HUP) signal. When reloading the + configuration file, all destination files are closed and + reopened as appropriate. For more information about the + configuration file, see syslog-ng.conf(5). + + Typically messages are sent to syslog-ng via a Unix domain + socket (/dev/log) or via UDP, to port 514 or to whatever + syslog/udp is defined to be in /etc/services. To receive + messages from the kernel, /dev/klog is opened for reading. + + Messages sent to syslog-ng should be an entire line, prefixed + by a pri- ority code in between '<' and '>'. Definititions + of the recognised values can be found in the include file + . + + syslog-ng can be configured to pass messages on to other + syslog-ng's and when doing so, it sends the message on with the + priority as a pre- fix. + + http://www.balabit.com/products/syslog_ng/ diff --git a/package/syslog-ng/Makefile b/package/syslog-ng/Makefile new file mode 100644 index 000000000..b97cca360 --- /dev/null +++ b/package/syslog-ng/Makefile @@ -0,0 +1,76 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=syslog-ng +PKG_VERSION:=1.6.9 +PKG_RELEASE:=1 +PKG_MD5SUM:=5280a86b4f5c25b2ba157c8cea302cf0 + +PKG_SOURCE_URL:=http://www.balabit.com/downloads/syslog-ng/stable/src \ + http://www.balabit.com/downloads/syslog-ng/1.6/src +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install +PKG_INIT_LEVEL:=00 + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,SYSLOG_NG,syslog-ng,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + + +$(PKG_BUILD_DIR)/.configured: + (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ + CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/usr/include/libol" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/usr/lib/libol" \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --program-prefix="" \ + --program-suffix="" \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --datadir=/usr/share \ + --includedir=/usr/include \ + --infodir=/usr/share/info \ + --libdir=/usr/lib \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --mandir=/usr/share/man \ + --sbindir=/usr/sbin \ + --sysconfdir=/etc \ + $(DISABLE_LARGEFILE) \ + $(DISABLE_NLS) \ + --localstatedir=/var/lib \ + --disable-dependency-tracking \ + --disable-full-static \ + --enable-tcp-wrapper \ + --with-libol=$(STAGING_DIR)/usr/bin \ + ); + touch $(PKG_BUILD_DIR)/.configured + +$(PKG_BUILD_DIR)/.built: + rm -rf $(PKG_INSTALL_DIR) + mkdir -p $(PKG_INSTALL_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/usr/include/libol" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/usr/lib/libol" \ + CC=$(TARGET_CC) \ + all install + touch $@ + +$(IPKG_SYSLOG_NG): + install -d -m0755 $(IDIR_SYSLOG_NG)/usr/sbin + install -d -m0755 $(IDIR_SYSLOG_NG)/etc/syslog-ng + install -d -m0755 $(IDIR_SYSLOG_NG)/etc/init.d + $(CP) ${PKG_BUILD_DIR}/src/syslog-ng $(IDIR_SYSLOG_NG)/usr/sbin/ + $(CP) files/syslog-ng.conf $(IDIR_SYSLOG_NG)/etc/syslog-ng/ + $(CP) files/syslog-ng.init $(IDIR_SYSLOG_NG)/etc/init.d/S$(PKG_INIT_LEVEL)syslog-ng + $(RSTRIP) $(IDIR_SYSLOG_NG) + $(IPKG_BUILD) $(IDIR_SYSLOG_NG) $(PACKAGE_DIR) + diff --git a/package/syslog-ng/files/syslog-ng.conf b/package/syslog-ng/files/syslog-ng.conf new file mode 100644 index 000000000..658abead2 --- /dev/null +++ b/package/syslog-ng/files/syslog-ng.conf @@ -0,0 +1,16 @@ +options { + chain_hostnames(off); + sync(0); + + # The default action of syslog-ng 1.6.0 is to log a STATS line + # to the file every 10 minutes. That's pretty ugly after a while. + # Change it to every 12 hours so you get a nice daily update of + # how many messages syslog-ng missed (0). + stats(43200); +}; + +source src { unix-stream("/dev/log"); internal(); }; + +destination messages { file("/var/log/messages"); }; + +log { source(src); destination(messages); }; diff --git a/package/syslog-ng/files/syslog-ng.init b/package/syslog-ng/files/syslog-ng.init new file mode 100755 index 000000000..40472ed3b --- /dev/null +++ b/package/syslog-ng/files/syslog-ng.init @@ -0,0 +1,34 @@ +#!/bin/sh + +syslog_start() { + [ -f /etc/syslog-ng/syslog-ng.conf ] || { + echo "/etc/syslog-ng/syslog-ng.conf does not exist !"; + exit 0; + }; + [ -d /var/run ] || mkdir -p /var/run + [ -x /usr/sbin/syslog-ng ] && /usr/sbin/syslog-ng +} + +syslog_stop() { + killall syslog-ng +} + +case "$1" in + start) + syslog_start + ;; + stop) + syslog_stop + ;; + restart) + syslog_stop + sleep 1s + syslog_start + ;; + reload) + kill -HUP `cat /var/run/syslog-ng.pid` &>/dev/null + ;; + *) + echo "Usage: $0 " + ;; +esac diff --git a/package/syslog-ng/ipkg/syslog-ng.conffiles b/package/syslog-ng/ipkg/syslog-ng.conffiles new file mode 100644 index 000000000..453ebbe66 --- /dev/null +++ b/package/syslog-ng/ipkg/syslog-ng.conffiles @@ -0,0 +1 @@ +/etc/syslog-ng/syslog-ng.conf diff --git a/package/syslog-ng/ipkg/syslog-ng.control b/package/syslog-ng/ipkg/syslog-ng.control new file mode 100644 index 000000000..074fff189 --- /dev/null +++ b/package/syslog-ng/ipkg/syslog-ng.control @@ -0,0 +1,4 @@ +Package: syslog-ng +Priority: optional +Section: admin +Description: A powerful syslog daemon -- cgit v1.2.3