rrdtool: add systemd support and fix QA issue

When building rrdtool in a building directory where systemd is configured
to be the init system, we would meet the following error.

ERROR: QA Issue: rrdtool: Files/directories were installed but not shipped in any package:
   /lib
   /lib/systemd
   /lib/systemd/system
   /lib/systemd/system/rrdcached.socket
   /lib/systemd/system/rrdcached.service

Fix this problem by adding systemd support to the rrdtool recipe.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Qi.Chen@windriver.com 2015-10-21 15:47:39 +08:00 committed by Martin Jansa
parent 2f5eb8f1b8
commit 8e26d2cddf

View File

@ -15,11 +15,13 @@ SRC_URI = "\
S = "${WORKDIR}/git"
inherit autotools-brokensep gettext pythonnative perlnative python-dir cpan-base
inherit autotools-brokensep gettext pythonnative perlnative python-dir cpan-base systemd
SYSTEMD_SERVICE_${PN} = "rrdcached.socket rrdcached.service"
EXTRA_AUTORECONF = "-I m4"
PACKAGECONFIG ??= "python perl"
PACKAGECONFIG ??= "python perl ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
PACKAGECONFIG[python] = "--enable-python=yes \
am_cv_python_pythondir=${STAGING_LIBDIR}/python${PYTHON_BASEVERSION}/site-packages \
@ -33,6 +35,8 @@ ac_cv_path_PERL_CC='${CC}', \
PACKAGECONFIG[dbi] = "--enable-libdbi,--disable-libdbi,libdbi"
PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,--without-systemdsystemunitdir,systemd,"
EXTRA_OECONF = " \
--enable-shared \
--disable-libwrap \