mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 05:49:50 +00:00
When the syslog-ng installed it records all messages to /var/log/messages. This makes the default OpenWrt's ubox /sbin/logread useless and return nothing. The logread script was added to the syslog-ng as a shim. It's based on `tail /var/log/messages` and repeats basic options that the ubox logread have. The script is installed instead of the /sbin/logread and this is causes an error. Instead install it to /usr/libexec/logread.sh and specify as an alternative /sbin/logread. The ubox logread also needs to be made as alternative in /usr/libexec/logread-ubox. So we need to give it a separate name. The most simple and clear would be logread-shell or just logread.sh. Suggested-by: Andreas Gnau <andreas.gnau@iopsys.eu> Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
161 lines
4.3 KiB
Makefile
161 lines
4.3 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=syslog-ng
|
|
PKG_VERSION:=4.7.1
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>
|
|
PKG_LICENSE:=LGPL-2.1-or-later GPL-2.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING LGPL.txt GPL.txt
|
|
PKG_CPE_ID:=cpe:/a:balabit:syslog-ng
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/syslog-ng/syslog-ng/releases/download/$(PKG_NAME)-$(PKG_VERSION)/
|
|
PKG_HASH:=5477189a2d12325aa4faebfcf59f5bdd9084234732f0c3ec16dd253847dacf1c
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_INSTALL:=1
|
|
|
|
PKG_BUILD_DEPENDS:= \
|
|
HOST_OS_MACOS:fakeuname/host \
|
|
|
|
PKG_CONFIG_DEPENDS:= \
|
|
CONFIG_IPV6 \
|
|
CONFIG_LIBCURL_ZLIB
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
ifeq ($(CONFIG_HOST_OS_MACOS),y)
|
|
include ../../utils/fakeuname/fakeuname.mk
|
|
endif
|
|
|
|
define Package/syslog-ng
|
|
SECTION:=admin
|
|
CATEGORY:=Administration
|
|
TITLE:=A powerful syslog daemon
|
|
URL:=https://www.syslog-ng.com/products/open-source-log-management/
|
|
DEPENDS:=+libpcre2 +glib2 +libopenssl +libpthread +librt +libdbi +libjson-c +libcurl +libuuid +SYSLOGNG_LOGROTATE:logrotate +LIBCURL_ZLIB:zlib
|
|
ALTERNATIVES:=300:/sbin/logread:/usr/libexec/logread.sh
|
|
endef
|
|
|
|
define Package/syslog-ng/description
|
|
syslog-ng reads and logs messages to the system console, log
|
|
files, other machines and/or users as specified by its
|
|
configuration file.
|
|
endef
|
|
|
|
define Package/syslog-ng/conffiles
|
|
/etc/syslog-ng.conf
|
|
/etc/syslog-ng.d/
|
|
/etc/scl.conf
|
|
endef
|
|
|
|
define Package/syslog-ng/config
|
|
config SYSLOGNG_LOGROTATE
|
|
bool "Logrotate support"
|
|
depends on PACKAGE_syslog-ng
|
|
default n
|
|
help
|
|
It adds support for logrotate functionality.
|
|
|
|
config SYSLOGNG_LOGROTATE_MAXSIZE
|
|
string "Maximum size of /var/log/messages log file"
|
|
depends on SYSLOGNG_LOGROTATE
|
|
default "1M"
|
|
help
|
|
Log files are rotated when they grow bigger than defined size bytes.
|
|
|
|
config SYSLOGNG_LOGROTATE_ROTATE_COUNT
|
|
int "Maximum rotation count for /var/log/messages log file"
|
|
depends on SYSLOGNG_LOGROTATE
|
|
default 1
|
|
help
|
|
Log files are rotated count times before being removed or mailed to
|
|
the address specified in a mail directive. If count is 0, old
|
|
versions are removed rather than rotated.
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(SED) 's,-I/usr/include,,' $(PKG_BUILD_DIR)/configure
|
|
$(Build/Configure/Default)
|
|
endef
|
|
|
|
LOGROTATE_MAXSIZE:=$(call qstrip,$(CONFIG_SYSLOGNG_LOGROTATE_MAXSIZE))
|
|
LOGROTATE_ROTATE:=$(call qstrip,$(CONFIG_SYSLOGNG_LOGROTATE_ROTATE_COUNT))
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-afsnmp \
|
|
$(call autoconf_bool,CONFIG_IPV6,ipv6) \
|
|
--disable-tcp-wrapper \
|
|
--disable-spoof-source \
|
|
--disable-sql \
|
|
--disable-linux-caps \
|
|
--with-jsonc=system \
|
|
--enable-cpp=no \
|
|
--enable-json=yes \
|
|
$(if $(CONFIG_LIBCURL_ZLIB),--enable-http=yes,--enable-http=no) \
|
|
--disable-smtp \
|
|
--disable-mqtt \
|
|
--disable-redis \
|
|
--disable-dependency-tracking \
|
|
--disable-python \
|
|
--disable-geoip2 \
|
|
--disable-java \
|
|
--disable-java-modules \
|
|
--with-librabbitmq-client=no \
|
|
--with-mongoc=no
|
|
|
|
CONFIGURE_VARS += \
|
|
$(if $(CONFIG_HOST_OS_MACOS),PATH=$(FAKEUNAME_PATH):$(PATH)) \
|
|
LIBDBI_CFLAGS="-I$(STAGING_DIR)/usr/include"
|
|
|
|
define Package/syslog-ng/install
|
|
cd $(PKG_BUILD_DIR); make DESTDIR=$(1) install
|
|
|
|
$(call libtool_remove_files,$(1)) # This removes .la files in folder (including subfolders) /usr/lib
|
|
rm -rf $(1)/usr/lib/pkgconfig \
|
|
$(1)/usr/lib/*.a \
|
|
$(1)/usr/include \
|
|
$(1)/var
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/syslog-ng.init $(1)/etc/init.d/syslog-ng
|
|
$(INSTALL_DIR) $(1)/etc/syslog-ng.d
|
|
$(INSTALL_DATA) ./files/syslog-ng.conf $(1)/etc
|
|
touch $(1)/etc/syslog-ng.d/.keep
|
|
|
|
$(INSTALL_DIR) $(1)/usr/libexec
|
|
$(INSTALL_BIN) ./files/logread.sh $(1)/usr/libexec/logread.sh
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/syslog-ng/include/
|
|
$(CP) -r ./files/scl $(1)/usr/share/syslog-ng/include/
|
|
|
|
ifneq ($(strip $(CONFIG_SYSLOGNG_LOGROTATE)),)
|
|
$(INSTALL_DIR) $(1)/etc/logrotate.d
|
|
sed \
|
|
-e 's#@MAXSIZE@#$(LOGROTATE_MAXSIZE)#g' \
|
|
-e 's#@ROTATE@#$(LOGROTATE_ROTATE)#g' \
|
|
./files/syslog-ng.logrotate > $(1)/etc/logrotate.d/syslog-ng.conf
|
|
endif
|
|
endef
|
|
|
|
define Package/syslog-ng/postinst
|
|
#!/bin/sh
|
|
|
|
[ -n "$$IPKG_INSTROOT" ] || {
|
|
/etc/init.d/syslog-ng enable
|
|
/etc/init.d/syslog-ng restart
|
|
}
|
|
endef
|
|
|
|
define Package/syslog-ng/prerm
|
|
#!/bin/sh
|
|
|
|
[ -n "$$IPKG_INSTROOT" ] || {
|
|
/etc/init.d/syslog-ng disable
|
|
/etc/init.d/syslog-ng stop
|
|
}
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,syslog-ng))
|