From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.77) (envelope-from ) id 1SmC8C-0001AL-H5 for garchives@archives.gentoo.org; Tue, 03 Jul 2012 23:03:40 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74839E05F9; Tue, 3 Jul 2012 23:03:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 43850E05F8 for ; Tue, 3 Jul 2012 23:03:33 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A55961B4037 for ; Tue, 3 Jul 2012 23:03:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3EE59E543E for ; Tue, 3 Jul 2012 23:03:30 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1341356377.2a70c03aae951253bcdd43b8d8958ec5b1c51c74.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: x11-libs/qt-opengl/ X-VCS-Repository: proj/qt X-VCS-Files: x11-libs/qt-opengl/metadata.xml x11-libs/qt-opengl/qt-opengl-5.9999.ebuild X-VCS-Directories: x11-libs/qt-opengl/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 2a70c03aae951253bcdd43b8d8958ec5b1c51c74 X-VCS-Branch: master Date: Tue, 3 Jul 2012 23:03:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 978e38a7-3835-4950-b028-5427c33fe579 X-Archives-Hash: f3e11dc0fc1182ec460ef0e63eacb4fa commit: 2a70c03aae951253bcdd43b8d8958ec5b1c51c74 Author: Davide Pesavento gmail com> AuthorDate: Tue Jul 3 22:59:37 2012 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Tue Jul 3 22:59:37 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/qt.git;a=3Dco= mmit;h=3D2a70c03a [x11-libs/qt-opengl] QtOpenGL live ebuild for Qt5. (Portage version: 2.2.0_alpha115/git/Linux x86_64, unsigned Manifest comm= it) --- x11-libs/qt-opengl/metadata.xml | 3 +- x11-libs/qt-opengl/qt-opengl-5.9999.ebuild | 40 ++++++++++++++++++++++= ++++++ 2 files changed, 42 insertions(+), 1 deletions(-) diff --git a/x11-libs/qt-opengl/metadata.xml b/x11-libs/qt-opengl/metadat= a.xml index 6fb8805..ef885f9 100644 --- a/x11-libs/qt-opengl/metadata.xml +++ b/x11-libs/qt-opengl/metadata.xml @@ -1,9 +1,10 @@ - qt=20 + qt Build Qt using the C++11 standard + Build Qt using the C++11 standard Use EGL instead of default GLX to manage OpenGL contexts on the desktop Add support for exceptions - like catching t= hem diff --git a/x11-libs/qt-opengl/qt-opengl-5.9999.ebuild b/x11-libs/qt-ope= ngl/qt-opengl-5.9999.ebuild new file mode 100644 index 0000000..d22c8b6 --- /dev/null +++ b/x11-libs/qt-opengl/qt-opengl-5.9999.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D4 + +inherit qt5-build + +DESCRIPTION=3D"The Qt toolkit is a comprehensive C++ application develop= ment framework" + +if [[ ${QT5_BUILD_TYPE} =3D=3D live ]]; then + KEYWORDS=3D"" +else + KEYWORDS=3D"~amd64" +fi + +IUSE=3D"egl" + +DEPEND=3D" + virtual/opengl + ~x11-libs/qt-core-${PV}[debug=3D] + ~x11-libs/qt-gui-${PV}[debug=3D,egl=3D,opengl] + ~x11-libs/qt-widgets-${PV}[debug=3D] + egl? ( media-libs/mesa[egl] ) +" +RDEPEND=3D"${DEPEND}" + +QT5_TARGET_SUBDIRS=3D( + src/opengl +) + +src_configure() { + local myconf=3D( + -accessibility + $(qt_use egl) + -opengl + -no-eglfs -no-directfb + ) + qt5-build_src_configure +}