blob: 620ed1b3a96fea239abca89238e960e5c82545d1 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/clementine/clementine-0.6-r2.ebuild,v 1.2 2011/02/10 23:59:10 hwoarang Exp $
EAPI=3
LANGS=" ar be bg br ca cs cy da de el en_CA en_GB eo es et eu fi fr gl he hi hu it ja kk lt nb nl oc pl pt_BR pt ro ru sk sl sr sv tr uk zh_CN zh_TW"
inherit cmake-utils gnome2-utils
DESCRIPTION="A modern music player and library organizer based on Amarok 1.4 and Qt4"
HOMEPAGE="http://www.clementine-player.org/ http://code.google.com/p/clementine-player/"
SRC_URI="http://clementine-player.googlecode.com/files/${P}.tar.gz
http://www.gentoo.org/~ssuominen/${P}-patchset-1.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="ayatana +dbus iphone ipod +lastfm mtp projectm +udev wiimote"
IUSE+="${LANGS// / linguas_}"
COMMON_DEPEND="
>=x11-libs/qt-gui-4.5:4[dbus?]
>=x11-libs/qt-opengl-4.5:4
>=x11-libs/qt-sql-4.5:4[sqlite]
dev-db/sqlite[fts3]
>=media-libs/taglib-1.6
>=dev-libs/glib-2.24.1-r1:2
dev-libs/libxml2
>=media-libs/gstreamer-0.10
>=media-libs/gst-plugins-base-0.10
ayatana? ( dev-libs/libindicate-qt )
ipod? (
>=media-libs/libgpod-0.7.92
iphone? (
app-pda/libplist
>=app-pda/libimobiledevice-1.0
app-pda/usbmuxd
)
)
lastfm? ( media-libs/liblastfm )
mtp? ( >=media-libs/libmtp-1.0.0 )
projectm? ( media-libs/glew )
"
# now only presets are used, libprojectm is internal
# http://code.google.com/p/clementine-player/source/browse/#svn/trunk/3rdparty/libprojectm/patches
# r1966 "Compile with a static sqlite by default, since Qt 4.7 doesn't seem to expose the symbols we need to use FTS"
RDEPEND="${COMMON_DEPEND}
dbus? ( udev? ( sys-fs/udisks ) )
mtp? ( gnome-base/gvfs )
projectm? ( >=media-libs/libprojectm-1.2.0 )
>=media-plugins/gst-plugins-meta-0.10
>=media-plugins/gst-plugins-gio-0.10
>=media-plugins/gst-plugins-soup-0.10
"
DEPEND="${COMMON_DEPEND}
>=dev-libs/boost-1.39
dev-util/pkgconfig
sys-devel/gettext
x11-libs/qt-test:4
"
DOCS="Changelog TODO"
MAKEOPTS="${MAKEOPTS} -j1"
PATCHES=(
"${WORKDIR}"/${P}-optional-liblastfm.patch
"${WORKDIR}"/${P}-optional-dbus-devicekit.patch
"${FILESDIR}"/${P}-fix-dbus.patch
)
src_configure() {
# linguas
local langs x
for x in ${LANGS}; do
use linguas_${x} && langs+=" ${x}"
done
# Upstream supports only gstreamer engine, other engines are unstable and lacking features.
mycmakeargs=(
-DLINGUAS="${langs}"
-DBUNDLE_PROJECTM_PRESETS=OFF
$(cmake-utils_use dbus ENABLE_DBUS)
$(cmake-utils_use udev ENABLE_DEVICEKIT)
$(cmake-utils_use ipod ENABLE_LIBGPOD)
$(cmake-utils_use iphone ENABLE_IMOBILEDEVICE)
$(cmake-utils_use lastfm ENABLE_LIBLASTFM)
$(cmake-utils_use mtp ENABLE_LIBMTP)
-DENABLE_GIO=ON
$(cmake-utils_use wiimote ENABLE_WIIMOTEDEV)
$(cmake-utils_use projectm ENABLE_VISUALISATIONS)
$(cmake-utils_use ayatana ENABLE_SOUNDMENU)
-DSTATIC_SQLITE=OFF
-DENGINE_GSTREAMER_ENABLED=ON
-DENGINE_QT_PHONON_ENABLED=OFF
-DENGINE_LIBVLC_ENABLED=OFF
-DENGINE_LIBXINE_ENABLED=OFF
)
cmake-utils_src_configure
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}
|