From: wberrier at uclibc.org <wberrier@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/package: logrotate
Date: Mon, 6 Oct 2008 13:41:12 -0700 (PDT) [thread overview]
Message-ID: <20081006204112.DFD173C807@busybox.net> (raw)
Author: wberrier
Date: 2008-10-06 13:41:12 -0700 (Mon, 06 Oct 2008)
New Revision: 23610
Log:
logrotate:
-new package
Added:
trunk/buildroot/package/logrotate/
trunk/buildroot/package/logrotate/Config.in
trunk/buildroot/package/logrotate/logrotate.conf
trunk/buildroot/package/logrotate/logrotate.mk
Modified:
trunk/buildroot/package/Config.in
Changeset:
Modified: trunk/buildroot/package/Config.in
===================================================================
--- trunk/buildroot/package/Config.in 2008-10-06 20:28:46 UTC (rev 23609)
+++ trunk/buildroot/package/Config.in 2008-10-06 20:41:12 UTC (rev 23610)
@@ -89,6 +89,7 @@
source "package/liblockfile/Config.in"
source "package/libsysfs/Config.in"
source "package/lockfile-progs/Config.in"
+source "package/logrotate/Config.in"
source "package/lsof/Config.in"
source "package/ltp-testsuite/Config.in"
source "package/ltrace/Config.in"
Added: trunk/buildroot/package/logrotate/Config.in
===================================================================
--- trunk/buildroot/package/logrotate/Config.in (rev 0)
+++ trunk/buildroot/package/logrotate/Config.in 2008-10-06 20:41:12 UTC (rev 23610)
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_LOGROTATE
+ bool "logrotate"
+ select BR2_PACKAGE_POPT
+ depends on BR2_USE_WCHAR
+ help
+ A simple program to rotate logs.
+
+ https://fedorahosted.org/logrotate/
+
+comment "logrotate - disabled (requires wchar support)"
+ depends on !BR2_USE_WCHAR
+
Added: trunk/buildroot/package/logrotate/logrotate.conf
===================================================================
--- trunk/buildroot/package/logrotate/logrotate.conf (rev 0)
+++ trunk/buildroot/package/logrotate/logrotate.conf 2008-10-06 20:41:12 UTC (rev 23610)
@@ -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
+}
Added: trunk/buildroot/package/logrotate/logrotate.mk
===================================================================
--- trunk/buildroot/package/logrotate/logrotate.mk (rev 0)
+++ trunk/buildroot/package/logrotate/logrotate.mk 2008-10-06 20:41:12 UTC (rev 23610)
@@ -0,0 +1,38 @@
+LOGROTATE_VERSION:=3.7.7
+LOGROTATE_SOURCE:=logrotate-$(LOGROTATE_VERSION).tar.gz
+LOGROTATE_SITE:=https://fedorahosted.org/releases/l/o/logrotate/
+LOGROTATE_DIR:=$(BUILD_DIR)/logrotate-$(LOGROTATE_VERSION)
+LOGROTATE_BINARY:=logrotate
+LOGROTATE_TARGET_BINARY:=usr/sbin/$(LOGROTATE_BINARY)
+
+$(DL_DIR)/$(LOGROTATE_SOURCE):
+ $(WGET) -P $(DL_DIR) $(LOGROTATE_SITE)/$(LOGROTATE_SOURCE)
+
+$(LOGROTATE_DIR)/.source: $(DL_DIR)/$(LOGROTATE_SOURCE)
+ $(ZCAT) $(DL_DIR)/$(LOGROTATE_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
+ toolchain/patch-kernel.sh $(LOGROTATE_DIR) package/logrotate/ *.patch
+ touch $@
+
+$(LOGROTATE_DIR)/$(LOGROTATE_BINARY): $(LOGROTATE_DIR)/.source
+ $(MAKE) CC=$(TARGET_CC) -C $(LOGROTATE_DIR)
+
+$(TARGET_DIR)/$(LOGROTATE_TARGET_BINARY): $(LOGROTATE_DIR)/$(LOGROTATE_BINARY)
+ $(MAKE) PREFIX=$(TARGET_DIR) -C $(LOGROTATE_DIR) install
+ $(INSTALL) -m 0644 package/logrotate/logrotate.conf $(TARGET_DIR)/etc/logrotate.conf
+ $(INSTALL) -d -m 0755 $(TARGET_DIR)/etc/logrotate.d
+
+logrotate: uclibc busybox popt $(TARGET_DIR)/$(LOGROTATE_TARGET_BINARY)
+
+logrotate-source: $(DL_DIR)/$(LOGROTATE_SOURCE)
+
+logrotate-clean:
+ rm -f $(TARGET_DIR)/$(LOGROTATE_TARGET_BINARY)
+ -$(MAKE) -C $(LOGROTATE_DIR) clean
+
+logrotate-dirclean:
+ rm -Rf $(LOGROTATE_DIR)
+
+ifeq ($(strip $(BR2_PACKAGE_LOGROTATE)),y)
+TARGETS+=logrotate
+endif
+
next reply other threads:[~2008-10-06 20:41 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-06 20:41 wberrier at uclibc.org [this message]
2008-10-07 5:48 ` [Buildroot] svn commit: trunk/buildroot/package: logrotate Hamish Moffatt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20081006204112.DFD173C807@busybox.net \
--to=wberrier@uclibc.org \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.