commit: 53f7772860239b50194d2e5e3d2a12d15284a5af Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue May 20 15:07:09 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue May 20 15:17:07 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53f77728
xfce-extra/xfce4-xkb-plugin: Bump to 0.9.0 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> xfce-extra/xfce4-xkb-plugin/Manifest | 1 + .../xfce4-xkb-plugin/xfce4-xkb-plugin-0.9.0.ebuild | 60 ++++++++++++++++++++++ 2 files changed, 61 insertions(+) diff --git a/xfce-extra/xfce4-xkb-plugin/Manifest b/xfce-extra/xfce4-xkb-plugin/Manifest index c7797ac3add8..2883dd13b580 100644 --- a/xfce-extra/xfce4-xkb-plugin/Manifest +++ b/xfce-extra/xfce4-xkb-plugin/Manifest @@ -1 +1,2 @@ DIST xfce4-xkb-plugin-0.8.5.tar.bz2 1002610 BLAKE2B 3ec20024c665ae545c4e6b427fd3da505ce1ccc96cf79bedc32318e3ad8facdfaeb3cd745be18f77557705a3d83c12b970ea3d8310e9768aee2383743062d786 SHA512 fa995ff9bb65d0b84f9099fa8d375a8ab070cb4b4a33adffd77bcfb9acef6057ffaa444088a3ed6af4c03967a63adb564638a7583082a3fcfa0cc33bc99fd3bb +DIST xfce4-xkb-plugin-0.9.0.tar.xz 303472 BLAKE2B 3dd3000ebec78d0c444f8ccabdbfb8fddf28db492394ea24f042de2fcd213529f4149d3bb7e47aac6e2191b42e155308e60e9084a9ca178a4a42aff3e227cff2 SHA512 60176643ec29c0fc035f6f5bc22e04b103acdea6868b222784e7189219d6fd90d75ab27f3c494822777ec4749a34d31bac199f688f75431202001738471aeb49 diff --git a/xfce-extra/xfce4-xkb-plugin/xfce4-xkb-plugin-0.9.0.ebuild b/xfce-extra/xfce4-xkb-plugin/xfce4-xkb-plugin-0.9.0.ebuild new file mode 100644 index 000000000000..23387282fe59 --- /dev/null +++ b/xfce-extra/xfce4-xkb-plugin/xfce4-xkb-plugin-0.9.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson xdg-utils + +DESCRIPTION="XKB layout switching panel plug-in for the Xfce desktop environment" +HOMEPAGE=" + https://docs.xfce.org/panel-plugins/xfce4-xkb-plugin + https://gitlab.xfce.org/panel-plugins/xfce4-xkb-plugin/ +" +SRC_URI=" + https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.xz +" + +LICENSE="BSD-2 GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="libnotify" + +DEPEND=" + >=dev-libs/glib-2.50.0 + >=gnome-base/librsvg-2.40 + >=x11-libs/gtk+-3.22.0:3 + >=x11-libs/libwnck-3.14:3 + >=x11-libs/libX11-1.6.7 + >=x11-libs/libxklavier-5.3 + >=xfce-base/garcon-4.16.0:= + >=xfce-base/libxfce4ui-4.16.0:= + >=xfce-base/libxfce4util-4.16.0:= + >=xfce-base/xfce4-panel-4.16.0:= + >=xfce-base/xfconf-4.16.0:= + libnotify? ( >=x11-libs/libnotify-0.7.0 ) +" +RDEPEND=" + ${DEPEND} + x11-apps/setxkbmap + >=xfce-base/xfce4-settings-4.11 +" +BDEPEND=" + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + $(meson_feature libnotify) + ) + + meson_src_configure +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +}
