blob: a309150dbc98fa23fffef10bd4feabe88a5eb02d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit gkrellm-plugin toolchain-funcs
DESCRIPTION="A gkrellm plugin to control the MPD (Music Player Daemon)"
HOMEPAGE="http://mpd.wikia.com/wiki/Client:GKrellMPC"
SRC_URI="http://mina.naguib.ca/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="threads"
RDEPEND="
app-admin/gkrellm:2[X]
net-misc/curl"
DEPEND="${RDEPEND}"
# Will open gkrellm in X11 display
RESTRICT="test"
src_prepare() {
use threads && eapply "${FILESDIR}"/${P}-mt.patch
eapply_user
sed -i -e 's:gkrellm2 -p:gkrellm -p:' Makefile || die
}
src_configure() {
tc-export CC
}
pkg_postinst() {
if use threads; then
elog "If you can't connect MPD, please unset USE threads."
elog "See, https://bugs.gentoo.org/276970 for information."
fi
}
|