diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-10-23 06:46:38 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-10-23 08:16:08 +0200 |
commit | 1551af62fa9093ba8756fcefe6fb367fc6f67c64 (patch) | |
tree | 239e9b0b408f28f562c550229088c8814664f194 /xfce-base | |
parent | xfce-base/libxfce4windowing: Remove old (diff) | |
download | gentoo-1551af62fa9093ba8756fcefe6fb367fc6f67c64.tar.gz gentoo-1551af62fa9093ba8756fcefe6fb367fc6f67c64.tar.bz2 gentoo-1551af62fa9093ba8756fcefe6fb367fc6f67c64.zip |
xfce-base/libxfce4windowing: Bump to 4.19.8
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-base')
-rw-r--r-- | xfce-base/libxfce4windowing/Manifest | 1 | ||||
-rw-r--r-- | xfce-base/libxfce4windowing/libxfce4windowing-4.19.8.ebuild | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/xfce-base/libxfce4windowing/Manifest b/xfce-base/libxfce4windowing/Manifest index 0b8be8c8df19..4bf9687b9f2f 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.19.7.tar.bz2 575191 BLAKE2B 798a5d4cd30998523a6c2a21aef523a1cfd7bb0a6df70a26ba16424df9cd5a6fdefea34d298dbf92b72eec8b52f9fa86f8e84df5c7fc3f7d0de2f52c00d79fcc SHA512 e925622e582669a93b7d0599504f343df2a677a38c68b16024e0600974a3abb93bc2234c6aec480edc8b7f616c07c8c04904518163e783d5b8afd475c4657cb9 +DIST libxfce4windowing-4.19.8.tar.bz2 575693 BLAKE2B 2f68688a27290f11c51638e277fa9ee3a5940bade052ee812dd29992a7d329282a08e1211c91a4026d969dfa0290a22b32e68b00781657afbcffd84b98db8fb1 SHA512 584e80e62897c26002601389196c36a8f0de9d63acec747c573afc5315f8821d38d21c9ca242ae311d172c726c3cb335211786c60c1563c6e262d95596aad845 diff --git a/xfce-base/libxfce4windowing/libxfce4windowing-4.19.8.ebuild b/xfce-base/libxfce4windowing/libxfce4windowing-4.19.8.ebuild new file mode 100644 index 000000000000..6ed3c754abc8 --- /dev/null +++ b/xfce-base/libxfce4windowing/libxfce4windowing-4.19.8.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2024 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 ~loong ~ppc64 ~riscv ~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.25 + ) +" +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 +} |