summaryrefslogtreecommitdiff
path: root/dev-qt/qtwebsockets/qtwebsockets-6.10.0.ebuild
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2025-10-07 01:27:33 -0400
committerIonen Wolkens <ionen@gentoo.org>2025-10-07 02:17:19 -0400
commitd93006c71866164ac976d88d1124991d0aa21115 (patch)
tree7bf223868ad8d0eae372e344834ab084560e01df /dev-qt/qtwebsockets/qtwebsockets-6.10.0.ebuild
parent54cf9590bfa8fa71348732b5b8eefd6a7925211c (diff)
downloadgentoo-d93006c71866164ac976d88d1124991d0aa21115.tar.gz
gentoo-d93006c71866164ac976d88d1124991d0aa21115.tar.bz2
gentoo-d93006c71866164ac976d88d1124991d0aa21115.zip
dev-qt/qtwebsockets: add 6.10.0
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-qt/qtwebsockets/qtwebsockets-6.10.0.ebuild')
-rw-r--r--dev-qt/qtwebsockets/qtwebsockets-6.10.0.ebuild28
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-qt/qtwebsockets/qtwebsockets-6.10.0.ebuild b/dev-qt/qtwebsockets/qtwebsockets-6.10.0.ebuild
new file mode 100644
index 000000000000..17a0961888f3
--- /dev/null
+++ b/dev-qt/qtwebsockets/qtwebsockets-6.10.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2021-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qt6-build
+
+DESCRIPTION="Implementation of the WebSocket protocol for the Qt6 framework"
+
+if [[ ${QT6_BUILD_TYPE} == release ]]; then
+ KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~x86"
+fi
+
+IUSE="qml +ssl"
+
+RDEPEND="
+ ~dev-qt/qtbase-${PV}:6[network,ssl=]
+ qml? ( ~dev-qt/qtdeclarative-${PV}:6 )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake_use_find_package qml Qt6Quick)
+ )
+
+ qt6-build_src_configure
+}