commit: 7e81257882845be46e2afe541464a9b73fe45634 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue May 20 13:33:12 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue May 20 13:33:59 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e812578
xfce-extra/xfce4-systemload-plugin: Bump to 1.4.0 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> xfce-extra/xfce4-systemload-plugin/Manifest | 1 + .../xfce4-systemload-plugin-1.4.0.ebuild | 55 ++++++++++++++++++++++ 2 files changed, 56 insertions(+) diff --git a/xfce-extra/xfce4-systemload-plugin/Manifest b/xfce-extra/xfce4-systemload-plugin/Manifest index 2a4949cee3ab..1447a29b0636 100644 --- a/xfce-extra/xfce4-systemload-plugin/Manifest +++ b/xfce-extra/xfce4-systemload-plugin/Manifest @@ -1 +1,2 @@ DIST xfce4-systemload-plugin-1.3.3.tar.bz2 519937 BLAKE2B ec9398341b04fa40876c613ea76fd2cef26b0505bc7409d1f0d5e8965c743e708b3dc0fa82d60d8f5b1a1af499f4414eda56b1414b25d3550a5d508a4609b43d SHA512 5dd74af41df01af1cf064effd33e13f26f530ffe0a043cce7b6519187393099a4da7e8c8e035c50796d1d19f09e38d2d75966e1e4fa5d1db8cb44d0e020a802c +DIST xfce4-systemload-plugin-1.4.0.tar.xz 60984 BLAKE2B 90a52972622d1d41f99c5c92b31d3e72246719d186866592f9c48c8411f9b3d83b11b753f53856cf2493029873ce8fbddec765462f2ba601a2e79b63169ee3c4 SHA512 ebb444eb91f032eb64f5b38e14d1a6e9e23ac0c38f41705d389e48878540663556435d26997de88a3116351bd72db8b02718cdd525961f8e35c62a3980438e68 diff --git a/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.4.0.ebuild b/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.4.0.ebuild new file mode 100644 index 000000000000..a65ce194e07c --- /dev/null +++ b/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.4.0.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson xdg-utils + +DESCRIPTION="System load plug-in for Xfce panel" +HOMEPAGE=" + https://docs.xfce.org/panel-plugins/xfce4-systemload-plugin/start + https://gitlab.xfce.org/panel-plugins/xfce4-systemload-plugin/ +" +SRC_URI=" + https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.xz +" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="upower" + +DEPEND=" + >=dev-libs/glib-2.50.0 + >=x11-libs/gtk+-3.22.0:3 + >=xfce-base/libxfce4ui-4.16.0:=[gtk3(+)] + >=xfce-base/libxfce4util-4.17.2:= + >=xfce-base/xfce4-panel-4.16.0:= + >=xfce-base/xfconf-4.16.0:= + upower? ( >=sys-power/upower-0.99.0 ) +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + # gtop is needed only as fallback when /proc is not available + -Dlibgtop=disabled + $(meson_feature upower upower-glib) + ) + + meson_src_configure +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +}
