You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
848 B
46 lines
848 B
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
inherit eutils qmake-utils
|
|
|
|
MY_P=${PN}_${PV}
|
|
|
|
DESCRIPTION="A Qt5 client for the music player daemon (MPD) written in C++"
|
|
HOMEPAGE="http://mpd.wikia.com/wiki/Client:Quimup"
|
|
SRC_URI="mirror://sourceforge/${PN}/${MY_P}_src.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-qt/qtcore:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtnetwork:5
|
|
dev-qt/qtwidgets:5
|
|
>=media-libs/libmpdclient-2.3
|
|
media-libs/taglib"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
S="${WORKDIR}/${PN} ${PV}"
|
|
|
|
DOCS=( changelog FAQ.txt README )
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-qdatastream.patch
|
|
}
|
|
|
|
src_configure() {
|
|
eqmake5
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
dobin ${PN}
|
|
|
|
newicon src/resources/mn_icon.png ${PN}.png
|
|
make_desktop_entry ${PN} Quimup
|
|
}
|