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/exo/
Date: Sat, 16 Nov 2019 00:19:39
Message-Id: 1573862283.4ebed096fbf817c6cf6dac2446dbcec9d1b7a3d4.mgorny@gentoo
1 commit: 4ebed096fbf817c6cf6dac2446dbcec9d1b7a3d4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 15 23:58:03 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 15 23:58:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ebed096
7
8 xfce-base/exo: Bump to 0.12.9
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-base/exo/Manifest | 1 +
13 xfce-base/exo/exo-0.12.9.ebuild | 48 +++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/xfce-base/exo/Manifest b/xfce-base/exo/Manifest
17 index 60786eb3dfb..07ce1f73e70 100644
18 --- a/xfce-base/exo/Manifest
19 +++ b/xfce-base/exo/Manifest
20 @@ -1,2 +1,3 @@
21 DIST exo-0.12.4.tar.bz2 1235738 BLAKE2B f05ae13bb5ec599686207df3fe7458b8a42227194c91c24397ed282d2c7a6ccf10989f14c662f2e0d986c59695de2b8d50743c8489bc716aaa001cbd23fe3598 SHA512 8f84258aeb5c1fcfe91e775af1e5fed02f36b3d18aa72d497cd05294d54f050d679628cdb4339219c67b203a8cc663704a240fc18e6a918cef363cf4d9b94783
22 DIST exo-0.12.8.tar.bz2 1342201 BLAKE2B 6f52072f169a48ace6490d4c272e7e1208ca66efc388c8706b183d8ebe908d2fc305ae0239647e96e860eaacb1fbc440fc8dd559757f29088548c95702b1401e SHA512 5b96f1e3ba7112d349ee7d986288996c52210304d0aa54594fdc8c85ec0b12e13791f320f28e91bd25afda5f1046f402ba4fcf2eca5df5d8fc0c3515cd6b98a3
23 +DIST exo-0.12.9.tar.bz2 1333477 BLAKE2B 18b6892b32ff65350b9e64be8190a5d6ca3637c97ba1449e7e511c1efaf081a308c9a0796d845d0069186f85dc775f9196703a1f0a97c16de7bbae6aa94a47d8 SHA512 ae0e893c595553ff9db15967419ffd9d78ec6ab6dbcefcc02536367e04cc4db51d41305f0f527778ba9b8b04cb51bd560bff07ef5ba3a56d1acab1d1730e7ee7
24
25 diff --git a/xfce-base/exo/exo-0.12.9.ebuild b/xfce-base/exo/exo-0.12.9.ebuild
26 new file mode 100644
27 index 00000000000..77319c3c1ac
28 --- /dev/null
29 +++ b/xfce-base/exo/exo-0.12.9.ebuild
30 @@ -0,0 +1,48 @@
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 xdg-utils
37 +
38 +DESCRIPTION="Extensions, widgets and framework library with session support for Xfce"
39 +HOMEPAGE="https://www.xfce.org/projects/"
40 +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
41 +
42 +LICENSE="GPL-2+ LGPL-2.1+"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
45 +IUSE="gtk2"
46 +
47 +RDEPEND=">=dev-lang/perl-5.6
48 + >=dev-libs/glib-2.42
49 + dev-perl/URI
50 + >=x11-libs/gtk+-3.22:3
51 + >=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
52 + >=xfce-base/libxfce4util-4.12:=
53 + gtk2? ( >=x11-libs/gtk+-2.24:2 )"
54 +DEPEND="${RDEPEND}
55 + dev-util/gtk-doc-am
56 + dev-util/intltool
57 + sys-devel/gettext
58 + virtual/pkgconfig"
59 +
60 +src_configure() {
61 + local myconf=(
62 + $(use_enable gtk2)
63 + )
64 + econf "${myconf[@]}"
65 +}
66 +
67 +src_install() {
68 + default
69 + find "${D}" -name '*.la' -delete || die
70 +}
71 +
72 +pkg_postinst() {
73 + xdg_icon_cache_update
74 +}
75 +
76 +pkg_postrm() {
77 + xdg_icon_cache_update
78 +}