blob: 592cbf45743005c38f461817d3843955f685163f [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "System performance tools"
2DESCRIPTION = "The sysstat utilities are a collection of performance monitoring tools for Linux."
3HOMEPAGE = "http://sebastien.godard.pagesperso-orange.fr/"
4LICENSE = "GPLv2+"
5SECTION = "console/utils"
6
7SRC_URI = "http://pagesperso-orange.fr/sebastien.godard/sysstat-${PV}.tar.xz \
8 file://99_sysstat \
9 file://sysstat.service \
10 "
11
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050012UPSTREAM_CHECK_URI = "http://sebastien.godard.pagesperso-orange.fr/download.html"
Brad Bishop15ae2502019-06-18 21:44:24 -040013UPSTREAM_VERSION_UNKNOWN = "1"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050014
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015DEPENDS += "base-passwd"
16
Patrick Williamsc0f7c042017-02-23 20:41:17 -060017# autotools-brokensep as this package doesn't use automake
Brad Bishopc342db32019-05-15 21:57:59 -040018inherit autotools-brokensep gettext systemd upstream-version-is-even
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019
Brad Bishopd7bf8c12018-02-25 22:55:05 -050020PACKAGECONFIG ??= ""
21PACKAGECONFIG[lm-sensors] = "--enable-sensors,--disable-sensors,lmsensors,lmsensors-libsensors"
Brad Bishop393846f2019-05-20 12:24:11 -040022PACKAGECONFIG[cron] = "--enable-install-cron --enable-copy-only,--disable-install-cron --disable-copy-only"
Brad Bishop96ff1982019-08-19 13:50:42 -040023PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_system_unitdir}"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050024
25EXTRA_OECONF += "--disable-stripping"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026
27SYSTEMD_PACKAGES = "${PN}"
28SYSTEMD_SERVICE_${PN} = "sysstat.service"
29SYSTEMD_AUTO_ENABLE = "enable"
30
31do_configure_prepend() {
32 export sa_lib_dir=${libdir}/sa
33}
34
35do_install() {
36 autotools_do_install
37
38 # don't install /var/log/sa when populating rootfs. Do it through volatile
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039 rm -rf ${D}/var
Brad Bishopd7bf8c12018-02-25 22:55:05 -050040 if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then
41 install -d ${D}/etc/default/volatiles
42 install -m 0644 ${WORKDIR}/99_sysstat ${D}/etc/default/volatiles
43 fi
44 if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
45 install -d ${D}${sysconfdir}/tmpfiles.d
46 echo "d ${localstatedir}/log/sa - - - -" \
47 > ${D}${sysconfdir}/tmpfiles.d/sysstat.conf
Patrick Williamsc124f4f2015-09-15 14:41:29 -050048
Brad Bishop96ff1982019-08-19 13:50:42 -040049 if ${@bb.utils.contains('PACKAGECONFIG', 'cron', 'false', 'true', d)}; then
50 install -d ${D}${systemd_unitdir}/system
51 install -m 0644 ${WORKDIR}/sysstat.service ${D}${systemd_unitdir}/system
52 sed -i -e 's#@LIBDIR@#${libdir}#g' ${D}${systemd_unitdir}/system/sysstat.service
53 fi
54 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -050055}
56
57pkg_postinst_${PN} () {
Brad Bishopf3fd2882019-06-21 08:06:37 -040058 if [ ! -n "$D" ]; then
59 if [ -e /etc/init.d/populate-volatile.sh ]; then
60 /etc/init.d/populate-volatile.sh update
61 fi
62 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -050063}
64
Brad Bishop393846f2019-05-20 12:24:11 -040065FILES_${PN} += "${libdir}/sa ${systemd_system_unitdir}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050066
67TARGET_CC_ARCH += "${LDFLAGS}"