diff options
author | Ian Delaney <idella4@gentoo.org> | 2015-10-08 08:56:10 +0800 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2015-10-08 11:22:19 +0800 |
commit | 5bd8c216ef3bc3c7d1e0d0c45ec0ce1cb04f46eb (patch) | |
tree | b48fd022d59245b29628ad063b7d369a473fff3d /app-dicts/hunspell-kk/hunspell-kk-1.1.2.ebuild | |
parent | app-text/blogc: version bump (diff) | |
download | gentoo-5bd8c216ef3bc3c7d1e0d0c45ec0ce1cb04f46eb.tar.gz gentoo-5bd8c216ef3bc3c7d1e0d0c45ec0ce1cb04f46eb.tar.bz2 gentoo-5bd8c216ef3bc3c7d1e0d0c45ec0ce1cb04f46eb.zip |
app-dicts/hunspell-kk: initial ebuild version -1.1.2
ebuild written and submitted by Galym Kerimbekov via the gentoo bug,
set as proxy maintainer. He has forked the repo in github
Gentoo bug: #562348
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'app-dicts/hunspell-kk/hunspell-kk-1.1.2.ebuild')
-rw-r--r-- | app-dicts/hunspell-kk/hunspell-kk-1.1.2.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-dicts/hunspell-kk/hunspell-kk-1.1.2.ebuild b/app-dicts/hunspell-kk/hunspell-kk-1.1.2.ebuild new file mode 100644 index 000000000000..0eda532fe701 --- /dev/null +++ b/app-dicts/hunspell-kk/hunspell-kk-1.1.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils git-r3 vcs-snapshot + +MY_P=${PN}-${PV} + +DESCRIPTION="Kazakh dictionaries for myspell/hunspell" +SRC_URI="https://github.com/kergalym/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="http://hunspell.sourceforge.net/" + +SLOT="0" +LICENSE="MPL-1.1 GPL-2 LGPL-2.1" +IUSE="ncurses nls readline static-libs" +KEYWORDS="~x86 ~amd64" + +RDEPEND=" + ncurses? ( sys-libs/ncurses:= ) + readline? ( sys-libs/readline:= )" +DEPEND="${RDEPEND} + sys-devel/gettext + app-text/hunspell + app-dicts/myspell-en + app-dicts/myspell-ru" + +S=${WORKDIR}/${MY_P} + +src_install() { + dodir "/usr/share/myspell" + insinto "/usr/share/myspell" + doins "${S}/kk_KZ.aff" + doins "${S}/kk_noun_adj.aff" + doins "${S}/kk_test.aff" + doins "${S}/kk_noun_adj.dic" + doins "${S}/kk_test.dic" + doins "${S}/kk_KZ.dic" + dodoc README_kk_KZ.txt +} |