diff options
Diffstat (limited to 'dev-qt/qtopengl/qtopengl-5.3.2.ebuild')
-rw-r--r-- | dev-qt/qtopengl/qtopengl-5.3.2.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-qt/qtopengl/qtopengl-5.3.2.ebuild b/dev-qt/qtopengl/qtopengl-5.3.2.ebuild new file mode 100644 index 000000000000..6667439fe6b4 --- /dev/null +++ b/dev-qt/qtopengl/qtopengl-5.3.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtopengl/qtopengl-5.3.2.ebuild,v 1.1 2014/09/16 14:46:17 pesa Exp $ + +EAPI=5 + +QT5_MODULE="qtbase" +VIRTUALX_REQUIRED="test" + +inherit qt5-build + +DESCRIPTION="OpenGL support library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == live ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV}[debug=] + ~dev-qt/qtgui-${PV}[debug=,opengl] + ~dev-qt/qtwidgets-${PV}[debug=] + virtual/opengl +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/opengl +) + +src_configure() { + local myconf=( + -opengl + ) + qt5-build_src_configure +} |