diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-05-07 13:44:32 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-05-07 14:12:34 +0200 |
commit | 554f29b179b2b90e9268700105acf999e5660c66 (patch) | |
tree | ce85d9c46ec7082fd8ac9a789a408876885eabff /xfce-base/libxfce4util | |
parent | dev-java/mockito: Stabilize 2.28.2 amd64, #905857 (diff) | |
download | gentoo-554f29b179b2b90e9268700105acf999e5660c66.tar.gz gentoo-554f29b179b2b90e9268700105acf999e5660c66.tar.bz2 gentoo-554f29b179b2b90e9268700105acf999e5660c66.zip |
xfce-base/libxfce4util: Bump to 4.19.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-base/libxfce4util')
-rw-r--r-- | xfce-base/libxfce4util/Manifest | 1 | ||||
-rw-r--r-- | xfce-base/libxfce4util/libxfce4util-4.19.1.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/xfce-base/libxfce4util/Manifest b/xfce-base/libxfce4util/Manifest index 1286181861e4..74f8d7c257bd 100644 --- a/xfce-base/libxfce4util/Manifest +++ b/xfce-base/libxfce4util/Manifest @@ -1,2 +1,3 @@ DIST libxfce4util-4.18.1.tar.bz2 527167 BLAKE2B b5d16b4e6ce541a7de559eb2801cf800dab26c45e83b0c562974f18218fd9ad0d70e40219b573a90f1ea1b9e15a8111cfae6200f581335f305a7e7f6eb07adc9 SHA512 e1459e2268948c8329394bdca56f7e7bef7739b56559c00ce6d70dfbedd038cd73a4873be34b91dbd94a80afc16e2b0e1cc256d3ff4d8fdeef9162fbdb3772cd DIST libxfce4util-4.19.0.tar.bz2 586319 BLAKE2B 4660944e00774cb3749ab6fd851e8242a493e234b120e741718fb8492cb9628f7e04f2fdc83b5671691535abaa33e6a407e1c43df7aa9f7a5d4aec49cdbe56d9 SHA512 03e242089059ed75ec38a78446f9200f1e4efe048ea57b425aa5e40bc2ff43e9936a889e204b8ee651895ae23568598b059284df3df8da0400ad13d8beb30d27 +DIST libxfce4util-4.19.1.tar.bz2 619752 BLAKE2B 858a095cb194aa8d5029390be3a466c34188096f31198d754f3af7bfe0d12037c922a7cf9a67891f3981a0e202733fd4e49677682bf1c5fbbbfc077c26b9a5a2 SHA512 26d6912f8dc627340d8416f4258c00fb3b1ab6586a32c32bf79b061373252f41b4068bb1da271539459124ecd05c1ed69775693ef432dda23e4b9e4a8e6decdb diff --git a/xfce-base/libxfce4util/libxfce4util-4.19.1.ebuild b/xfce-base/libxfce4util/libxfce4util-4.19.1.ebuild new file mode 100644 index 000000000000..2f1336f79eda --- /dev/null +++ b/xfce-base/libxfce4util/libxfce4util-4.19.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2023 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 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" +IUSE="+introspection vala" +REQUIRED_USE="vala? ( introspection )" + +DEPEND=" + >=dev-libs/glib-2.66.0 + introspection? ( >=dev-libs/gobject-introspection-1.66:= ) +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + dev-util/gtk-doc-am + >=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 +} |