blob: 852dfeb851ef4fe599dc979eb50f86b781fd3ee3 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
DESCRIPTION="PidgiMPD is a Pidgin plugin for monitoring/controlling MPD."
HOMEPAGE="http://ayeon.org/projects/pidgimpd/"
SRC_URI="http://ayeon.org/projects/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="net-im/pidgin[gtk]
media-libs/libmpd"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_install () {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS README TODO || die "dodoc failed"
}
|