commit: 0eedd06d564a4e390dc53ca1fa3da8de98c95db9
Author: Jaco Kroon <jkroon <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 8 21:27:26 2026 +0000
Commit: Jaco Kroon <jkroon <AT> gentoo <DOT> org>
CommitDate: Sun Feb 8 21:57:47 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eedd06d
x11-misc/stalonetray: add 1.0.1
Dropped x86 and riscv - build system changed from autotools to meson.
Signed-off-by: Jaco Kroon <jkroon <AT> gentoo.org>
x11-misc/stalonetray/Manifest | 1 +
x11-misc/stalonetray/metadata.xml | 2 +-
x11-misc/stalonetray/stalonetray-1.0.1.ebuild | 35 +++++++++++++++++++++++++++
3 files changed, 37 insertions(+), 1 deletion(-)
diff --git a/x11-misc/stalonetray/Manifest b/x11-misc/stalonetray/Manifest
index caf9b94e3a01..66d3c5fad548 100644
--- a/x11-misc/stalonetray/Manifest
+++ b/x11-misc/stalonetray/Manifest
@@ -1 +1,2 @@
DIST stalonetray-0.8.5.tar.gz 102899 BLAKE2B
abf70916cb762041c5eaaa3faaa3e96a89f0aa31bd72f285209bb29cc5138f2517d1fa00fda1c39da5ca12028b2e78a813fd15d62dfe7c6d312da52559eb3a2d
SHA512
7fe1c2fcc5de06b89f4a5c182baeb0a98f0328ae6bf03a79e76c4af7ee4d86cd8f6967ec8b0123a831998cb075ef2b2f6bc6478bde0b73883fe37d2bd6a471d3
+DIST stalonetray-1.0.1.tar.xz 82624 BLAKE2B
8bd906e56da50239898db266e2fe8da55263a4ca3e0fd911b00caece8a1945200bad96e5b2a517f36e4246e66c5bb7a1b089446ab462e5455cf70318011b9d96
SHA512
95742cf870dca3da9273d9fc59fd57181f2e2c3412055d6a2838e622cba7062acc30dd64c4f08da44a8931f1e48625de8717ab8be1e859c3385b304cba16cb9a
diff --git a/x11-misc/stalonetray/metadata.xml
b/x11-misc/stalonetray/metadata.xml
index cdcc71c908d6..245fb67c54f3 100644
--- a/x11-misc/stalonetray/metadata.xml
+++ b/x11-misc/stalonetray/metadata.xml
@@ -9,6 +9,6 @@
<flag name="graceful-exit">use non-portable hack to exit
gracefully on signal</flag>
</use>
<upstream>
- <remote-id type="github">kolbusa/stalonetray</remote-id>
+ <remote-id type="github">d3adb5/stalonetray</remote-id>
</upstream>
</pkgmetadata>
diff --git a/x11-misc/stalonetray/stalonetray-1.0.1.ebuild
b/x11-misc/stalonetray/stalonetray-1.0.1.ebuild
new file mode 100644
index 000000000000..c3809f2f3fd9
--- /dev/null
+++ b/x11-misc/stalonetray/stalonetray-1.0.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="System tray utility including support for KDE system tray icons"
+HOMEPAGE="https://d3adb5.github.io/stalonetray/index.html"
+SRC_URI="https://github.com/d3adb5/${PN}/releases/download/${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="debug +graceful-exit kde xinerama +xpm"
+
+RDEPEND="x11-libs/libX11
+ xinerama? ( x11-libs/libXinerama )
+ xpm? ( x11-libs/libXpm )"
+DEPEND="${RDEPEND}
+ x11-base/xorg-proto"
+BDEPEND="app-text/docbook-xml-dtd
+ dev-libs/libxslt"
+
+DOCS=( AUTHORS README.md stalonetrayrc.sample )
+
+src_configure() {
+ meson_src_configure \
+ $(meson_use debug dump_window_information) \
+ $(meson_use debug trace_events) \
+ $(meson_use graceful-exit exit_gracefully) \
+ $(meson_feature kde native_kde) \
+ $(meson_feature xinerama) \
+ $(meson_feature xpm)
+}