diff options
author | 2021-05-02 23:34:31 +0200 | |
---|---|---|
committer | 2021-06-03 17:20:36 +0300 | |
commit | 7794ad2aeb61291c4b1561f5b9b064c3244009f6 (patch) | |
tree | 58c7496c65f2eec1e93688206bc8640b4b5453af /app-dicts/myspell-gl/myspell-gl-20180710.ebuild | |
parent | app-dicts/myspell-ga: fixed date release (diff) | |
download | gentoo-7794ad2aeb61291c4b1561f5b9b064c3244009f6.tar.gz gentoo-7794ad2aeb61291c4b1561f5b9b064c3244009f6.tar.bz2 gentoo-7794ad2aeb61291c4b1561f5b9b064c3244009f6.zip |
app-dicts/myspell-gl: bump to EAPI 7 + verbump to 20180710
+ move to libreoffice server
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Marco Scardovi <marco@scardovi.com>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-dicts/myspell-gl/myspell-gl-20180710.ebuild')
-rw-r--r-- | app-dicts/myspell-gl/myspell-gl-20180710.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-dicts/myspell-gl/myspell-gl-20180710.ebuild b/app-dicts/myspell-gl/myspell-gl-20180710.ebuild new file mode 100644 index 000000000000..1d5e545c3378 --- /dev/null +++ b/app-dicts/myspell-gl/myspell-gl-20180710.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "gl_ES.aff" + "gl_ES.dic" +) + +MYSPELL_HYPH=( + "hyph_gl_ES.dic" +) + +MYSPELL_THES=( + "thes_gl_ES.dat" + "thes_gl_ES.idx" +) + +inherit myspell-r2 + +DESCRIPTION="Galician dictionaries for myspell/hunspell" +LICENSE="GPL-2 LGPL-2.1" +HOMEPAGE="https://extensions.libreoffice.org/en/extensions/show/corrector-ortografico-para-galego" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/corrector-18-07-para-galego.oxt -> ${P}.oxt" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + +DOCS=( changelog.txt package-description.txt readme.txt readme-gl.txt readme_hyph-gl.txt readme_th_gl.txt ) + +src_prepare() { + default + # Naming correctly + mv gl.aff gl_ES.aff || die + mv gl.dic gl_ES.dic || die + mv hyph_gl.dic hyph_gl_ES.dic || die + mv thesaurus_gl.dat thes_gl_ES.dat || die + mv thesaurus_gl.idx thes_gl_ES.idx || die +} |