commit: f7207c3f9c1dd44bf53bb8b4e27737aed1b754a8 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Mon Mar 2 12:51:39 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Mon Mar 2 12:54:11 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7207c3f
xfce-extra/xfce4-docklike-plugin: Bump to 0.5.1 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> xfce-extra/xfce4-docklike-plugin/Manifest | 1 + .../xfce4-docklike-plugin-0.5.1.ebuild | 62 ++++++++++++++++++++++ 2 files changed, 63 insertions(+) diff --git a/xfce-extra/xfce4-docklike-plugin/Manifest b/xfce-extra/xfce4-docklike-plugin/Manifest index 909eba3a677f..4cd07f163a49 100644 --- a/xfce-extra/xfce4-docklike-plugin/Manifest +++ b/xfce-extra/xfce4-docklike-plugin/Manifest @@ -1 +1,2 @@ DIST xfce4-docklike-plugin-0.5.0.tar.xz 78724 BLAKE2B 09886ca936030f2fe9b46b5eb7ad3fc2695bf6b79817a71b448846e876854887cdfcec71268465ea65b9975e2a246a9c24152a7b671c9810ac636fc877798fd5 SHA512 3027a2d1420423911c11466aad26edbfc11c11c6b5bfc6f9dc27f4db5fb19730bc9488d212ad87590179e73a921e6c7884c60bf8b0de4fa52ef61b239178995d +DIST xfce4-docklike-plugin-0.5.1.tar.xz 80056 BLAKE2B e1ab03524adbf28a1d0b929b66857e17c0f929703670d1c2681843b86e2223ef8c58ff3dd5bad370ad4be40101089626a0e4aa3a5b8282534d2653427e2ecc8f SHA512 51a711f71797789dec09bfb3aefc09c0d5379da5a6badd43633b0ae6dcd5aee205fd4e4a64cade308385cddb2d9ab8abee78d3b92f1f9c7021a322dd361ce701 diff --git a/xfce-extra/xfce4-docklike-plugin/xfce4-docklike-plugin-0.5.1.ebuild b/xfce-extra/xfce4-docklike-plugin/xfce4-docklike-plugin-0.5.1.ebuild new file mode 100644 index 000000000000..114d0cc5985e --- /dev/null +++ b/xfce-extra/xfce4-docklike-plugin/xfce4-docklike-plugin-0.5.1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson xdg-utils + +DESCRIPTION="A modern, minimalist docklike taskbar for Xfce" +HOMEPAGE=" + https://docs.xfce.org/panel-plugins/xfce4-docklike-plugin/start + https://gitlab.xfce.org/panel-plugins/xfce4-docklike-plugin/ +" +SRC_URI=" + https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.xz +" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="X wayland" +REQUIRED_USE="|| ( X wayland )" + +DEPEND=" + >=dev-libs/glib-2.58.0 + >=x11-libs/gtk+-3.24.0:3[X?,wayland?] + >=x11-libs/cairo-1.16.0 + >=xfce-base/libxfce4ui-4.16.0:= + >=xfce-base/libxfce4util-4.16.0:= + >=xfce-base/xfce4-panel-4.16.0:= + >=xfce-base/libxfce4windowing-4.19.4:=[X?] + X? ( + >=x11-libs/libX11-1.6.7 + >=x11-libs/libXi-1.2.0 + ) + wayland? ( + >=gui-libs/gtk-layer-shell-0.7.0 + ) +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + $(meson_feature X x11) + $(meson_feature wayland) + ) + + meson_src_configure +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +}
