Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-base/libxfce4util/
Date: Fri, 28 Aug 2020 05:55:24
Message-Id: 1598593559.d879067ccf1e83c4d7fcf1d6747bc1aeda82376f.mgorny@gentoo
1 commit: d879067ccf1e83c4d7fcf1d6747bc1aeda82376f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 28 05:45:59 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 28 05:45:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d879067c
7
8 xfce-base/libxfce4util: Bump to 4.15.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-base/libxfce4util/Manifest | 1 +
13 xfce-base/libxfce4util/libxfce4util-4.15.3.ebuild | 46 +++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/xfce-base/libxfce4util/Manifest b/xfce-base/libxfce4util/Manifest
17 index f412f4ad4e4..93745c6de55 100644
18 --- a/xfce-base/libxfce4util/Manifest
19 +++ b/xfce-base/libxfce4util/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libxfce4util-4.14.0.tar.bz2 516358 BLAKE2B d8e3d1e3247e23908456aa296415240c1a9146001a02cb859541922ee541e30955279fd68f2d9938e43f992a5115b21836363fa8d8234de87fca0bbaac830bf0 SHA512 6ac95aea03052d9e2f886cbe76afe9bbb43511bf3fe1766097e10cd8762541ed17060a727df3ef93e226aae448c15d9dd3ad8acd55a9d5f2387cb360bdf72832
22 DIST libxfce4util-4.15.2.tar.bz2 520639 BLAKE2B ff08a4608bcf6ac854961c1753c531680bff5ba62e7103ffb1cab9c6132db9f07e1dfcf86e24dd7d492e42e6316931f1979567d304339678d3f7826e4e3f875d SHA512 1d244cee684229eacb9effc64f214899c1b449dbadabc422900a25a8870c98365c800d80edf9c252877c4d66d94394127195d3cbe4472493658e0f547c153812
23 +DIST libxfce4util-4.15.3.tar.bz2 521420 BLAKE2B a6d0d5e56c32c3e6950af26da12ad54d94e2cd9d7e172167e43a5c4d262709b2972e1a29e9fb348ac12d8e72568330449fc279a701dd9fe9e98a788cffd33b23 SHA512 1754cc5f4582151a1eb381606d32b0744193982177165e2b227655790849f9799a53739f1c36ed31b1a77cab28526d22e3cb6dab401e4a3b8ff29f1d2ea885ba
24
25 diff --git a/xfce-base/libxfce4util/libxfce4util-4.15.3.ebuild b/xfce-base/libxfce4util/libxfce4util-4.15.3.ebuild
26 new file mode 100644
27 index 00000000000..dd5b8e34dae
28 --- /dev/null
29 +++ b/xfce-base/libxfce4util/libxfce4util-4.15.3.ebuild
30 @@ -0,0 +1,46 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit vala
37 +
38 +DESCRIPTION="A basic utility library for the Xfce desktop environment"
39 +HOMEPAGE="https://git.xfce.org/xfce/libxfce4util/"
40 +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
41 +
42 +LICENSE="LGPL-2+ GPL-2+"
43 +SLOT="0/7"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
45 +IUSE="introspection vala"
46 +REQUIRED_USE="vala? ( introspection )"
47 +
48 +RDEPEND=">=dev-libs/glib-2.42
49 + introspection? ( dev-libs/gobject-introspection:= )"
50 +DEPEND="${RDEPEND}
51 + dev-util/intltool
52 + dev-util/gtk-doc-am
53 + sys-devel/gettext
54 + virtual/pkgconfig
55 + vala? ( $(vala_depend) )"
56 +
57 +src_prepare() {
58 + # stupid vala.eclass...
59 + default
60 +}
61 +
62 +src_configure() {
63 + local myconf=(
64 + $(use_enable introspection)
65 + $(use_enable vala)
66 + )
67 +
68 + use vala && vala_src_prepare
69 + econf "${myconf[@]}"
70 +}
71 +
72 +src_install() {
73 + default
74 +
75 + find "${D}" -name '*.la' -delete || die
76 +}