summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/rsyslog
diff options
context:
space:
mode:
authorJackie Huang <jackie.huang@windriver.com>2014-04-21 02:21:04 -0400
committerMartin Jansa <Martin.Jansa@gmail.com>2014-05-03 20:45:00 +0200
commit1760dd3e8995db842c06194d76600281390ce58c (patch)
treec712920f94c9810fcb02daa62adba52e4f9a1ce7 /meta-oe/recipes-extended/rsyslog
parent59f41a800fe76994f7719e913c3c679926d3bdcf (diff)
downloadmeta-openembedded-1760dd3e8995db842c06194d76600281390ce58c.tar.gz
rsyslog: use BPN to fix multilib and add all licenses
- use BPN instead of PN to fix multilib builds - add all three licenses - add DESCRIPTION Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Diffstat (limited to 'meta-oe/recipes-extended/rsyslog')
-rw-r--r--meta-oe/recipes-extended/rsyslog/rsyslog_7.4.4.bb21
1 files changed, 17 insertions, 4 deletions
diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog_7.4.4.bb b/meta-oe/recipes-extended/rsyslog/rsyslog_7.4.4.bb
index 034592a73..b1392e9b3 100644
--- a/meta-oe/recipes-extended/rsyslog/rsyslog_7.4.4.bb
+++ b/meta-oe/recipes-extended/rsyslog/rsyslog_7.4.4.bb
@@ -1,17 +1,30 @@
1SUMMARY = "Rsyslog is an enhanced multi-threaded syslogd" 1SUMMARY = "Rsyslog is an enhanced multi-threaded syslogd"
2DESCRIPTION = "\
3Rsyslog is an enhanced syslogd supporting, among others, MySQL,\
4 PostgreSQL, failover log destinations, syslog/tcp, fine grain\
5 output format control, high precision timestamps, queued operations\
6 and the ability to filter on any message part. It is quite\
7 compatible to stock sysklogd and can be used as a drop-in replacement.\
8 Its advanced features make it suitable for enterprise-class,\
9 encryption protected syslog relay chains while at the same time being\
10 very easy to setup for the novice user."
11
2DEPENDS = "zlib libestr json-c" 12DEPENDS = "zlib libestr json-c"
3DEPENDS += "${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}" 13DEPENDS += "${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
4HOMEPAGE = "http://www.rsyslog.com/" 14HOMEPAGE = "http://www.rsyslog.com/"
5LICENSE = "GPLv3" 15LICENSE = "GPLv3 & LGPLv3 & Apache-2.0"
6LIC_FILES_CHKSUM = "file://COPYING;md5=51d9635e646fb75e1b74c074f788e973" 16LIC_FILES_CHKSUM = "file://COPYING;md5=51d9635e646fb75e1b74c074f788e973 \
17 file://COPYING.LESSER;md5=cb7903f1e5c39ae838209e130dca270a \
18 file://COPYING.ASL20;md5=052f8a09206615ab07326ff8ce2d9d32\
19"
7 20
8SRC_URI = "http://www.rsyslog.com/files/download/rsyslog/${PN}-${PV}.tar.gz \ 21SRC_URI = "http://www.rsyslog.com/files/download/rsyslog/${BPN}-${PV}.tar.gz \
9 file://initscript \ 22 file://initscript \
10" 23"
11 24
12SRC_URI[md5sum] = "ebcc010a6205c28eb505c0fe862f32c6" 25SRC_URI[md5sum] = "ebcc010a6205c28eb505c0fe862f32c6"
13SRC_URI[sha256sum] = "276d094d1e4c62c770ec8a72723667f119eee038912b79cf3337d439bc2f9087" 26SRC_URI[sha256sum] = "276d094d1e4c62c770ec8a72723667f119eee038912b79cf3337d439bc2f9087"
14 27
15inherit autotools pkgconfig systemd update-rc.d 28inherit autotools pkgconfig systemd update-rc.d
16 29
17EXTRA_OECONF += "${@base_contains('DISTRO_FEATURES', 'systemd', '--with-systemdsystemunitdir=${systemd_unitdir}/system/', '--without-systemdsystemunitdir', d)} --enable-cached-man-pages" 30EXTRA_OECONF += "${@base_contains('DISTRO_FEATURES', 'systemd', '--with-systemdsystemunitdir=${systemd_unitdir}/system/', '--without-systemdsystemunitdir', d)} --enable-cached-man-pages"