mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-04 16:10:10 +00:00
* Both dependencies upower/libgtop are optional so add PACKAGECONFIG and enable both because they are worth it. * The term '(uses libgtop as a fallback)' below is a bit misleading: In xfce4-systemload-plugin-1.3.1/panel-plugin/network.c we find whole code wrapped by #ifdef HAVE_LIBGTOP / #endif. So in case libgtop is not found nothing of value is compiled. 1.3.1 (2021-03-22) ===== - Update README.md - Update and sort the list of authors - Add a simple network bandwidth monitor (uses libgtop as a fallback) - Remove 4-valued history - Fix initial progress bar value - Fix system-monitor-command setting (Fixes #15) - Distinguish uptime from the appearance of a digital real-time clock - Replace "Options" with "Label" in the properties dialog - Finish porting to xfconf - Update docs URL - Code cleanups - Translation Updates Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
13 lines
518 B
BlitzBasic
13 lines
518 B
BlitzBasic
DESCRIPTION = "Panel plugin displaying current CPU load, the memory in use, the swap space and the system uptime"
|
|
HOMEPAGE = "https://goodies.xfce.org/projects/panel-plugins/xfce4-systemload-plugin"
|
|
LICENSE = "BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=9acb172a93ff6c43cce2aff790a8aef8"
|
|
|
|
inherit xfce-panel-plugin
|
|
|
|
PACKAGECONFIG ?= "network power"
|
|
PACKAGECONFIG[power] = ",,upower"
|
|
PACKAGECONFIG[network] = ",,libgtop"
|
|
|
|
SRC_URI[sha256sum] = "56d1007801d52d7c2b5a13bb54745f6d7f06fda28b49ce936145633068817652"
|