diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-12-12 09:29:16 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-12-12 16:23:46 -0500 |
commit | 3aa67592efc61564c3dc96e7c48b5f62c4c3e502 (patch) | |
tree | 8ee1ebbaed890e79ea2ef369829fef3aac95d805 /dev-qt | |
parent | dev-qt/qtconnectivity: add 6.7.9999 (diff) | |
download | gentoo-3aa67592efc61564c3dc96e7c48b5f62c4c3e502.tar.gz gentoo-3aa67592efc61564c3dc96e7c48b5f62c4c3e502.tar.bz2 gentoo-3aa67592efc61564c3dc96e7c48b5f62c4c3e502.zip |
dev-qt/qtdeclarative: add 6.7.9999
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-qt')
-rw-r--r-- | dev-qt/qtdeclarative/qtdeclarative-6.7.9999.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-qt/qtdeclarative/qtdeclarative-6.7.9999.ebuild b/dev-qt/qtdeclarative/qtdeclarative-6.7.9999.ebuild new file mode 100644 index 000000000000..ca39dcd8b2f0 --- /dev/null +++ b/dev-qt/qtdeclarative/qtdeclarative-6.7.9999.ebuild @@ -0,0 +1,39 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +inherit python-any-r1 qt6-build + +DESCRIPTION="Qt Declarative (Quick 2)" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~x86" +fi + +IUSE="+network opengl +sql +ssl vulkan +widgets" + +# behaves very badly when qtdeclarative is not already installed, also +# other more minor issues (installs junk, sandbox/offscreen issues) +RESTRICT="test" + +RDEPEND="~dev-qt/qtbase-${PV}:6[network=,opengl=,sql?,ssl?,vulkan=,widgets=]" +DEPEND=" + ${RDEPEND} + vulkan? ( dev-util/vulkan-headers ) +" +BDEPEND=" + ${PYTHON_DEPS} + ~dev-qt/qtshadertools-${PV}:6 +" + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package sql Qt6Sql) + $(qt_feature network qml_network) + $(qt_feature ssl qml_ssl) + ) + + qt6-build_src_configure +} |