summaryrefslogtreecommitdiff
path: root/app-text/qtspell
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-10-15 02:08:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2017-10-15 02:08:29 +0100
commitd1383893de69ff71ddfe2f4bb58ff1971bffdc2c (patch)
tree82a20161696b1c748a7bcc88b7f60ba4a7db3ccd /app-text/qtspell
parent71b4dd8174b05fab23ed441412b8770e52a87040 (diff)
app-text/gimagereader : import from salfter overlay
Diffstat (limited to 'app-text/qtspell')
-rw-r--r--app-text/qtspell/Manifest1
-rw-r--r--app-text/qtspell/qtspell-0.8.2-r1.ebuild24
2 files changed, 25 insertions, 0 deletions
diff --git a/app-text/qtspell/Manifest b/app-text/qtspell/Manifest
new file mode 100644
index 00000000..290455cf
--- /dev/null
+++ b/app-text/qtspell/Manifest
@@ -0,0 +1 @@
+DIST qtspell-0.8.2.tar.xz 49872 SHA256 4f8b902b5da39ce532e532f9ec4916d03d623baf6e46a9b0c4afce76800c40e0 SHA512 11694d3e3df01cc5645feb1e195787424ddc08a28eac1bda144e155fc6b3b91a9b605a784d03c3bfbbdaca7ea60c16d3aab6b04f88daee489afa95808f6dd972 WHIRLPOOL e57f63eb2c7681a2a27e05694fa660245e019ffb18955185021e42949dcd17546eed301105acd518c7af52745fd89d4c88cc02801d71f684d9931a645d196598
diff --git a/app-text/qtspell/qtspell-0.8.2-r1.ebuild b/app-text/qtspell/qtspell-0.8.2-r1.ebuild
new file mode 100644
index 00000000..3d63acc6
--- /dev/null
+++ b/app-text/qtspell/qtspell-0.8.2-r1.ebuild
@@ -0,0 +1,24 @@
+EAPI=6
+inherit cmake-utils
+
+DESCRIPTION="Spell checking for Qt text widgets"
+HOMEPAGE="https://github.com/manisandro/qtspell"
+SRC_URI="https://github.com/manisandro/${PN}/releases/download/${PV}/qtspell-${PV}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="qt5"
+
+DEPEND="app-text/enchant"
+
+src_unpack()
+{
+ unpack "${A}"
+ cd "${WORKDIR}"
+ mv qtspell-${PV} ${P}
+ if use qt5; then
+ cd "${S}"
+ sed -i "s/SET(USE_QT5 OFF/SET(USE_QT5 ON/" CMakeLists.txt
+ fi
+}