diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-01-02 03:29:45 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-06 11:12:30 +0000 |
commit | e15d7955a98cfd6923775cdb3aa61756d4f58c2d (patch) | |
tree | ca93a5f5016bd3a9496415d9eb7588ac44bc16a5 /meta/recipes-extended/logrotate/logrotate_3.8.7.bb | |
parent | 82cc941128f9eaf57c3a9a648fc58227f6c1956c (diff) | |
download | openembedded-core-e15d7955a98cfd6923775cdb3aa61756d4f58c2d.tar.gz openembedded-core-e15d7955a98cfd6923775cdb3aa61756d4f58c2d.tar.bz2 openembedded-core-e15d7955a98cfd6923775cdb3aa61756d4f58c2d.zip |
logrotate: upgrade to 3.8.7
* Upgrade to 3.8.7
* Rename the patches dir from logrotate-3.8.1 -> logrotate
* Remove grotate-CVE-2011-1548.patch since it had been fixed
* Update act-as-mv-when-rotate.patch and update-the-manual.patch to make
them work with the higher version, and send them to the upstream
* Fix the HOMEPAGE
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
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 @@ +SUMMARY = "Rotates, compresses, removes and mails system log files" +SECTION = "console/utils" +HOMEPAGE = "https://fedorahosted.org/logrotate/" +LICENSE = "GPLv2" + +DEPENDS="coreutils popt" + +LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" + +SRC_URI = "https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.gz \ + file://act-as-mv-when-rotate.patch \ + file://disable-check-different-filesystems.patch \ + file://update-the-manual.patch \ + " + +SRC_URI[md5sum] = "99e08503ef24c3e2e3ff74cc5f3be213" +SRC_URI[sha256sum] = "f6ba691f40e30e640efa2752c1f9499a3f9738257660994de70a45fe00d12b64" + +EXTRA_OEMAKE = "CC='${CC}'" + +do_install(){ + oe_runmake install DESTDIR=${D} PREFIX=${D} MANDIR=${mandir} +} + +do_install_append(){ + mkdir -p ${D}${sysconfdir}/logrotate.d + mkdir -p ${D}${sysconfdir}/cron.daily + mkdir -p ${D}${localstatedir}/lib + install -p -m 644 examples/logrotate-default ${D}${sysconfdir}/logrotate.conf + install -p -m 755 examples/logrotate.cron ${D}${sysconfdir}/cron.daily/logrotate + touch ${D}${localstatedir}/lib/logrotate.status +} |