blob: 95a004febaf487fb84083b5cfb5a6d18e219605b (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/cantata/cantata-0.8.3.1.ebuild,v 1.3 2013/03/02 21:53:52 hwoarang Exp $
EAPI=5
KDE_REQUIRED="optional"
inherit kde4-base
DESCRIPTION="A featureful and configurable Qt4 client for the music player daemon (MPD)"
HOMEPAGE="http://kde-apps.org/content/show.php?content=147733"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="kde mtp phonon replaygain webkit"
REQUIRED_USE="mtp? ( kde )"
DEPEND="
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
kde? (
media-libs/taglib[asf,mp4]
media-libs/taglib-extras
mtp? ( media-libs/libmtp )
)
phonon? ( || ( media-libs/phonon dev-qt/qtphonon:4 ) )
replaygain? (
media-libs/speex
media-libs/taglib[asf,mp4]
media-libs/taglib-extras
media-sound/mpg123
virtual/ffmpeg
)
webkit? ( dev-qt/qtwebkit:4 )
"
RDEPEND="${DEPEND}
$(add_kdebase_dep oxygen-icons)
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_enable kde)
$(cmake-utils_use_enable phonon)
$(cmake-utils_use_enable replaygain FFMPEG)
$(cmake-utils_use_enable replaygain MPG123)
$(cmake-utils_use_enable replaygain SPEEXDSP)
$(cmake-utils_use_enable mtp)
)
# kde fails to build without taglib
# taglib is required to enable replaygain
if use kde || use replaygain; then
mycmakeargs+=(
-DENABLE_TAGLIB=ON
-DENABLE_TAGLIB_EXTRAS=ON
)
fi
kde4-base_src_configure
}
|