diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-05-09 11:50:00 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-05-09 13:31:40 +0200 |
commit | 78d3baee6a4c834139f8030a632e31db75cab0c6 (patch) | |
tree | 97353bfd1f6a7a440e3975e56e8b4ed8e8a01c26 /kde-frameworks/sonnet | |
parent | app-text/libmspub: Fix build with GCC 10, EAPI-7 bump (diff) | |
download | gentoo-78d3baee6a4c834139f8030a632e31db75cab0c6.tar.gz gentoo-78d3baee6a4c834139f8030a632e31db75cab0c6.tar.bz2 gentoo-78d3baee6a4c834139f8030a632e31db75cab0c6.zip |
kde-frameworks: Add KDE Frameworks 5.70.0
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/sonnet')
-rw-r--r-- | kde-frameworks/sonnet/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/sonnet/sonnet-5.70.0.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/kde-frameworks/sonnet/Manifest b/kde-frameworks/sonnet/Manifest index 581143f8e79f..9ba542f49286 100644 --- a/kde-frameworks/sonnet/Manifest +++ b/kde-frameworks/sonnet/Manifest @@ -1,2 +1,3 @@ DIST sonnet-5.67.0.tar.xz 288752 BLAKE2B 7ebacd4d94e587db6e84874d093f1ca2110274ff9232f2561b14f825865bde7ee91fb39509989de0f88fa4b8522d92b183d1bd835ff622008c5060815932a3d0 SHA512 b31d4cf8dd13553a1e8caeeefbc8aa3bcdbb08fe84139784922fd7475c9dcc3e86e55f90d34e744e743b0c9f78127455752996f519d7279d9505d946dbd4b878 DIST sonnet-5.69.0.tar.xz 293776 BLAKE2B cbdbcdb35fe63c171cdbae0b146b46bcf4f2236e741159fada392043afc925c30c71732090dc86363bf5368e8e255af7a0b2cb5fc374ad78c71bfcc1d3613b0c SHA512 3336ed334b01f08094ac8edb65b19c6e2cb54f864bd09a89c1fa2f654bc27d2333653b420f1a4f13e5ccaef591216664fb51f775ce295739223c8fb04b79fee1 +DIST sonnet-5.70.0.tar.xz 292380 BLAKE2B 53047e83e276fd016a674067d0ec0655ec855b071761ee1347fdac047db1a3049d965aba2e49b6c3385ea77e49b0666b140d960bfd04af752f6cebdb731ecaf6 SHA512 de93c1396262215407324795ea0ebc7d45752fb33873f0f6552821b9fa97dafd9972e274784f9f70c63f220aba9db261dccd55cf169cf62e629f398dc2db7fe9 diff --git a/kde-frameworks/sonnet/sonnet-5.70.0.ebuild b/kde-frameworks/sonnet/sonnet-5.70.0.ebuild new file mode 100644 index 000000000000..93eac7f8dfbf --- /dev/null +++ b/kde-frameworks/sonnet/sonnet-5.70.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +ECM_DESIGNERPLUGIN="true" +QTMIN=5.12.3 +VIRTUALX_REQUIRED="test" +inherit ecm kde.org + +DESCRIPTION="Framework for providing spell-checking through abstraction of popular backends" +LICENSE="LGPL-2+ LGPL-2.1+" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="aspell +hunspell nls" + +BDEPEND=" + nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 ) +" +DEPEND=" + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + aspell? ( app-text/aspell ) + hunspell? ( app-text/hunspell:= ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package aspell ASPELL) + $(cmake_use_find_package hunspell HUNSPELL) + ) + + ecm_src_configure +} + +src_test() { + # bugs: 680032 + local myctestargs=( + -E "(sonnet-test_settings|sonnet-test_highlighter)" + ) + + ecm_src_test +} |