summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/logrotate
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/logrotate')
-rw-r--r--meta/recipes-extended/logrotate/logrotate_3.7.9.bb28
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 @@
1DESCRIPTION = "Rotates, compresses, removes and mails system log files"
2SECTION = "console/utils"
3PRIORITY = "required"
4HOMEPAGE = "https://fedorahosted.org/releases/l/o/logrotate"
5LICENSE = "GPLv2"
6PR = "r0"
7
8DEPENDS="coreutils"
9
10LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760"
11
12SRC_URI = "https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.gz"
13
14
15EXTRA_OEMAKE = "CC='${CC}'"
16
17do_install(){
18 oe_runmake install DESTDIR=${D} PREFIX=${D} MANDIR=${mandir}
19}
20
21do_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}