diff options
author | Michael Palimaka <kensington@gentoo.org> | 2016-04-24 02:57:01 +1000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2016-04-24 03:23:11 +1000 |
commit | 421e93435a836b5245edd3e97a533ab806941e91 (patch) | |
tree | d4ef6b3cf40176ce99ac82a1d6f9144532d93842 /dev-qt/qtopengl/qtopengl-5.6.0.ebuild | |
parent | app-emulation/qemu-guest-agent: fix build w/newer glibc #580924 (diff) | |
download | gentoo-421e93435a836b5245edd3e97a533ab806941e91.tar.gz gentoo-421e93435a836b5245edd3e97a533ab806941e91.tar.bz2 gentoo-421e93435a836b5245edd3e97a533ab806941e91.zip |
dev-qt: version bump 5.6.0
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-qt/qtopengl/qtopengl-5.6.0.ebuild')
-rw-r--r-- | dev-qt/qtopengl/qtopengl-5.6.0.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-qt/qtopengl/qtopengl-5.6.0.ebuild b/dev-qt/qtopengl/qtopengl-5.6.0.ebuild new file mode 100644 index 000000000000..88bad0f2a5a4 --- /dev/null +++ b/dev-qt/qtopengl/qtopengl-5.6.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +QT5_MODULE="qtbase" +VIRTUALX_REQUIRED="test" +inherit qt5-build + +DESCRIPTION="OpenGL support library for the Qt5 framework (deprecated)" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="gles2" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV}[gles2=] + ~dev-qt/qtwidgets-${PV}[gles2=] + virtual/opengl +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/opengl +) + +src_configure() { + local myconf=( + -opengl $(usex gles2 es2 desktop) + ) + qt5-build_src_configure +} |