diff options
author | Davide Pesavento <pesa@gentoo.org> | 2012-05-22 15:28:21 +0000 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2012-05-22 15:28:21 +0000 |
commit | 5bad328fd5ad95e13b00679950bad118286f48e3 (patch) | |
tree | 274be03e1c5a0d038c845945549d2471bd9b443d /x11-libs/qt-opengl | |
parent | Remove stray comment, thanks to johu for noticing that. (diff) | |
download | historical-5bad328fd5ad95e13b00679950bad118286f48e3.tar.gz historical-5bad328fd5ad95e13b00679950bad118286f48e3.tar.bz2 historical-5bad328fd5ad95e13b00679950bad118286f48e3.zip |
Version bump.
Package-Manager: portage-2.2.0_alpha107/cvs/Linux x86_64
Diffstat (limited to 'x11-libs/qt-opengl')
-rw-r--r-- | x11-libs/qt-opengl/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/qt-opengl/qt-opengl-4.8.2.ebuild | 64 |
2 files changed, 70 insertions, 1 deletions
diff --git a/x11-libs/qt-opengl/ChangeLog b/x11-libs/qt-opengl/ChangeLog index a5854c6afbb6..24347e4edd88 100644 --- a/x11-libs/qt-opengl/ChangeLog +++ b/x11-libs/qt-opengl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/qt-opengl # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-opengl/ChangeLog,v 1.111 2012/05/20 13:15:04 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-opengl/ChangeLog,v 1.112 2012/05/22 15:23:08 pesa Exp $ + +*qt-opengl-4.8.2 (22 May 2012) + + 22 May 2012; Davide Pesavento <pesa@gentoo.org> +qt-opengl-4.8.2.ebuild: + Version bump. 20 May 2012; Agostino Sarubbo <ago@gentoo.org> qt-opengl-4.8.1.ebuild: Stable for x86, wrt bug #414241 diff --git a/x11-libs/qt-opengl/qt-opengl-4.8.2.ebuild b/x11-libs/qt-opengl/qt-opengl-4.8.2.ebuild new file mode 100644 index 000000000000..21faff97e5ed --- /dev/null +++ b/x11-libs/qt-opengl/qt-opengl-4.8.2.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-opengl/qt-opengl-4.8.2.ebuild,v 1.1 2012/05/22 15:23:08 pesa Exp $ + +EAPI=4 + +inherit qt4-build + +DESCRIPTION="The OpenGL module for the Qt toolkit" +SLOT="4" +if [[ ${QT4_BUILD_TYPE} == live ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +fi +IUSE="egl qt3support" + +DEPEND=" + virtual/opengl + ~x11-libs/qt-core-${PV}[aqua=,c++0x=,debug=,qpa=,qt3support=] + ~x11-libs/qt-gui-${PV}[aqua=,c++0x=,debug=,egl=,qpa=,qt3support=] +" +RDEPEND="${DEPEND}" + +pkg_setup() { + QT4_TARGET_DIRECTORIES=" + src/opengl + src/plugins/graphicssystems/opengl" + + QT4_EXTRACT_DIRECTORIES=" + include/QtCore + include/QtGui + include/QtOpenGL + src/corelib + src/gui + src/opengl + src/plugins + src/3rdparty" + + QCONFIG_ADD="opengl" + QCONFIG_DEFINE="QT_OPENGL" + + qt4-build_pkg_setup +} + +src_configure() { + myconf+=" + -opengl + $(qt_use qt3support) + $(qt_use egl)" + + qt4-build_src_configure + + # Not building tools/designer/src/plugins/tools/view3d as it's + # commented out of the build in the source +} + +src_install() { + qt4-build_src_install + + # touch the available graphics systems + dodir /usr/share/qt4/graphicssystems + echo "experimental" > "${ED}"/usr/share/qt4/graphicssystems/opengl || die +} |