diff options
author | Davide Pesavento <pesa@gentoo.org> | 2012-05-22 15:22:37 +0000 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2012-05-22 15:22:37 +0000 |
commit | 64af7e3e48b9ba5f7896ff792d884e08fab25d0c (patch) | |
tree | 6cc5a97d98685d0218966695884eb21a2be92911 /x11-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-64af7e3e48b9ba5f7896ff792d884e08fab25d0c.tar.gz gentoo-2-64af7e3e48b9ba5f7896ff792d884e08fab25d0c.tar.bz2 gentoo-2-64af7e3e48b9ba5f7896ff792d884e08fab25d0c.zip |
Version bump.
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/qt-multimedia/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/qt-multimedia/qt-multimedia-4.8.2.ebuild | 60 |
2 files changed, 66 insertions, 1 deletions
diff --git a/x11-libs/qt-multimedia/ChangeLog b/x11-libs/qt-multimedia/ChangeLog index 6108d4116e77..9b186688be2e 100644 --- a/x11-libs/qt-multimedia/ChangeLog +++ b/x11-libs/qt-multimedia/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/qt-multimedia # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-multimedia/ChangeLog,v 1.56 2012/05/20 13:14:29 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-multimedia/ChangeLog,v 1.57 2012/05/22 15:22:37 pesa Exp $ + +*qt-multimedia-4.8.2 (22 May 2012) + + 22 May 2012; Davide Pesavento <pesa@gentoo.org> +qt-multimedia-4.8.2.ebuild: + Version bump. 20 May 2012; Agostino Sarubbo <ago@gentoo.org> qt-multimedia-4.8.1.ebuild: Stable for x86, wrt bug #414241 diff --git a/x11-libs/qt-multimedia/qt-multimedia-4.8.2.ebuild b/x11-libs/qt-multimedia/qt-multimedia-4.8.2.ebuild new file mode 100644 index 000000000000..414ed5a86a57 --- /dev/null +++ b/x11-libs/qt-multimedia/qt-multimedia-4.8.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-multimedia/qt-multimedia-4.8.2.ebuild,v 1.1 2012/05/22 15:22:37 pesa Exp $ + +EAPI=4 + +inherit qt4-build + +DESCRIPTION="The Multimedia module for the Qt toolkit" +SLOT="4" +if [[ ${QT4_BUILD_TYPE} == live ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +fi +IUSE="alsa" + +DEPEND=" + ~x11-libs/qt-core-${PV}[aqua=,c++0x=,debug=,qpa=] + ~x11-libs/qt-gui-${PV}[aqua=,c++0x=,debug=,qpa=] + alsa? ( media-libs/alsa-lib ) +" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${PN}-4.8.0-alsa.patch" +) + +pkg_setup() { + QT4_TARGET_DIRECTORIES=" + src/multimedia" + + QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES} + include/Qt + include/QtCore + include/QtGui + include/QtMultimedia + src/src.pro + src/corelib + src/gui" + + QCONFIG_ADD="multimedia" + QCONFIG_DEFINE="QT_MULTIMEDIA" + + qt4-build_pkg_setup +} + +src_configure() { + myconf+=" + -multimedia -audio-backend + $(qt_use alsa) + -no-accessibility -no-qt3support -no-xmlpatterns -no-phonon -no-phonon-backend + -no-svg -no-webkit -no-script -no-scripttools -no-declarative + -system-zlib -no-gif -no-libtiff -no-libpng -no-libmng -no-libjpeg -no-openssl + -no-cups -no-dbus -no-gtkstyle -no-nas-sound -no-opengl + -no-sm -no-xshape -no-xvideo -no-xsync -no-xinerama -no-xcursor -no-xfixes + -no-xrandr -no-xrender -no-mitshm -no-fontconfig -no-freetype -no-xinput -no-xkb" + + qt4-build_src_configure +} |