diff options
author | Andres Beltran <abeltran@microsoft.com> | 2022-09-19 21:43:26 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-09-21 17:15:04 -0700 |
commit | 9c136fcd9ef71f3376814bd729ce4e67a94db2da (patch) | |
tree | 27109d2cc38c59506b41f7a8edb67046997639da | |
parent | ca7447990d158f2dce9d919e506763a125a4fcf8 (diff) | |
download | meta-openembedded-9c136fcd9ef71f3376814bd729ce4e67a94db2da.tar.gz |
Make graph dependencies optional
-rw-r--r-- | meta-oe/recipes-extended/rrdtool/rrdtool_1.8.0.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-oe/recipes-extended/rrdtool/rrdtool_1.8.0.bb b/meta-oe/recipes-extended/rrdtool/rrdtool_1.8.0.bb index d953c11ee8..961fe7cef7 100644 --- a/meta-oe/recipes-extended/rrdtool/rrdtool_1.8.0.bb +++ b/meta-oe/recipes-extended/rrdtool/rrdtool_1.8.0.bb | |||
@@ -4,7 +4,7 @@ HOMEPAGE = "http://oss.oetiker.ch/rrdtool/" | |||
4 | LICENSE = "GPL-2.0-only" | 4 | LICENSE = "GPL-2.0-only" |
5 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=39df84cfd8a5e18bf988f277f7946676" | 5 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=39df84cfd8a5e18bf988f277f7946676" |
6 | 6 | ||
7 | DEPENDS = "libpng zlib cairo pango glib-2.0 libxml2 groff-native python3-setuptools-native" | 7 | DEPENDS = "libpng zlib glib-2.0 libxml2 groff-native python3-setuptools-native" |
8 | 8 | ||
9 | SRCREV = "3af04acd38bbc61bbdcdd931dcf234c971aa5336" | 9 | SRCREV = "3af04acd38bbc61bbdcdd931dcf234c971aa5336" |
10 | PV = "1.8.0" | 10 | PV = "1.8.0" |
@@ -24,7 +24,7 @@ SYSTEMD_SERVICE:rrdcached = "rrdcached.socket rrdcached.service" | |||
24 | 24 | ||
25 | EXTRA_AUTORECONF = "-I m4 --exclude=autopoint" | 25 | EXTRA_AUTORECONF = "-I m4 --exclude=autopoint" |
26 | 26 | ||
27 | PACKAGECONFIG ??= "perl ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" | 27 | PACKAGECONFIG ??= "perl graph ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" |
28 | 28 | ||
29 | PACKAGECONFIG[python] = "--enable-python=yes \ | 29 | PACKAGECONFIG[python] = "--enable-python=yes \ |
30 | am_cv_python_pythondir=${STAGING_LIBDIR}/python${PYTHON_BASEVERSION}/site-packages \ | 30 | am_cv_python_pythondir=${STAGING_LIBDIR}/python${PYTHON_BASEVERSION}/site-packages \ |
@@ -40,6 +40,8 @@ PACKAGECONFIG[dbi] = "--enable-libdbi,--disable-libdbi,libdbi" | |||
40 | 40 | ||
41 | PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,--without-systemdsystemunitdir,systemd," | 41 | PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,--without-systemdsystemunitdir,systemd," |
42 | 42 | ||
43 | PACKAGECONFIG[graph] = "--enable-rrd_graph,--disable-rrd_graph,pango cairo" | ||
44 | |||
43 | EXTRA_OECONF = " \ | 45 | EXTRA_OECONF = " \ |
44 | --enable-shared \ | 46 | --enable-shared \ |
45 | --disable-libwrap \ | 47 | --disable-libwrap \ |