1SUMMARY = "High performance data logging and graphing system for time series data" 2HOMEPAGE = "http://oss.oetiker.ch/rrdtool/" 3 4LICENSE = "GPL-2.0-only" 5LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=39df84cfd8a5e18bf988f277f7946676" 6 7DEPENDS = "libpng zlib cairo pango glib-2.0 libxml2 groff-native python3-setuptools-native" 8 9SRCREV = "3af04acd38bbc61bbdcdd931dcf234c971aa5336" 10PV = "1.8.0" 11 12SRC_URI = "\ 13 git://github.com/oetiker/rrdtool-1.x.git;branch=master;protocol=http;;protocol=https \ 14" 15 16S = "${WORKDIR}/git" 17 18inherit cpan autotools-brokensep gettext pkgconfig python3native python3-dir systemd 19 20BBCLASSEXTEND = "native" 21 22SYSTEMD_PACKAGES = "rrdcached" 23SYSTEMD_SERVICE:rrdcached = "rrdcached.socket rrdcached.service" 24 25EXTRA_AUTORECONF = "-I m4 --exclude=autopoint" 26 27PACKAGECONFIG ??= "perl ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" 28 29PACKAGECONFIG[python] = "--enable-python=yes \ 30am_cv_python_pythondir=${STAGING_LIBDIR}/python${PYTHON_BASEVERSION}/site-packages \ 31am_cv_python_pyexecdir=${STAGING_LIBDIR}/python${PYTHON_BASEVERSION}/site-packages,\ 32--disable-python,python," 33 34PACKAGECONFIG[perl] = \ 35"--enable-perl=yes --with-perl-options='INSTALLDIRS="vendor" CCFLAGS="${CFLAGS}" NO_PACKLIST=1 NO_PERLLOCAL=1' \ 36ac_cv_path_PERL_CC='${CC}', \ 37--disable-perl,perl," 38 39PACKAGECONFIG[dbi] = "--enable-libdbi,--disable-libdbi,libdbi" 40 41PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,--without-systemdsystemunitdir,systemd," 42 43EXTRA_OECONF = " \ 44 --enable-shared \ 45 --disable-libwrap \ 46 --program-prefix='' \ 47 rd_cv_ieee_works=yes \ 48 --disable-ruby \ 49 --disable-lua \ 50 --disable-tcl \ 51 --disable-rpath \ 52 --enable-nls=${USE_NLS} \ 53 --disable-docs \ 54" 55 56export STAGING_LIBDIR 57export STAGING_INCDIR 58 59# emulate cpan_do_configure 60EXTRA_OEMAKE = ' PERL5LIB="${PERL_ARCHLIB}" ' 61# Avoid do_configure error on some hosts 62 63do_configure() { 64 unset PERLHOSTLIB 65 #fix the pkglib problem with newer automake 66 #perl 67 sed -i -e "s|-Wl,--rpath -Wl,\$rp||g" \ 68 ${S}/bindings/perl-shared/Makefile.PL 69 70 #python 71 sed -i -e '/PYTHON_INCLUDES="-I${/c \ 72 PYTHON_INCLUDES="-I=/usr/include/python${PYTHON_BASEVERSION}"' \ 73 ${S}/m4/acinclude.m4 74 #remove the useless RPATH from the rrdtool.so 75 sed -i -e 's|LD_RUN_PATH=$(libdir)||g' ${S}/bindings/Makefile.am 76 77 autotools_do_configure 78 79 #modify python sitepkg 80 #remove the dependency of perl-shared:Makefile 81 #or perl-shared/Makefile will be regenerated 82 #if any code touch bindings/Makefile after below perl bindings code 83 sed -i -e "s:python/setup.py install:python/setup.py install \ 84 --install-lib=${PYTHON_SITEPACKAGES_DIR}:" \ 85 -e "s:perl-shared/Makefile.PL Makefile:perl-shared/Makefile.PL:" \ 86 ${B}/bindings/Makefile 87 88 #redo the perl bindings 89 ( 90 cd ${S}/bindings/perl-shared; 91 perl Makefile.PL INSTALLDIRS="vendor" INSTALLPRIVLIB="abc"; 92 93 cd ../../bindings/perl-piped; 94 perl Makefile.PL INSTALLDIRS="vendor"; 95 ) 96 97 #change the interpreter in file 98 sed -i -e "s|^PERL = ${STAGING_BINDIR_NATIVE}/.*|PERL = /usr/bin/perl|g" \ 99 ${B}/examples/Makefile 100 sed -i -e "s|${STAGING_BINDIR_NATIVE}/perl-native/perl|/usr/bin/perl|g" \ 101 ${B}/examples/*.pl 102} 103 104PACKAGES =+ "${PN}-perl ${PN}-python" 105PACKAGES =+ "rrdcached" 106 107DESCRIPTION:rrdcached = \ 108"The rrdcached package contains the data caching daemon for RRDtool." 109 110FILES:rrdcached = "${bindir}/rrdcached \ 111 ${systemd_unitdir}/system/rrdcached.service \ 112 ${systemd_unitdir}/system/rrdcached.socket" 113 114FILES:${PN}-doc += "${datadir}/rrdtool/examples" 115 116DESCRIPTION:${PN}-perl = \ 117"The ${PN}-perl package includes RRDtool bindings for perl." 118FILES:${PN}-perl = "${libdir}/perl/vendor_perl/*/*.pm \ 119 ${libdir}/perl/vendor_perl/*/auto/RRDs/RRDs.*" 120RDEPENDS:${PN}-perl = "perl perl-module-lib perl-module-getopt-long perl-module-time-hires \ 121 perl-module-io-file perl-module-ipc-open2 perl-module-io-socket" 122 123DESCRIPTION:${PN}-python = \ 124"The ${PN}-python package includes RRDtool bindings for python." 125FILES:${PN}-python = "${libdir}/python${PYTHON_BASEVERSION}/site-packages/*" 126RDEPENDS:${PN}-python = "python3" 127 128FILES:${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/RRDs/.debug \ 129 ${libdir}/python${PYTHON_BASEVERSION}/site-packages/.debug" 130