mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
dev-qt/qtquick3d: add 6.9.0
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST qtquick3d-everywhere-src-6.8.2.tar.xz 75298116 BLAKE2B a44c8d8f2c0a22a8c8ea688204e758cd4b7cc2b2f8fc66e65a4f809c941825a5e2e90fa0d6003b68f22dbf4fd19aa7b5d2ee8408bccf774e255023296a22a80a SHA512 401a2c5cc97e58bc82dd87e98e5838363e106fbad89ba0e0df18b51b61677c5f8a4f9882334657f80b94d04ad570863c9707123570dbe58cee5be7106922faa1
|
||||
DIST qtquick3d-everywhere-src-6.8.3.tar.xz 75305840 BLAKE2B cb62aa4d64c1e73e4ab112a81065663071462af1529d1401c7316a7b2bbaeec49bc3d0400b8a7bcadf116902f7552bcec93bde8d394f4b0e0ab4ab64252438f9 SHA512 5a5c04dfd1581905fb0b40cb35ef9e7370ffaf451287d84a9d444c0871f495ecfe59c8ab15cacc8e7314af45c16598fad5e63cd9466384c5ba245ad0c28315f2
|
||||
DIST qtquick3d-everywhere-src-6.9.0.tar.xz 75649196 BLAKE2B 1014cd48516eadd34afcffdfe2d69ba4a7f9f85826a75c34f9670bbe35b1579799e41154a0387d85f744bbe68b01d51f200181b20fe28f8126c494dff5c24318 SHA512 b0f45e7482d31f791dc069ae3c1facbb0ec3eda24704e2a157580e87939bbfbd269910dc4e5912ceaad40a99f96c5e6f4b5a8da1385be213a20cc68e9c86d77e
|
||||
|
||||
55
dev-qt/qtquick3d/qtquick3d-6.9.0.ebuild
Normal file
55
dev-qt/qtquick3d/qtquick3d-6.9.0.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 2021-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit qt6-build
|
||||
|
||||
DESCRIPTION="Qt module and API for defining 3D content in Qt QuickTools"
|
||||
|
||||
if [[ ${QT6_BUILD_TYPE} == release ]]; then
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
|
||||
elif [[ ${QT6_BUILD_TYPE} == live ]]; then
|
||||
EGIT_SUBMODULES=() # skip qtquick3d-assimp
|
||||
fi
|
||||
|
||||
IUSE="opengl vulkan"
|
||||
|
||||
RDEPEND="
|
||||
~dev-qt/qtbase-${PV}:6[concurrent,gui,opengl=,vulkan=,widgets]
|
||||
~dev-qt/qtdeclarative-${PV}:6
|
||||
~dev-qt/qtquicktimeline-${PV}:6
|
||||
~dev-qt/qtshadertools-${PV}:6
|
||||
media-libs/assimp:=
|
||||
sys-libs/zlib:=
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
test? ( ~dev-qt/qtbase-${PV}:6[network] )
|
||||
vulkan? ( dev-util/vulkan-headers )
|
||||
"
|
||||
BDEPEND="
|
||||
~dev-qt/qtshadertools-${PV}:6
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-6.6.2-gcc14.patch
|
||||
"${FILESDIR}"/${PN}-6.6.2-x32abi.patch
|
||||
)
|
||||
|
||||
CMAKE_SKIP_TESTS=(
|
||||
# needs off-by-default assimp[collada] that is masked on some profiles,
|
||||
# not worth the extra trouble
|
||||
tst_qquick3dassetimport
|
||||
)
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
# TODO: if someone wants it, openxr should likely have its own
|
||||
# USE and be packaged rather than use the bundled copy (if use
|
||||
# bundled, note need to setup python-any-r1)
|
||||
-DQT_FEATURE_quick3dxr_openxr=OFF
|
||||
)
|
||||
|
||||
qt6-build_src_configure
|
||||
}
|
||||
Reference in New Issue
Block a user