Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/gkrellmpc/
Date: Sun, 08 May 2022 06:23:21
Message-Id: 1651990991.1b194723444d6c65a10130d37c03e6581d9efac0.fordfrog@gentoo
1 commit: 1b194723444d6c65a10130d37c03e6581d9efac0
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 8 06:23:11 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sun May 8 06:23:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b194723
7
8 media-plugins/gkrellmpc: dropped obsolete 0.1_beta10
9
10 Bug: https://bugs.gentoo.org/843086
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 .../gkrellmpc/gkrellmpc-0.1_beta10.ebuild | 41 ----------------------
14 1 file changed, 41 deletions(-)
15
16 diff --git a/media-plugins/gkrellmpc/gkrellmpc-0.1_beta10.ebuild b/media-plugins/gkrellmpc/gkrellmpc-0.1_beta10.ebuild
17 deleted file mode 100644
18 index a309150dbc98..000000000000
19 --- a/media-plugins/gkrellmpc/gkrellmpc-0.1_beta10.ebuild
20 +++ /dev/null
21 @@ -1,41 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit gkrellm-plugin toolchain-funcs
28 -
29 -DESCRIPTION="A gkrellm plugin to control the MPD (Music Player Daemon)"
30 -HOMEPAGE="http://mpd.wikia.com/wiki/Client:GKrellMPC"
31 -SRC_URI="http://mina.naguib.ca/dist/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 x86"
36 -IUSE="threads"
37 -
38 -RDEPEND="
39 - app-admin/gkrellm:2[X]
40 - net-misc/curl"
41 -DEPEND="${RDEPEND}"
42 -
43 -# Will open gkrellm in X11 display
44 -RESTRICT="test"
45 -
46 -src_prepare() {
47 - use threads && eapply "${FILESDIR}"/${P}-mt.patch
48 - eapply_user
49 -
50 - sed -i -e 's:gkrellm2 -p:gkrellm -p:' Makefile || die
51 -}
52 -
53 -src_configure() {
54 - tc-export CC
55 -}
56 -
57 -pkg_postinst() {
58 - if use threads; then
59 - elog "If you can't connect MPD, please unset USE threads."
60 - elog "See, https://bugs.gentoo.org/276970 for information."
61 - fi
62 -}