blob: 76e1bb23cb16b7aa48b8ddaa296a4b580cd8820b (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/phonon/phonon-4.3.1.ebuild,v 1.12 2009/12/11 14:56:50 armin76 Exp $
EAPI="2"
inherit cmake-utils
KDE_VERSION="4.2.1"
DESCRIPTION="KDE multimedia API"
HOMEPAGE="http://phonon.kde.org"
SRC_URI="mirror://kde/stable/${KDE_VERSION}/src/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="debug gstreamer +xcb +xine"
RDEPEND="
!kde-base/phonon-xine
!x11-libs/qt-phonon:4
>=x11-libs/qt-test-4.4.0:4
>=x11-libs/qt-dbus-4.4.0:4
>=x11-libs/qt-gui-4.4.0:4
>=x11-libs/qt-opengl-4.4.0:4
gstreamer? (
media-libs/gstreamer
media-libs/gst-plugins-base
)
xine? (
>=media-libs/xine-lib-1.1.15-r1[xcb?]
xcb? ( x11-libs/libxcb )
)
"
DEPEND="${RDEPEND}
>=kde-base/automoc-0.9.87
"
PATCHES=( "$FILESDIR/fix_nonascii_chars.patch" )
pkg_setup() {
if use !xine && use !gstreamer; then
die "you must at least select one backend for phonon"
fi
}
src_configure() {
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_with gstreamer GStreamer)
$(cmake-utils_use_with gstreamer GStreamerPlugins)
$(cmake-utils_use_with xine Xine)"
if use xine; then
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_with xcb XCB)"
else
sed -i -e '/xine/d' \
"${S}/CMakeLists.txt" || die "sed failed"
fi
cmake-utils_src_configure
}
|