blob: fc0433c7c556cb1b4ef93e284a3cdf099a0be059 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils flag-o-matic
MY_P=${P/-/_}
DESCRIPTION="A client for MPD with a clean, GTK interface"
HOMEPAGE="http://coonsden.com"
SRC_URI="mirror://sourceforge/musicpd/${MY_P}_src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-cpp/gtkmm-3.2.0:3.0
dev-libs/libunique:3
>=media-libs/libmpdclient-2.3
>=net-libs/libsoup-2.36
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
src_prepare() {
append-cxxflags -std=c++11
}
src_install() {
default
rm -r "${ED}"/usr/doc/ || die
make_desktop_entry guimup Guimup
}
|