Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "System performance tools" |
| 2 | DESCRIPTION = "The sysstat utilities are a collection of performance monitoring tools for Linux." |
| 3 | HOMEPAGE = "http://sebastien.godard.pagesperso-orange.fr/" |
| 4 | LICENSE = "GPLv2+" |
| 5 | SECTION = "console/utils" |
| 6 | |
| 7 | SRC_URI = "http://pagesperso-orange.fr/sebastien.godard/sysstat-${PV}.tar.xz \ |
| 8 | file://99_sysstat \ |
| 9 | file://sysstat.service \ |
| 10 | " |
| 11 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 12 | UPSTREAM_CHECK_URI = "http://sebastien.godard.pagesperso-orange.fr/download.html" |
| 13 | UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)\.tar" |
| 14 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 15 | DEPENDS += "base-passwd" |
| 16 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 17 | # autotools-brokensep as this package doesn't use automake |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 18 | inherit autotools-brokensep gettext systemd |
| 19 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 20 | PACKAGECONFIG ??= "" |
| 21 | PACKAGECONFIG[lm-sensors] = "--enable-sensors,--disable-sensors,lmsensors,lmsensors-libsensors" |
| 22 | |
| 23 | EXTRA_OECONF += "--disable-stripping" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 24 | |
| 25 | SYSTEMD_PACKAGES = "${PN}" |
| 26 | SYSTEMD_SERVICE_${PN} = "sysstat.service" |
| 27 | SYSTEMD_AUTO_ENABLE = "enable" |
| 28 | |
| 29 | do_configure_prepend() { |
| 30 | export sa_lib_dir=${libdir}/sa |
| 31 | } |
| 32 | |
| 33 | do_install() { |
| 34 | autotools_do_install |
| 35 | |
| 36 | # don't install /var/log/sa when populating rootfs. Do it through volatile |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 37 | rm -rf ${D}/var |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 38 | 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 Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 47 | |
| 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 | |
| 53 | pkg_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 | |
| 62 | |
| 63 | FILES_${PN} += "${libdir}/sa" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 64 | |
| 65 | TARGET_CC_ARCH += "${LDFLAGS}" |