mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 18:18:32 +00:00
* dbi was autodetected from sysroot causing undeterministic builds and failures in lmsensors builds: ld: warning: libdbi.so.1, needed by sysroots/qemux86/usr/lib/librrd.so, not found (try using -rpath or -rpath-link) sysroots/qemux86/usr/lib/librrd.so: undefined reference to `dbi_result_get_string_idx' Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
40 lines
1.0 KiB
BlitzBasic
40 lines
1.0 KiB
BlitzBasic
DESCRIPTION = "High performance data logging and graphing system for time series data."
|
|
HOMEPAGE = "http://oss.oetiker.ch/rrdtool/"
|
|
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=44fee82a1d2ed0676cf35478283e0aa0"
|
|
|
|
DEPENDS = "libpng zlib cairo pango glib-2.0 libxml2"
|
|
|
|
PR = "r2"
|
|
|
|
SRC_URI = "http://oss.oetiker.ch/rrdtool/pub/rrdtool-${PV}.tar.gz \
|
|
file://0001-rrdtool-eradicate-tcl-support.patch \
|
|
file://remove_hardcoded_xml_include.patch \
|
|
"
|
|
SRC_URI[md5sum] = "ffe369d8921b4dfdeaaf43812100c38f"
|
|
SRC_URI[sha256sum] = "956aaf431c955ba88dd7d98920ade3a8c4bad04adb1f9431377950a813a7af11"
|
|
|
|
inherit autotools gettext
|
|
|
|
EXTRA_AUTORECONF = "-I m4"
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[dbi] = "--enable-libdbi,--disable-libdbi,libdbi"
|
|
|
|
EXTRA_OECONF = " \
|
|
--enable-shared \
|
|
--enable-local-libpng \
|
|
--enable-local-zlib \
|
|
--disable-libwrap \
|
|
--program-prefix='' \
|
|
rd_cv_ieee_works=yes \
|
|
--disable-perl \
|
|
--disable-python \
|
|
--disable-ruby \
|
|
--disable-lua \
|
|
--disable-rpath \
|
|
"
|
|
|
|
|