diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-12-01 17:24:20 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-12-01 17:25:20 +0100 |
commit | 2e897d1b8cfef7456462561b945699333aee3e65 (patch) | |
tree | 9db85328f88ad359cac4e96e8f6976d2059218b9 /xfce-base | |
parent | xfce-base/libxfce4util: Remove old (diff) | |
download | gentoo-2e897d1b8cfef7456462561b945699333aee3e65.tar.gz gentoo-2e897d1b8cfef7456462561b945699333aee3e65.tar.bz2 gentoo-2e897d1b8cfef7456462561b945699333aee3e65.zip |
xfce-base/libxfce4util: Bump to 4.19.5
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-base')
-rw-r--r-- | xfce-base/libxfce4util/Manifest | 1 | ||||
-rw-r--r-- | xfce-base/libxfce4util/libxfce4util-4.19.5.ebuild | 46 |
2 files changed, 47 insertions, 0 deletions
diff --git a/xfce-base/libxfce4util/Manifest b/xfce-base/libxfce4util/Manifest index d995eede26bd..9a311fa118b9 100644 --- a/xfce-base/libxfce4util/Manifest +++ b/xfce-base/libxfce4util/Manifest @@ -1,2 +1,3 @@ DIST libxfce4util-4.18.2.tar.bz2 514157 BLAKE2B 4c0479d3df308956cecb321783823c3d1f07622260a19b2e7c633a5de6d87a779f1196c10cc5078b01bfabc7ca0cac9a819084414f2dcfbaef3d6d9a69ef3df8 SHA512 94c7371bcfd4ea8dca68a2dc2fe029ce8b232b2b906247bb45a830f13a27833e80831bb6df029d634e6cd8496d4cdcbb9691b6c4344aa51292477f2ebf56bac0 DIST libxfce4util-4.19.4.tar.bz2 614009 BLAKE2B 5f836fac969df8ec6f711230861624cd62c16c130c94c9908ccc922d57b0762a5ee3d6e70341c96646e89af4d6bc8bc18416f0f95cc59156f2c64aac0b991295 SHA512 742da219a4e0813ff3211ce4ad2f1e4484cc53ee7451bcad8ce18cb958b19fb0612015d673d45cf75466f204e9c47c2f6caa8ca6148999840e127cc268f61d91 +DIST libxfce4util-4.19.5.tar.bz2 616129 BLAKE2B e25e05ee310aa292cfccb872cf50bff61a44c899cd563cc371c89963d7c9b23c1b2bddd16d8e1a033200ed6d3547d8f8905cf0dc827db980c1f59cf193de05be SHA512 37005da61ebe68e6ea289d43423964b72d66fc671afd044d2ef311e4e872cb1a5b72cc1b021decc5af4a21f46eee70f2e56c8988c89836aea7f5ce8b36a92e7e diff --git a/xfce-base/libxfce4util/libxfce4util-4.19.5.ebuild b/xfce-base/libxfce4util/libxfce4util-4.19.5.ebuild new file mode 100644 index 000000000000..dd1032f6c7d4 --- /dev/null +++ b/xfce-base/libxfce4util/libxfce4util-4.19.5.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit vala + +DESCRIPTION="A basic utility library for the Xfce desktop environment" +HOMEPAGE=" + https://docs.xfce.org/xfce/libxfce4util/start + https://gitlab.xfce.org/xfce/libxfce4util/ +" +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="LGPL-2+ GPL-2+" +SLOT="0/7" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris" +IUSE="+introspection vala" +REQUIRED_USE="vala? ( introspection )" + +DEPEND=" + >=dev-libs/glib-2.72.0 + introspection? ( >=dev-libs/gobject-introspection-1.72.0:= ) +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + vala? ( $(vala_depend) )" + +src_configure() { + local myconf=( + $(use_enable introspection) + $(use_enable vala) + ) + + use vala && vala_setup + econf "${myconf[@]}" +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |