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/libxfce4ui/
Date: Tue, 03 Nov 2020 08:24:16
Message-Id: 1604391843.0525b18ce40eaea201c15b74b4e32132829c0620.mgorny@gentoo
1 commit: 0525b18ce40eaea201c15b74b4e32132829c0620
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 3 07:59:36 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 3 08:24:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0525b18c
7
8 xfce-base/libxfce4ui: Bump to 4.15.4
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-base/libxfce4ui/Manifest | 1 +
13 xfce-base/libxfce4ui/libxfce4ui-4.15.4.ebuild | 67 +++++++++++++++++++++++++++
14 2 files changed, 68 insertions(+)
15
16 diff --git a/xfce-base/libxfce4ui/Manifest b/xfce-base/libxfce4ui/Manifest
17 index 87bc4557dfb..72b78680494 100644
18 --- a/xfce-base/libxfce4ui/Manifest
19 +++ b/xfce-base/libxfce4ui/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libxfce4ui-4.14.1.tar.bz2 756175 BLAKE2B d487cc0a04b6053ead6670eeb83cafe1c4098818d5ad6a94a81176720d78cfd65160156961cbb526baa1640ae66a5c6958f707b7078c412d81fcd24cc8cf4013 SHA512 f42f41da3a683a0c56c3b1e7ba420c4f50909d2613e681d053b09b50bc0eb7f750f44c892e94b0ee8b9207983a87c0cadbda1ad93d0df74ae351dc8812025407
22 DIST libxfce4ui-4.15.3.tar.bz2 756530 BLAKE2B ca2a9d5aae80d22a97b2fe932248756c9f34f71a13342670cdc0ad1c5393eb62d4f5bed8b21a45a60c762a83ebf1458deb7ef629c4dd3c894468ecf16a821dcf SHA512 a0e5a60c54df811fa2815238f9fe506700f6df8a6baa8172a6f8c68f005b54ba94ee31aba87d635fb506700da9c77e25f8c57268018fc8cfa5577f29aab58a6b
23 +DIST libxfce4ui-4.15.4.tar.bz2 825895 BLAKE2B 46687dea72d17a3693c31f69bd4d1961397bf00d9395935778c8c5b90e6e56585fa2e64fe4be817ad44994841218d7cce98ade033914c56ea82a04ae7e1b70e7 SHA512 af2545f6d72df1a13d926a52b5124c52f34fbee0b2db6664292f74bcc3d93cb42263eab57beb9f882be42b6530649b2c7e42d496817f1b34b7d2b67b29e6deb1
24
25 diff --git a/xfce-base/libxfce4ui/libxfce4ui-4.15.4.ebuild b/xfce-base/libxfce4ui/libxfce4ui-4.15.4.ebuild
26 new file mode 100644
27 index 00000000000..cddd13c8d5e
28 --- /dev/null
29 +++ b/xfce-base/libxfce4ui/libxfce4ui-4.15.4.ebuild
30 @@ -0,0 +1,67 @@
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 xdg-utils vala
37 +
38 +DESCRIPTION="Unified widget and session management libs for Xfce"
39 +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
40 +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
41 +
42 +LICENSE="LGPL-2+ GPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
45 +IUSE="debug glade introspection libgtop startup-notification vala"
46 +REQUIRED_USE="vala? ( introspection )"
47 +
48 +RDEPEND=">=dev-libs/glib-2.42:2
49 + >=x11-libs/gtk+-3.22:3[introspection?]
50 + x11-libs/libX11
51 + x11-libs/libICE
52 + x11-libs/libSM
53 + >=xfce-base/libxfce4util-4.12:=[introspection?]
54 + >=xfce-base/xfconf-4.12:=
55 + glade? ( dev-util/glade:3.10 )
56 + introspection? ( dev-libs/gobject-introspection:= )
57 + libgtop? ( gnome-base/libgtop )
58 + startup-notification? ( x11-libs/startup-notification )"
59 +DEPEND="${RDEPEND}"
60 +BDEPEND="dev-lang/perl
61 + dev-util/intltool
62 + sys-devel/gettext
63 + virtual/pkgconfig
64 + vala? ( $(vala_depend) )"
65 +
66 +src_prepare() {
67 + # stupid vala.eclass...
68 + default
69 +}
70 +
71 +src_configure() {
72 + local myconf=(
73 + $(use_enable introspection)
74 + $(use_enable libgtop glibtop)
75 + $(use_enable startup-notification)
76 + $(use_enable vala)
77 + $(use_enable glade gladeui2)
78 + --with-vendor-info=Gentoo
79 + )
80 +
81 + use vala && vala_src_prepare
82 + econf "${myconf[@]}"
83 +}
84 +
85 +src_install() {
86 + default
87 +
88 + find "${D}" -name '*.la' -delete || die
89 +}
90 +
91 +pkg_postinst() {
92 + xdg_icon_cache_update
93 +}
94 +
95 +pkg_postrm() {
96 + xdg_icon_cache_update
97 +}