Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-window_merge/
Date: Sat, 17 Jul 2021 10:55:28
Message-Id: 1626519322.3c99ca3ba8d955afefadccb4be23affce8e6642f.slyfox@gentoo
1 commit: 3c99ca3ba8d955afefadccb4be23affce8e6642f
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 17 10:51:19 2021 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 17 10:55:22 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c99ca3b
7
8 x11-plugins/pidgin-window_merge: bump up to EAPI=8
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 .../pidgin-window_merge-0.3-r1.ebuild | 32 ++++++++++++++++++++++
14 1 file changed, 32 insertions(+)
15
16 diff --git a/x11-plugins/pidgin-window_merge/pidgin-window_merge-0.3-r1.ebuild b/x11-plugins/pidgin-window_merge/pidgin-window_merge-0.3-r1.ebuild
17 new file mode 100644
18 index 00000000000..5fbc5481155
19 --- /dev/null
20 +++ b/x11-plugins/pidgin-window_merge/pidgin-window_merge-0.3-r1.ebuild
21 @@ -0,0 +1,32 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +DESCRIPTION="A Pidgin plugin that merges the Buddy List window with a conversation window"
28 +HOMEPAGE="https://github.com/dm0-/window_merge"
29 +SRC_URI="https://github.com/downloads/dm0-/${PN#pidgin-}/${P#pidgin-}.tar.gz"
30 +
31 +LICENSE="GPL-3"
32 +SLOT="0"
33 +KEYWORDS="~amd64"
34 +IUSE=""
35 +
36 +RDEPEND="dev-libs/glib:2=
37 + net-im/pidgin:0=[gtk]"
38 +DEPEND="${RDEPEND}
39 + virtual/pkgconfig"
40 +
41 +S=${WORKDIR}/${P#pidgin-}
42 +
43 +src_install() {
44 + default
45 +
46 + find "${ED}" -name '*.la' -delete || die
47 +}
48 +
49 +pkg_postinst() {
50 + ewarn "This plugin and infopane plugin (purple-plugin_pack) activated"
51 + ewarn "at the same time cause a segfault in pidgin"
52 + ewarn "see https://github.com/dm0-/window_merge/issues/4"
53 +}