aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
57 lines
1.6 KiB
Makefile
57 lines
1.6 KiB
Makefile
################################################################################
|
|
#
|
|
# rsyslog
|
|
#
|
|
################################################################################
|
|
|
|
RSYSLOG_VERSION = 7.6.7
|
|
RSYSLOG_SITE = http://rsyslog.com/files/download/rsyslog
|
|
RSYSLOG_LICENSE = GPLv3 LGPLv3 Apache-2.0
|
|
RSYSLOG_LICENSE_FILES = COPYING COPYING.LESSER COPYING.ASL20
|
|
RSYSLOG_DEPENDENCIES = zlib libestr liblogging json-c host-pkgconf
|
|
|
|
RSYSLOG_CONF_OPTS = --disable-testbench \
|
|
--enable-cached-man-pages \
|
|
--disable-generate-man-pages
|
|
|
|
# Build after BusyBox
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
RSYSLOG_DEPENDENCIES += busybox
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBEE),y)
|
|
RSYSLOG_DEPENDENCIES += libee
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
|
RSYSLOG_DEPENDENCIES += libgcrypt
|
|
RSYSLOG_CONF_ENV += LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config
|
|
RSYSLOG_CONF_OPTS += --enable-libgcrypt=yes
|
|
else
|
|
RSYSLOG_CONF_OPTS += --enable-libgcrypt=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
|
|
RSYSLOG_DEPENDENCIES += util-linux
|
|
RSYSLOG_CONF_OPTS += --enable-uuid
|
|
else
|
|
RSYSLOG_CONF_OPTS += --disable-uuid
|
|
endif
|
|
|
|
define RSYSLOG_INSTALL_INIT_SYSV
|
|
[ -f $(TARGET_DIR)/etc/init.d/S01rsyslog ] || \
|
|
$(INSTALL) -m 0755 -D package/rsyslog/S01rsyslog \
|
|
$(TARGET_DIR)/etc/init.d/S01rsyslog
|
|
endef
|
|
|
|
define RSYSLOG_INSTALL_CONF_SCRIPT
|
|
[ -f $(TARGET_DIR)/etc/rsyslog.conf ] || \
|
|
$(INSTALL) -m 0644 -D $(@D)/platform/redhat/rsyslog.conf \
|
|
$(TARGET_DIR)/etc/rsyslog.conf
|
|
mkdir -p $(TARGET_DIR)/etc/rsyslog.d
|
|
endef
|
|
|
|
RSYSLOG_POST_INSTALL_TARGET_HOOKS += RSYSLOG_INSTALL_CONF_SCRIPT
|
|
|
|
$(eval $(autotools-package))
|