blob: f1f8e53face67be4b1b4d41fbc5b0a7db12b5d4a (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gkrellmpc/gkrellmpc-0.1_beta9.ebuild,v 1.9 2009/07/16 19:31:43 ssuominen Exp $
EAPI=2
inherit gkrellm-plugin toolchain-funcs
DESCRIPTION="A gkrellm plugin to control the MPD (Music Player Daemon)"
HOMEPAGE="http://mpd.wikicities.com/wiki/Client:GKrellMPC"
SRC_URI="http://www.topfx.com/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE=""
RDEPEND=">=app-admin/gkrellm-2
net-misc/curl"
DEPEND="${RDEPEND}"
src_compile() {
tc-export CC
emake || die "emake failed"
}
|