blob: 7f4749f57147fc44b1838939a8a8cabb0cd9fcec [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"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050013
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014DEPENDS += "base-passwd"
15
Patrick Williamsc0f7c042017-02-23 20:41:17 -060016# autotools-brokensep as this package doesn't use automake
Brad Bishopc342db32019-05-15 21:57:59 -040017inherit autotools-brokensep gettext systemd upstream-version-is-even
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018
Brad Bishopd7bf8c12018-02-25 22:55:05 -050019PACKAGECONFIG ??= ""
20PACKAGECONFIG[lm-sensors] = "--enable-sensors,--disable-sensors,lmsensors,lmsensors-libsensors"
Brad Bishop393846f2019-05-20 12:24:11 -040021PACKAGECONFIG[cron] = "--enable-install-cron --enable-copy-only,--disable-install-cron --disable-copy-only"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050022
23EXTRA_OECONF += "--disable-stripping"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024
25SYSTEMD_PACKAGES = "${PN}"
26SYSTEMD_SERVICE_${PN} = "sysstat.service"
27SYSTEMD_AUTO_ENABLE = "enable"
28
29do_configure_prepend() {
30 export sa_lib_dir=${libdir}/sa
31}
32
33do_install() {
34 autotools_do_install
35
36 # don't install /var/log/sa when populating rootfs. Do it through volatile
Patrick Williamsc124f4f2015-09-15 14:41:29 -050037 rm -rf ${D}/var
Brad Bishopd7bf8c12018-02-25 22:55:05 -050038 if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then
39 install -d ${D}/etc/default/volatiles
40 install -m 0644 ${WORKDIR}/99_sysstat ${D}/etc/default/volatiles
41 fi
42 if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
43 install -d ${D}${sysconfdir}/tmpfiles.d
44 echo "d ${localstatedir}/log/sa - - - -" \
45 > ${D}${sysconfdir}/tmpfiles.d/sysstat.conf
46 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -050047
48 install -d ${D}${systemd_unitdir}/system
49 install -m 0644 ${WORKDIR}/sysstat.service ${D}${systemd_unitdir}/system
50 sed -i -e 's#@LIBDIR@#${libdir}#g' ${D}${systemd_unitdir}/system/sysstat.service
51}
52
53pkg_postinst_${PN} () {
54 if [ -n "$D" ]; then
55 exit 0
56 fi
57 if [ -e /etc/init.d/populate-volatile.sh ]; then
58 /etc/init.d/populate-volatile.sh update
59 fi
60}
61
Brad Bishop393846f2019-05-20 12:24:11 -040062FILES_${PN} += "${libdir}/sa ${systemd_system_unitdir}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050063
64TARGET_CC_ARCH += "${LDFLAGS}"