blob: 7f1c3d302cb96d7cc307f23a63e8f7dc48ed8d44 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
QT_MINIMAL="4.7.0"
if [[ ${PV} != *9999* ]]; then
SRC_URI="http://gstreamer.freedesktop.org/src/${PN}/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
else
GIT_ECLASS="git-2"
EGIT_REPO_URI="git://anongit.freedesktop.org/gstreamer/${PN}"
KEYWORDS=""
fi
inherit cmake-utils ${GIT_ECLASS}
DESCRIPTION="QtGStreamer provides C++ bindings for GStreamer with a Qt-style API."
HOMEPAGE="http://gstreamer.freedesktop.org/wiki/QtGStreamer"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE=""
DEPEND="
dev-libs/glib
>=dev-util/boost-build-1.40
>=media-libs/gstreamer-0.10.33
>=media-libs/gst-plugins-base-0.10.33
>=x11-libs/qt-core-${QT_MINIMAL}:4
>=x11-libs/qt-declarative-${QT_MINIMAL}:4
>=x11-libs/qt-gui-${QT_MINIMAL}:4
>=x11-libs/qt-opengl-${QT_MINIMAL}:4
"
RDEPEND="${DEPEND}"
|