Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-mailwatch/
Date: Thu, 04 Jan 2018 09:17:23
Message-Id: 1515057387.3d301bde909e554be39f3086156a2042adc7378c.soap@gentoo
1 commit: 3d301bde909e554be39f3086156a2042adc7378c
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 3 22:34:34 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 4 09:16:27 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d301bde
7
8 x11-plugins/gkrellm-mailwatch: Eclass update
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 .../gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild | 17 +++++++++--------
13 1 file changed, 9 insertions(+), 8 deletions(-)
14
15 diff --git a/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild b/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
16 index d46420e8824..2fb046fa145 100644
17 --- a/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
18 +++ b/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
19 @@ -1,23 +1,23 @@
20 -# Copyright 1999-2017 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=6
25 +
26 inherit gkrellm-plugin toolchain-funcs
27
28 DESCRIPTION="A GKrellM2 plugin that shows the status of additional mail boxes"
29 SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz"
30 HOMEPAGE="http://gkrellm.luon.net/mailwatch.php"
31
32 -SLOT="2"
33 LICENSE="GPL-2"
34 +SLOT="2"
35 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
36 IUSE=""
37
38 -PLUGIN_SO=mailwatch.so
39 -S="${WORKDIR}/${PN}"
40 -
41 -RDEPEND="app-admin/gkrellm[X]"
42 +RDEPEND="app-admin/gkrellm:2[X]"
43 +DEPEND="${RDEPEND}"
44
45 +S=${WORKDIR}/${PN}
46 PATCHES=(
47 "${FILESDIR}"/2.4.3-0001-Respect-LDFLAGS.patch
48 "${FILESDIR}"/2.4.3-0002-Use-gkrellm_gkd_string_width.patch
49 @@ -25,7 +25,8 @@ PATCHES=(
50 "${FILESDIR}"/2.4.3-0004-Do-not-force-O2-in-CFLAGS.patch
51 )
52
53 -src_compile() {
54 +PLUGIN_SO=( mailwatch$(get_modname) )
55 +
56 +src_configure() {
57 tc-export CC
58 - default_src_compile
59 }