diff options
Diffstat (limited to 'app-dicts/ispell-de/ispell-de-20160407.ebuild')
-rw-r--r-- | app-dicts/ispell-de/ispell-de-20160407.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app-dicts/ispell-de/ispell-de-20160407.ebuild b/app-dicts/ispell-de/ispell-de-20160407.ebuild new file mode 100644 index 00000000..b5b8ddf6 --- /dev/null +++ b/app-dicts/ispell-de/ispell-de-20160407.ebuild @@ -0,0 +1,35 @@ +# Copyright 2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +RESTRICT="mirror" +MY_P=igerman98-${PV} + +DESCRIPTION="German and Swiss dictionaries for ispell" +HOMEPAGE="http://j3e.de/ispell/igerman98/" +SRC_URI="http://j3e.de/ispell/igerman98/dict/${MY_P}.tar.bz2" + +SLOT="0" +LICENSE="GPL-2" +IUSE="" +KEYWORDS="alpha amd64 hppa mips ppc sparc x86" + +DEPEND="app-text/ispell:=" + +S=${WORKDIR}/${MY_P} + +src_compile() { + for lang in de_DE de_AT de_CH; do + emake ispell/${lang}{.aff,.hash} + done +} + +src_install () { + insinto /usr/$(get_libdir)/ispell + for lang in de_DE de_AT de_CH; do + doins ispell/${lang}{.aff,.hash} + done + + dodoc Documentation/* + rm -f -- "${ED}/usr/share/doc/${PF}/GPL"* +} |