Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/purple-plugin_pack/
Date: Tue, 06 Jun 2017 13:21:28
Message-Id: 1496755277.a6ecf4874ab2c74f0f1ff55fbe1ee4be4a98f4f3.pacho@gentoo
1 commit: a6ecf4874ab2c74f0f1ff55fbe1ee4be4a98f4f3
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 6 13:20:53 2017 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 6 13:21:17 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6ecf487
7
8 x11-plugins/purple-plugin_pack: Disable xmmsremote compilation (#605218)
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 .../purple-plugin_pack-2.7.0-r1.ebuild | 27 +++++++++++-----------
13 1 file changed, 13 insertions(+), 14 deletions(-)
14
15 diff --git a/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.7.0-r1.ebuild b/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.7.0-r1.ebuild
16 index bd02ae76e2e..98d37fe3622 100644
17 --- a/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.7.0-r1.ebuild
18 +++ b/x11-plugins/purple-plugin_pack/purple-plugin_pack-2.7.0-r1.ebuild
19 @@ -1,10 +1,10 @@
20 -# Copyright 1999-2014 Gentoo Foundation
21 +# Copyright 1999-2017 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=5
25 -
26 +EAPI=6
27 PYTHON_COMPAT=( python2_7 )
28 -inherit eutils python-any-r1
29 +
30 +inherit python-any-r1
31
32 MY_PN=${PN/_/-}
33 MY_P=${MY_PN}-${PV}
34 @@ -17,16 +17,20 @@ SLOT="0"
35 KEYWORDS="amd64 hppa ppc x86"
36 IUSE="debug gtk ncurses spell talkfilters"
37
38 -RDEPEND="dev-libs/json-glib
39 +RDEPEND="
40 + dev-libs/json-glib
41 net-im/pidgin[gtk?,ncurses?]
42 talkfilters? ( app-text/talkfilters )
43 - spell? ( app-text/gtkspell:2 )"
44 + spell? ( app-text/gtkspell:2 )
45 +"
46 DEPEND="${RDEPEND}
47 - ${PYTHON_DEPS}"
48 + ${PYTHON_DEPS}
49 +"
50
51 -S=${WORKDIR}/${MY_P}
52 +S="${WORKDIR}/${MY_P}"
53
54 src_prepare() {
55 + default
56 sed -e '/CFLAGS=/{s| -g3||}' -i configure || die
57 }
58
59 @@ -45,7 +49,7 @@ src_configure() {
60
61 eval DISABLED_PLUGINS="\$${PN//[^a-z]/_}_DISABLED_PLUGINS"
62 # disable known broken plugins
63 - DISABLED_PLUGINS+=" schedule findip"
64 + DISABLED_PLUGINS+=" schedule findip xmmsremote"
65 use gtk || DISABLED_PLUGINS+=" $(list_plugins_dep pidgin)"
66 use ncurses || DISABLED_PLUGINS+=" $(list_plugins_dep finch)"
67 use spell || DISABLED_PLUGINS+=" $(list_plugins_dep gtkspell)"
68 @@ -62,11 +66,6 @@ src_configure() {
69 $(use_enable debug)
70 }
71
72 -src_install() {
73 - emake DESTDIR="${D}" install
74 - dodoc AUTHORS ChangeLog NEWS README VERSION
75 -}
76 -
77 pkg_preinst() {
78 elog "Note: if you want to disable some plugins in pack, define"
79 elog "${PN//[^a-z]/_}_DISABLED_PLUGINS with a list of plugins to"