diff options
Diffstat (limited to 'meta/recipes-extended/logrotate/logrotate_3.8.7.bb')
| -rw-r--r-- | meta/recipes-extended/logrotate/logrotate_3.8.7.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-extended/logrotate/logrotate_3.8.7.bb b/meta/recipes-extended/logrotate/logrotate_3.8.7.bb new file mode 100644 index 0000000000..055bfd565d --- /dev/null +++ b/meta/recipes-extended/logrotate/logrotate_3.8.7.bb | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | SUMMARY = "Rotates, compresses, removes and mails system log files" | ||
| 2 | SECTION = "console/utils" | ||
| 3 | HOMEPAGE = "https://fedorahosted.org/logrotate/" | ||
| 4 | LICENSE = "GPLv2" | ||
| 5 | |||
| 6 | DEPENDS="coreutils popt" | ||
| 7 | |||
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" | ||
| 9 | |||
| 10 | SRC_URI = "https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.gz \ | ||
| 11 | file://act-as-mv-when-rotate.patch \ | ||
| 12 | file://disable-check-different-filesystems.patch \ | ||
| 13 | file://update-the-manual.patch \ | ||
| 14 | " | ||
| 15 | |||
| 16 | SRC_URI[md5sum] = "99e08503ef24c3e2e3ff74cc5f3be213" | ||
| 17 | SRC_URI[sha256sum] = "f6ba691f40e30e640efa2752c1f9499a3f9738257660994de70a45fe00d12b64" | ||
| 18 | |||
| 19 | EXTRA_OEMAKE = "CC='${CC}'" | ||
| 20 | |||
| 21 | do_install(){ | ||
| 22 | oe_runmake install DESTDIR=${D} PREFIX=${D} MANDIR=${mandir} | ||
| 23 | } | ||
| 24 | |||
| 25 | do_install_append(){ | ||
| 26 | mkdir -p ${D}${sysconfdir}/logrotate.d | ||
| 27 | mkdir -p ${D}${sysconfdir}/cron.daily | ||
| 28 | mkdir -p ${D}${localstatedir}/lib | ||
| 29 | install -p -m 644 examples/logrotate-default ${D}${sysconfdir}/logrotate.conf | ||
| 30 | install -p -m 755 examples/logrotate.cron ${D}${sysconfdir}/cron.daily/logrotate | ||
| 31 | touch ${D}${localstatedir}/lib/logrotate.status | ||
| 32 | } | ||
