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/dev-qt/qtmultimedia/qtmultimedia-5.4.1.ebuild

64 lines
1.5 KiB

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtmultimedia/qtmultimedia-5.4.1.ebuild,v 1.3 2015/05/16 10:38:55 jer Exp $
EAPI=5
inherit qt5-build
DESCRIPTION="The Multimedia module for the Qt5 framework"
if [[ ${QT5_BUILD_TYPE} == live ]]; then
KEYWORDS="~ppc64"
else
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
fi
IUSE="alsa +gstreamer openal +opengl pulseaudio qml widgets"
# "widgets? ( qtgui[opengl=] )" because of bug 518542 comment 2
RDEPEND="
>=dev-qt/qtcore-${PV}:5[debug=]
>=dev-qt/qtgui-${PV}:5[debug=]
>=dev-qt/qtnetwork-${PV}:5[debug=]
alsa? ( media-libs/alsa-lib )
gstreamer? (
media-libs/gstreamer:0.10
media-libs/gst-plugins-bad:0.10
media-libs/gst-plugins-base:0.10
)
pulseaudio? ( media-sound/pulseaudio )
qml? (
>=dev-qt/qtdeclarative-${PV}:5[debug=]
openal? ( media-libs/openal )
)
widgets? (
>=dev-qt/qtgui-${PV}:5[debug=,opengl=]
>=dev-qt/qtwidgets-${PV}:5[debug=,opengl=]
opengl? ( >=dev-qt/qtopengl-${PV}:5[debug=] )
)
"
DEPEND="${RDEPEND}
x11-proto/videoproto
"
src_prepare() {
qt_use_compile_test alsa
qt_use_compile_test gstreamer
qt_use_compile_test openal
qt_use_compile_test pulseaudio
qt_use_disable_mod opengl opengl \
src/multimediawidgets/multimediawidgets.pro
qt_use_disable_mod qml quick \
src/src.pro
qt_use_disable_mod widgets widgets \
src/src.pro \
src/gsttools/gsttools.pro \
src/plugins/gstreamer/common.pri
qt5-build_src_prepare
}