diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2019-11-23 10:38:04 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-04-03 22:05:30 +0200 |
commit | b5fc15f23efb24bb7bf1b4d6448ce798f034bf15 (patch) | |
tree | a43382011ee49cdd5a13feb9c328633eb90c2962 /dev-qt/qtdeclarative/qtdeclarative-5.13.2-r1.ebuild | |
parent | dev-qt/qtwidgets: rename USE=gles2 to USE=gles2-only (diff) | |
download | gentoo-b5fc15f23efb24bb7bf1b4d6448ce798f034bf15.tar.gz gentoo-b5fc15f23efb24bb7bf1b4d6448ce798f034bf15.tar.bz2 gentoo-b5fc15f23efb24bb7bf1b4d6448ce798f034bf15.zip |
dev-qt/qtdeclarative: rename USE=gles2 to USE=gles2-only
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-qt/qtdeclarative/qtdeclarative-5.13.2-r1.ebuild')
-rw-r--r-- | dev-qt/qtdeclarative/qtdeclarative-5.13.2-r1.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.13.2-r1.ebuild b/dev-qt/qtdeclarative/qtdeclarative-5.13.2-r1.ebuild deleted file mode 100644 index 73819b7074b3..000000000000 --- a/dev-qt/qtdeclarative/qtdeclarative-5.13.2-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 2009-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) -inherit python-any-r1 qt5-build - -DESCRIPTION="The QML and Quick modules for the Qt5 framework" - -if [[ ${QT5_BUILD_TYPE} == release ]]; then - KEYWORDS="arm" -fi - -IUSE="gles2 +jit localstorage +widgets" - -BDEPEND="${PYTHON_DEPS}" -# qtgui[gles2=] is needed because of bug 504322 -DEPEND=" - ~dev-qt/qtcore-${PV} - ~dev-qt/qtgui-${PV}[gles2=] - ~dev-qt/qtnetwork-${PV} - ~dev-qt/qttest-${PV} - localstorage? ( ~dev-qt/qtsql-${PV} ) - widgets? ( ~dev-qt/qtwidgets-${PV}[gles2=] ) -" -RDEPEND="${DEPEND} - !<dev-qt/qtquickcontrols-5.7:5 -" - -PATCHES=( - "${FILESDIR}/${P}-read-QQmlPropertyMap-correctly.patch" # QTBUG-79614 - "${FILESDIR}/${P}-fix-deadlock-on-exit.patch" # QTBUG-79573 -) - -src_prepare() { - use jit || PATCHES+=("${FILESDIR}/${PN}-5.4.2-disable-jit.patch") - - qt_use_disable_mod localstorage sql \ - src/imports/imports.pro - - qt_use_disable_mod widgets widgets \ - src/src.pro \ - src/qmltest/qmltest.pro \ - tests/auto/auto.pro \ - tools/tools.pro \ - tools/qmlscene/qmlscene.pro \ - tools/qml/qml.pro - - qt5-build_src_prepare -} - -src_configure() { - local myqmakeargs=( - -- - -qml-debug - ) - qt5-build_src_configure -} |