summaryrefslogtreecommitdiff
path: root/kde-frameworks/sonnet
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-12-06 20:15:35 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-12-06 20:15:35 +0100
commit25584d49d3ae0bfd6d54eaf0ba63055078cfdcd3 (patch)
treea05e48dc8f9c6db95a26b0b3e84d910cc1698c76 /kde-frameworks/sonnet
parentca59a008c7520e206c6982084012d0df0f0f3ee3 (diff)
downloadkde-25584d49d3ae0bfd6d54eaf0ba63055078cfdcd3.tar.gz
kde-25584d49d3ae0bfd6d54eaf0ba63055078cfdcd3.tar.bz2
kde-25584d49d3ae0bfd6d54eaf0ba63055078cfdcd3.zip
kde-frameworks/sonnet: 6.9.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/sonnet')
-rw-r--r--kde-frameworks/sonnet/Manifest1
-rw-r--r--kde-frameworks/sonnet/sonnet-6.9.0.ebuild44
2 files changed, 45 insertions, 0 deletions
diff --git a/kde-frameworks/sonnet/Manifest b/kde-frameworks/sonnet/Manifest
new file mode 100644
index 00000000000..57cfca18827
--- /dev/null
+++ b/kde-frameworks/sonnet/Manifest
@@ -0,0 +1 @@
+DIST sonnet-6.9.0.tar.xz 2433648 BLAKE2B ccad4b673a61b28dcd3e854b680fd2193f5d1f5be778bd165b12e389592a1e98289aa90d0dba573872913a6cb4cb0ab631d2a0d70add3ef51231e5659c4b18ef SHA512 24c1eda93fb6d4e540f0dd6518eabcc37a00ec4ddc2fedae8b4f53a0618a9b4e1051b20041bd6113de6ea321719ede45d7efdd7f27c1bf0a3f4def11c34598a3
diff --git a/kde-frameworks/sonnet/sonnet-6.9.0.ebuild b/kde-frameworks/sonnet/sonnet-6.9.0.ebuild
new file mode 100644
index 00000000000..c9d221cc0d9
--- /dev/null
+++ b/kde-frameworks/sonnet/sonnet-6.9.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_DESIGNERPLUGIN="true"
+QTMIN=6.7.2
+inherit ecm frameworks.kde.org
+
+DESCRIPTION="Framework for providing spell-checking through abstraction of popular backends"
+
+LICENSE="LGPL-2+ LGPL-2.1+"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="aspell +hunspell qml"
+
+DEPEND="
+ >=dev-qt/qtbase-${QTMIN}:6[gui,widgets]
+ aspell? ( app-text/aspell )
+ hunspell? ( app-text/hunspell:= )
+ qml? ( >=dev-qt/qtdeclarative-${QTMIN}:6 )
+"
+RDEPEND="${DEPEND}"
+BDEPEND=">=dev-qt/qttools-${QTMIN}:6[linguist]"
+
+CMAKE_SKIP_TESTS=(
+ # bug 779994
+ sonnet-test_autodetect
+ # bug 680032
+ sonnet-test_settings
+ sonnet-test_highlighter
+)
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake_use_find_package aspell ASPELL)
+ $(cmake_use_find_package hunspell HUNSPELL)
+ -DSONNET_USE_QML=$(usex qml)
+ )
+ if ! use aspell && ! use hunspell; then
+ mycmakeargs+=( -DSONNET_NO_BACKENDS=ON )
+ fi
+
+ ecm_src_configure
+}