blob: e5e134c0382574086a2754193dd885b4d6ba5807 [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
Brad Bishop79641f22019-09-10 07:20:22 -04007SRC_URI = "http://pagesperso-orange.fr/sebastien.godard/${BP}.tar.xz \
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008 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 Bishop1d80a2e2019-11-15 16:35:03 -050019PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050020PACKAGECONFIG[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 Bishop96ff1982019-08-19 13:50:42 -040022PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_system_unitdir}"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050023
24EXTRA_OECONF += "--disable-stripping"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050025
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026do_configure_prepend() {
Brad Bishop79641f22019-09-10 07:20:22 -040027 export sa_lib_dir=${libexecdir}/sa
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028}
29
30do_install() {
31 autotools_do_install
32
Andrew Geissler82c905d2020-04-13 13:39:40 -050033 # Don't version the documentation
34 mv ${D}${docdir}/${BP} ${D}${docdir}/${BPN}
35
Patrick Williamsc124f4f2015-09-15 14:41:29 -050036 # 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
Patrick Williamsc124f4f2015-09-15 14:41:29 -050046
Brad Bishop1d80a2e2019-11-15 16:35:03 -050047 # Unless both cron and systemd are enabled, install our own
48 # systemd unit file. Otherwise the package will install one.
49 if ${@bb.utils.contains('PACKAGECONFIG', 'cron systemd', 'false', 'true', d)}; then
Brad Bishop96ff1982019-08-19 13:50:42 -040050 install -d ${D}${systemd_unitdir}/system
51 install -m 0644 ${WORKDIR}/sysstat.service ${D}${systemd_unitdir}/system
Brad Bishop1d80a2e2019-11-15 16:35:03 -050052 sed -i -e 's#@LIBEXECDIR@#${libexecdir}#g' ${D}${systemd_unitdir}/system/sysstat.service
Brad Bishop96ff1982019-08-19 13:50:42 -040053 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
Andrew Geisslerc9f78652020-09-18 14:11:35 -050065FILES_${PN} += "${systemd_system_unitdir} ${nonarch_base_libdir}/systemd"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050066
67TARGET_CC_ARCH += "${LDFLAGS}"