mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
dev-qt/qtgraphs: add 6.10.0_rc
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST qtgraphs-everywhere-src-6.10.0-rc.tar.xz 5244132 BLAKE2B d4e72deba53abb7525a50553ab1d8eaca4c723c1d65c77e393cdebddd1fe1e1aaea2609e8b6d96b5365837d0ca93815da3fef58a8df80084490da08845113547 SHA512 74ca1a47d4e85ee8f72b9a9a740ebbadc5d6f7f9c100cdf3769f4c69accb496da742ec8b766c607c576283e8166553491ad231eeaf71a6b8cd45d744efb6be42
|
||||
DIST qtgraphs-everywhere-src-6.9.1.tar.xz 5230620 BLAKE2B e87205e821dbde845f72c5bb8577637eb9faa8d1ca4a07a7100e51cf9beeaf17d51f8f88b20c8c853638ef6a077f410cdce046b66485b586ddd56ead906a59bb SHA512 7a2ca552a296ac700cf92a03cb3e1edda678882147b64e858409aa5bbe440b6d7e969c7c68b7364dfa824f167492446c6933dc818decf16692d41359e2782641
|
||||
DIST qtgraphs-everywhere-src-6.9.2.tar.xz 5214768 BLAKE2B b8421d53f6bea2916419d05d63bbb62e93634de4fdb6e8ad437c3ec09149c0efb90d3e3708e523a8744f1e01657b2a83cad5044dc1285c6e0a203f06c04f598d SHA512 bba07dbda24a9a6e591ee6060a1eb3ea46295afe7af89c390805c1254522f93098b37628671e257327194733fad99d69df3bdbecedac1bbfc7b0083a9466f41b
|
||||
|
||||
32
dev-qt/qtgraphs/qtgraphs-6.10.0_rc.ebuild
Normal file
32
dev-qt/qtgraphs/qtgraphs-6.10.0_rc.ebuild
Normal file
@@ -0,0 +1,32 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit qt6-build
|
||||
|
||||
DESCRIPTION="Graphs component library for the Qt6 framework"
|
||||
|
||||
if [[ ${QT6_BUILD_TYPE} == release ]]; then
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
IUSE="quick3d"
|
||||
|
||||
# note: widgets is only used with quick3d and is technically optional,
|
||||
# but the top level CMakeLists.txt requires through assertTargets()
|
||||
RDEPEND="
|
||||
~dev-qt/qtbase-${PV}:6[gui,widgets]
|
||||
~dev-qt/qtdeclarative-${PV}:6
|
||||
quick3d? ( ~dev-qt/qtquick3d-${PV}:6 )
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
# simpler than keeping track of and disabling every graphs-3d* features
|
||||
$(cmake_use_find_package quick3d Qt6Quick3D)
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
Reference in New Issue
Block a user