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: Thu, 02 May 2019 17:07:27
Message-Id: 1556816831.6e9e7e8ff66149e1070ae67736b936ad39ca0478.mgorny@gentoo
1 commit: 6e9e7e8ff66149e1070ae67736b936ad39ca0478
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 2 16:56:00 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 2 17:07:11 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e9e7e8f
7
8 xfce-base/exo: Disable GTK+2 support in -r100
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-base/exo/exo-0.12.5-r100.ebuild | 47 ++++++++++++++++++++++++++++++++++++
13 1 file changed, 47 insertions(+)
14
15 diff --git a/xfce-base/exo/exo-0.12.5-r100.ebuild b/xfce-base/exo/exo-0.12.5-r100.ebuild
16 new file mode 100644
17 index 00000000000..5ce9384936a
18 --- /dev/null
19 +++ b/xfce-base/exo/exo-0.12.5-r100.ebuild
20 @@ -0,0 +1,47 @@
21 +# Copyright 1999-2019 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +inherit xdg-utils
27 +
28 +DESCRIPTION="Extensions, widgets and framework library with session support for Xfce"
29 +HOMEPAGE="https://www.xfce.org/projects/"
30 +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
31 +
32 +LICENSE="GPL-2+ LGPL-2.1+"
33 +SLOT="0"
34 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
35 +IUSE=""
36 +
37 +RDEPEND=">=dev-lang/perl-5.6
38 + >=dev-libs/glib-2.42:=
39 + dev-perl/URI
40 + >=x11-libs/gtk+-3.22:3=
41 + >=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
42 + >=xfce-base/libxfce4util-4.12:="
43 +DEPEND="${RDEPEND}
44 + dev-util/gtk-doc-am
45 + dev-util/intltool
46 + sys-devel/gettext
47 + virtual/pkgconfig"
48 +
49 +src_configure() {
50 + local myconf=(
51 + --disable-gtk2
52 + )
53 + econf "${myconf[@]}"
54 +}
55 +
56 +src_install() {
57 + default
58 + find "${D}" -name '*.la' -delete || die
59 +}
60 +
61 +pkg_postinst() {
62 + xdg_icon_cache_update
63 +}
64 +
65 +pkg_postrm() {
66 + xdg_icon_cache_update
67 +}