summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kde-frameworks/sonnet/Manifest1
-rw-r--r--kde-frameworks/sonnet/sonnet-4.95.0.ebuild32
2 files changed, 33 insertions, 0 deletions
diff --git a/kde-frameworks/sonnet/Manifest b/kde-frameworks/sonnet/Manifest
new file mode 100644
index 00000000000..111c17387ee
--- /dev/null
+++ b/kde-frameworks/sonnet/Manifest
@@ -0,0 +1 @@
+DIST sonnet-4.95.0.tar.xz 55532 SHA256 39f1a883166b34a4094d53f57243a32e2a277956a8abbf938eda5ae511a7dae5 SHA512 b29a59b6c123d95c04949b5c348714c3609ec1863a59a7788a49c107c6342c4101048db33cdf398d5fd5b1f23c5b4d80739ae0ac6aa5dfcd3f9af199b13d15af WHIRLPOOL 93926e2c45ec13175f609d777eec03f97ddc17cea655bd2d96df6f7864a45f70b55b71553201025de4a450da8cdecff00f9024e9e27f36c8ebb34c745ecd434e
diff --git a/kde-frameworks/sonnet/sonnet-4.95.0.ebuild b/kde-frameworks/sonnet/sonnet-4.95.0.ebuild
new file mode 100644
index 00000000000..85b4e80a964
--- /dev/null
+++ b/kde-frameworks/sonnet/sonnet-4.95.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+FRAMEWORKS_DOXYGEN="true"
+inherit kde-frameworks
+
+DESCRIPTION="Framework for providing spell-checking capabilities through abstraction of popular backends"
+LICENSE="LGPL-2+ LGPL-2.1+"
+KEYWORDS="~amd64"
+IUSE="aspell hunspell"
+
+RDEPEND="
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ aspell? ( app-text/aspell )
+ hunspell? ( app-text/hunspell )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ # enchant is disabled in master due to being buggy
+ local mycmakeargs=(
+ -DCMAKE_DISABLE_FIND_PACKAGE_ENCHANT=ON
+ $(cmake-utils_use_find_package aspell)
+ $(cmake-utils_use_find_package hunspell)
+ )
+
+ kde-frameworks_src_configure
+}