mirror of
https://github.com/openwrt/packages.git
synced 2025-12-23 01:34:31 +04:00
Since February 2023, I decided to no longer work with Turris, I mean CZ.NIC company
due to some reasons how the development goes and since that day my work address is not
available and not sure if there is some redirect to someone else, but if anyone wants to
reach me, use my email address, where they can find me.
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry picked from commit 1e1b2051db)
159 lines
4.1 KiB
Makefile
159 lines
4.1 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=syslog-ng
|
|
PKG_VERSION:=4.3.1
|
|
PKG_RELEASE:=1
|
|
|
|
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:=999dbab62982c3cffba02c0be22c596ee1ce81d6954689dc9b3a6afeb513cce3
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_INSTALL:=1
|
|
|
|
PKG_BUILD_DEPENDS:= \
|
|
HOST_OS_MACOS:fakeuname/host \
|
|
|
|
PKG_CONFIG_DEPENDS:= \
|
|
CONFIG_IPV6 \
|
|
|
|
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 +zlib +libdbi +libjson-c +libcurl +libuuid +SYSLOGNG_LOGROTATE:logrotate
|
|
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 \
|
|
--enable-http=yes \
|
|
--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)/sbin
|
|
$(INSTALL_BIN) ./files/logread $(1)/sbin
|
|
|
|
$(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))
|