blob: 75d900ec38d1c2a608622e6b91f7d223f42f23ce (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon-gstreamer/phonon-gstreamer-9999.ebuild,v 1.6 2011/07/17 08:46:31 dilfridge Exp $
EAPI=4
[[ ${PV} == *9999 ]] && git_eclass="git-2"
EGIT_REPO_URI="git://anongit.kde.org/${PN}"
MY_PN="phonon-backend-gstreamer"
MY_P=${MY_PN}-${PV}
inherit cmake-utils ${git_eclass}
DESCRIPTION="Phonon GStreamer backend"
HOMEPAGE="https://projects.kde.org/projects/kdesupport/phonon/phonon-gstreamer"
[[ ${PV} == *9999 ]] || SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/src/${MY_P}.tar.bz2"
LICENSE="LGPL-2.1"
if [[ ${PV} == *9999 ]]; then
KEYWORDS=""
else
KEYWORDS="~amd64 ~x86"
fi
SLOT="0"
IUSE="alsa debug"
RDEPEND="
media-libs/gstreamer
media-plugins/gst-plugins-meta[alsa?,ogg,vorbis]
>=media-libs/phonon-4.5.0
>=x11-libs/qt-core-4.6.0:4[glib]
>=x11-libs/qt-gui-4.6.0:4[glib]
>=x11-libs/qt-opengl-4.6.0:4
virtual/opengl
"
DEPEND="${RDEPEND}
>=dev-util/automoc-0.9.87
dev-util/pkgconfig
"
S="${WORKDIR}/${MY_P}"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with alsa)
)
cmake-utils_src_configure
}
|