diff options
author | Xiaofeng Yan <xiaofeng.yan@windriver.com> | 2010-09-01 10:29:03 +0800 |
---|---|---|
committer | Saul Wold <Saul.Wold@intel.com> | 2010-09-02 15:19:34 -0700 |
commit | 47423b530f1228fa36f8336687709a87c699114f (patch) | |
tree | b62d78f8bad98b42c770c0656f9e46c36fec6d10 | |
parent | dea8d65f3ce892007bb085d1c283985551d17b10 (diff) | |
download | poky-47423b530f1228fa36f8336687709a87c699114f.tar.gz |
logrotate: Add new logrotate package
logrotate allows for the rotation, compression and removal of system log file
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
-rw-r--r-- | meta/recipes-extended/logrotate/logrotate_3.7.9.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-extended/logrotate/logrotate_3.7.9.bb b/meta/recipes-extended/logrotate/logrotate_3.7.9.bb new file mode 100644 index 0000000000..f657d78871 --- /dev/null +++ b/meta/recipes-extended/logrotate/logrotate_3.7.9.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | DESCRIPTION = "Rotates, compresses, removes and mails system log files" | ||
2 | SECTION = "console/utils" | ||
3 | PRIORITY = "required" | ||
4 | HOMEPAGE = "https://fedorahosted.org/releases/l/o/logrotate" | ||
5 | LICENSE = "GPLv2" | ||
6 | PR = "r0" | ||
7 | |||
8 | DEPENDS="coreutils" | ||
9 | |||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" | ||
11 | |||
12 | SRC_URI = "https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.gz" | ||
13 | |||
14 | |||
15 | EXTRA_OEMAKE = "CC='${CC}'" | ||
16 | |||
17 | do_install(){ | ||
18 | oe_runmake install DESTDIR=${D} PREFIX=${D} MANDIR=${mandir} | ||
19 | } | ||
20 | |||
21 | do_install_append(){ | ||
22 | mkdir -p ${D}${sysconfdir}/logrotate.d | ||
23 | mkdir -p ${D}${sysconfdir}/cron.daily | ||
24 | mkdir -p ${D}${localstatedir}/lib | ||
25 | install -p -m 644 examples/logrotate-default ${D}${sysconfdir}/logrotate.conf | ||
26 | install -p -m 755 examples/logrotate.cron ${D}${sysconfdir}/cron.daily/logrotate | ||
27 | touch ${D}${localstatedir}/lib/logrotate.status | ||
28 | } | ||