You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/qt-gstreamer/qt-gstreamer-0.10.2.ebuild

49 lines
1.1 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/qt-gstreamer/qt-gstreamer-0.10.2.ebuild,v 1.5 2012/11/11 22:30:40 pesa Exp $
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="test"
RDEPEND="
dev-libs/glib
>=dev-libs/boost-1.40
>=media-libs/gstreamer-0.10.33:0.10
>=media-libs/gst-plugins-base-0.10.33:0.10
>=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
"
DEPEND="
${RDEPEND}
test? ( >=x11-libs/qt-test-${QT_MINIMAL}:4 )
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use test QTGSTREAMER_TESTS)
)
cmake-utils_src_configure
}