update buildroot to 2017.02.11
This commit is contained in:
36
bsp/buildroot-2017.02.11/package/logrotate/logrotate.mk
Normal file
36
bsp/buildroot-2017.02.11/package/logrotate/logrotate.mk
Normal file
@@ -0,0 +1,36 @@
|
||||
################################################################################
|
||||
#
|
||||
# logrotate
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LOGROTATE_VERSION = 3.11.0
|
||||
LOGROTATE_SITE = $(call github,logrotate,logrotate,$(LOGROTATE_VERSION))
|
||||
LOGROTATE_LICENSE = GPLv2+
|
||||
LOGROTATE_LICENSE_FILES = COPYING
|
||||
LOGROTATE_DEPENDENCIES = popt host-pkgconf
|
||||
# tarball does not have a generated configure script
|
||||
LOGROTATE_AUTORECONF = YES
|
||||
LOGROTATE_CONF_ENV = LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs popt`"
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
|
||||
LOGROTATE_CONF_OPTS += --with-selinux
|
||||
LOGROTATE_DEPENDENCIES += libselinux
|
||||
else
|
||||
LOGROTATE_CONF_OPTS += --without-selinux
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ACL),y)
|
||||
LOGROTATE_DEPENDENCIES += acl
|
||||
LOGROTATE_CONF_OPTS += --with-acl
|
||||
else
|
||||
LOGROTATE_CONF_OPTS += --without-acl
|
||||
endif
|
||||
|
||||
define LOGROTATE_INSTALL_TARGET_CONF
|
||||
$(INSTALL) -m 0644 package/logrotate/logrotate.conf $(TARGET_DIR)/etc/logrotate.conf
|
||||
$(INSTALL) -d -m 0755 $(TARGET_DIR)/etc/logrotate.d
|
||||
endef
|
||||
LOGROTATE_POST_INSTALL_TARGET_HOOKS += LOGROTATE_INSTALL_TARGET_CONF
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user