Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
Make the package autoreconfigurable
|
||||
|
||||
Adjust a minor detail in configure.ac in order to make the package
|
||||
compatible with the autoconf/automake versions we are using in
|
||||
Buildroot.
|
||||
|
||||
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
|
||||
|
||||
Index: b/configure.ac
|
||||
===================================================================
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -1,6 +1,6 @@
|
||||
AC_INIT([logrotate],[3.8.9])
|
||||
|
||||
-AM_INIT_AUTOMAKE
|
||||
+AM_INIT_AUTOMAKE([foreign])
|
||||
AC_DEFINE(_GNU_SOURCE)
|
||||
|
||||
AM_EXTRA_RECURSIVE_TARGETS([test])
|
||||
13
deprecated/firmware/buildroot/package/logrotate/Config.in
Normal file
13
deprecated/firmware/buildroot/package/logrotate/Config.in
Normal file
@@ -0,0 +1,13 @@
|
||||
config BR2_PACKAGE_LOGROTATE
|
||||
bool "logrotate"
|
||||
select BR2_PACKAGE_POPT
|
||||
depends on BR2_USE_WCHAR
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
A simple program to rotate logs.
|
||||
|
||||
https://fedorahosted.org/logrotate/
|
||||
|
||||
comment "logrotate needs a toolchain w/ wchar"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR
|
||||
@@ -0,0 +1,14 @@
|
||||
compress
|
||||
|
||||
include /etc/logrotate.d
|
||||
|
||||
/var/log/messages /var/log/auth.log /var/log/user.log {
|
||||
rotate 7
|
||||
daily
|
||||
delaycompress
|
||||
missingok
|
||||
sharedscripts
|
||||
postrotate
|
||||
/usr/bin/killall -HUP syslogd
|
||||
endscript
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 700ed7ce9072a1cca324779a74797dfaefdae37ac50a817134b947c4ded1dfa7 logrotate-3.8.9.tar.gz
|
||||
30
deprecated/firmware/buildroot/package/logrotate/logrotate.mk
Normal file
30
deprecated/firmware/buildroot/package/logrotate/logrotate.mk
Normal file
@@ -0,0 +1,30 @@
|
||||
################################################################################
|
||||
#
|
||||
# logrotate
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LOGROTATE_VERSION = 3.8.9
|
||||
LOGROTATE_SITE = https://www.fedorahosted.org/releases/l/o/logrotate
|
||||
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`"
|
||||
LOGROTATE_CONF_OPTS = --without-selinux
|
||||
|
||||
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