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: Mon, 01 Jul 2019 07:56:23
Message-Id: 1561967765.f10a92415387bb905a3ece5c76cebbe230133873.mgorny@gentoo
1 commit: f10a92415387bb905a3ece5c76cebbe230133873
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 1 07:06:07 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 1 07:56:05 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f10a9241
7
8 xfce-base/libxfce4util: Bump to 4.13.4
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.13.4.ebuild | 46 +++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/xfce-base/libxfce4util/Manifest b/xfce-base/libxfce4util/Manifest
17 index d4a15de786b..05c907d8dfa 100644
18 --- a/xfce-base/libxfce4util/Manifest
19 +++ b/xfce-base/libxfce4util/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libxfce4util-4.13.2.tar.bz2 509280 BLAKE2B 40f1fb95abff4857e976dd5f3ae8c8ad5e66e2c1c49723735e85124db71d30f204525cd74baf22e31bf405718f378b0c9ac37ec4189e1f4b9941d0eb6fc141ce SHA512 3bbb718f3a6d2213c86695b3f99d1e67c859ce635e5d066b18745d2ee57c0b2eea468b61079d8e2514c2d8f5fa847539d236ec0ed3fd17fecd9d1b36dc3595c4
22 DIST libxfce4util-4.13.3.tar.bz2 511277 BLAKE2B 0815808166bc488cfa3636a18c9486fd1b3a81376766a77eef80ee24274bb290b9bece5e7786f7e412154f201bef251ce90d350c9e69db79bb893fd9081d2dac SHA512 e06bf58d46c5c3c6964a17ca8d998bd8e78bb61577ddcd855680878a890912a167212a2b4e3b347f41f84d2983e71fd1d76716db9c4a88a1d4f45a0f5aaf5e51
23 +DIST libxfce4util-4.13.4.tar.bz2 501426 BLAKE2B 623978a933902cc939e4cd537e9efe1e8d6b5028103f66682d76636c17e16bfd5fc56631622a00a1e4cbba6ba45495ec8d8dd05335d1a073a9c811c13732ef88 SHA512 7d474839acbc2b4f75cb39e39053214bac43b5da9f7605aec8e78bfc1ab1a07864429a47f18faae9be8dfecbb7f5a055bd2eb20c0b9d1b4912755b81cac1ada2
24
25 diff --git a/xfce-base/libxfce4util/libxfce4util-4.13.4.ebuild b/xfce-base/libxfce4util/libxfce4util-4.13.4.ebuild
26 new file mode 100644
27 index 00000000000..41820462bc5
28 --- /dev/null
29 +++ b/xfce-base/libxfce4util/libxfce4util-4.13.4.ebuild
30 @@ -0,0 +1,46 @@
31 +# Copyright 1999-2019 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 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~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 + vala? ( $(vala_depend) )"
51 +DEPEND="${RDEPEND}
52 + dev-util/intltool
53 + dev-util/gtk-doc-am
54 + sys-devel/gettext
55 + virtual/pkgconfig"
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 +}