commit: 761075c0d4e2368a2952224e66ef3717b31faf63 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Feb 2 17:52:35 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sun Feb 2 18:25:16 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=761075c0
xfce-base/libxfce4windowing: Bump to 4.20.1 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> xfce-base/libxfce4windowing/Manifest | 1 + .../libxfce4windowing-4.20.1.ebuild | 60 ++++++++++++++++++++++ 2 files changed, 61 insertions(+) diff --git a/xfce-base/libxfce4windowing/Manifest b/xfce-base/libxfce4windowing/Manifest index ee9b29baf20b..0b92e6e2bcef 100644 --- a/xfce-base/libxfce4windowing/Manifest +++ b/xfce-base/libxfce4windowing/Manifest @@ -1,2 +1,3 @@ DIST libxfce4windowing-4.19.3.tar.bz2 535825 BLAKE2B cb97589e213e4d07f05c6665399459f2f453a9519483606c5a5e3bd901bebbc361ae044f22596bca86c7aa8e0b23b585b7a41f0170d458d597f07b0a03e08edd SHA512 848b7aeeebdd630c27bac242b5a59d25409b2e8f22d2d8dc95fbfe45357e4f3374e36c151792ddc061b4dcf5d1fdf31f47e76c75b7167b244ae198b0a3b4bca0 DIST libxfce4windowing-4.20.0.tar.bz2 596847 BLAKE2B 3907afe802db3523416828208cdce7d1948807fc710f52cef7827b769e971546f180588db46c2e8606993607ab37183185052ab47e8c59729e744fbcafa2e8fb SHA512 4db76eacd25200a50619839eb7b0f7fbfc901b8641b40acfc2aa34b88b449212e13b8946a8f5fd43ab89f021ba5bab67384e616163efb06b11603faf6913ba90 +DIST libxfce4windowing-4.20.1.tar.bz2 597306 BLAKE2B b0e5e6d4d78812b9c71ea601df7ab3e47e5917f1a1565d65e3e516aa8b970009e4ad63a6cd02b5f9e80cee6c9e94278d59476a18c4111ead0664a084d2561280 SHA512 ba9252fa29425aea8d7064a2abca924396b150f2a3f80056567828a2ef937757c3a74ea33c0a0fe75c17f71aa40da20a5f77a9c9b55bbde662d8a0b437b7ef7b diff --git a/xfce-base/libxfce4windowing/libxfce4windowing-4.20.1.ebuild b/xfce-base/libxfce4windowing/libxfce4windowing-4.20.1.ebuild new file mode 100644 index 000000000000..236ac6a37e4e --- /dev/null +++ b/xfce-base/libxfce4windowing/libxfce4windowing-4.20.1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Unified widget and session management libs for Xfce" +HOMEPAGE="https://gitlab.xfce.org/xfce/libxfce4windowing/" +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="LGPL-2.1+" +SLOT="0/4.19.6" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="+introspection wayland X" +REQUIRED_USE="|| ( wayland X )" + +RDEPEND=" + >=dev-libs/glib-2.72.0 + >=x11-libs/gtk+-3.24.10:3[X?,introspection?,wayland?] + >=x11-libs/gdk-pixbuf-2.42.8[introspection?] + wayland? ( + >=dev-libs/wayland-1.20 + ) + X? ( + >=media-libs/libdisplay-info-0.1.1 + >=x11-libs/libX11-1.6.7 + >=x11-libs/libXrandr-1.5.0 + >=x11-libs/libwnck-3.14:3 + ) +" +DEPEND=" + ${RDEPEND} + wayland? ( + >=dev-libs/wayland-protocols-1.39 + ) +" +BDEPEND=" + >=dev-build/xfce4-dev-tools-4.19.2 + dev-lang/perl + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + wayland? ( + >=dev-util/wayland-scanner-1.15 + ) +" + +src_configure() { + local myconf=( + $(use_enable introspection) + $(use_enable wayland) + $(use_enable X x11) + # these are not used by make check + --disable-tests + ) + econf "${myconf[@]}" +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}