diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-05-11 17:52:36 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-05-11 17:53:09 +0200 |
commit | 77ef220bbb9ad5d338f441cafd74fa42d28fe843 (patch) | |
tree | d842199e066931e26a842c543d6cc38034405df7 | |
parent | sys-cluster/glusterfs: remove unused files (diff) | |
download | gentoo-77ef220bbb9ad5d338f441cafd74fa42d28fe843.tar.gz gentoo-77ef220bbb9ad5d338f441cafd74fa42d28fe843.tar.bz2 gentoo-77ef220bbb9ad5d338f441cafd74fa42d28fe843.zip |
xfce-base/libxfce4util: Bump to 4.19.2
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | xfce-base/libxfce4util/Manifest | 1 | ||||
-rw-r--r-- | xfce-base/libxfce4util/libxfce4util-4.19.2.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/xfce-base/libxfce4util/Manifest b/xfce-base/libxfce4util/Manifest index 74f8d7c257bd..b49169b5bdbb 100644 --- a/xfce-base/libxfce4util/Manifest +++ b/xfce-base/libxfce4util/Manifest @@ -1,3 +1,4 @@ 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 +DIST libxfce4util-4.19.2.tar.bz2 622588 BLAKE2B addee65233ce7f6a335b9c072066ea1a4d357e4dce62ecb75cce56aa3d7c27916c141d1124951821f1d4234813a54e51ed933829937adcf0f6c906a4fb65e907 SHA512 85521be421abb3f3c37d7608eae96cb9b2f7ba5b0ac599d2a7501b3b201603fd36ccb13840bd5a3462771e32d81e5814a008baf22df46df7b3b46e4ac8d7e3eb diff --git a/xfce-base/libxfce4util/libxfce4util-4.19.2.ebuild b/xfce-base/libxfce4util/libxfce4util-4.19.2.ebuild new file mode 100644 index 000000000000..2f1336f79eda --- /dev/null +++ b/xfce-base/libxfce4util/libxfce4util-4.19.2.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 +} |