blob: c21d944d3fbd9a45cb7cdf175e7724cdad1882af (
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-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit bash-completion-r1 meson
DESCRIPTION="A commandline client for Music Player Daemon (media-sound/mpd)"
HOMEPAGE="https://www.musicpd.org"
SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="iconv test"
RDEPEND="media-libs/libmpdclient
iconv? ( virtual/libiconv )"
DEPEND="${RDEPEND}
dev-python/sphinx
virtual/pkgconfig
test? ( dev-libs/check )"
src_configure() {
local emesonargs=(
-Dtest=$(usex iconv true false)
-Diconv=$(usex test true false)
)
meson_src_configure
}
src_install() {
meson_src_install
newbashcomp contrib/mpc-completion.bash mpc
}
|