diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2014-07-04 01:13:36 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2014-07-04 01:13:36 +0000 |
commit | cbc52438f07da26f569c9dcd8a17b1e4cfb925eb (patch) | |
tree | 5fb4be1079a258fe21f3028fa017e4e009a00140 /app-dicts | |
parent | Backport patch to fix build with media-libs/jpeg-9 (bug 480182). (diff) | |
download | gentoo-2-cbc52438f07da26f569c9dcd8a17b1e4cfb925eb.tar.gz gentoo-2-cbc52438f07da26f569c9dcd8a17b1e4cfb925eb.tar.bz2 gentoo-2-cbc52438f07da26f569c9dcd8a17b1e4cfb925eb.zip |
Version bump.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-dicts')
-rw-r--r-- | app-dicts/myspell-de/ChangeLog | 7 | ||||
-rw-r--r-- | app-dicts/myspell-de/myspell-de-2013.12.06.ebuild | 55 |
2 files changed, 61 insertions, 1 deletions
diff --git a/app-dicts/myspell-de/ChangeLog b/app-dicts/myspell-de/ChangeLog index b0bec3811cd5..4092a7b7e30d 100644 --- a/app-dicts/myspell-de/ChangeLog +++ b/app-dicts/myspell-de/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-dicts/myspell-de # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-de/ChangeLog,v 1.37 2014/01/05 11:18:05 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-de/ChangeLog,v 1.38 2014/07/04 01:13:36 mrueg Exp $ + +*myspell-de-2013.12.06 (04 Jul 2014) + + 04 Jul 2014; Manuel Rüger <mrueg@gentoo.org> +myspell-de-2013.12.06.ebuild: + Version bump. 05 Jan 2014; Pacho Ramos <pacho@gentoo.org> metadata.xml: Cleanup due http://gentoo.2317880.n4.nabble.com/app-dicts-herd-is-empty- diff --git a/app-dicts/myspell-de/myspell-de-2013.12.06.ebuild b/app-dicts/myspell-de/myspell-de-2013.12.06.ebuild new file mode 100644 index 000000000000..28cf86bb1351 --- /dev/null +++ b/app-dicts/myspell-de/myspell-de-2013.12.06.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-de/myspell-de-2013.12.06.ebuild,v 1.1 2014/07/04 01:13:36 mrueg Exp $ + +EAPI=4 + +MYSPELL_DICT=( + "de_AT.aff" + "de_AT.dic" + "de_DE.aff" + "de_DE.dic" + "de_CH.aff" + "de_CH.dic" +) + +MYSPELL_HYPH=( + "hyph_de_AT.dic" + "hyph_de_DE.dic" + "hyph_de_CH.dic" +) + +MYSPELL_THES=( + "th_de_AT_v2.dat" + "th_de_AT_v2.idx" + "th_de_DE_v2.dat" + "th_de_DE_v2.idx" + "th_de_CH_v2.dat" + "th_de_CH_v2.idx" +) + +inherit myspell-r2 + +DESCRIPTION="German dictionaries for myspell/hunspell" +HOMEPAGE=" + http://extensions.libreoffice.org/extension-center/german-de-at-frami-dictionaries + http://extensions.libreoffice.org/extension-center/german-de-de-frami-dictionaries + http://extensions.libreoffice.org/extension-center/german-de-ch-frami-dictionaries +" +SRC_URI=" + http://extensions.libreoffice.org/extension-center/german-de-at-frami-dictionaries/pscreleasefolder.2011-11-05.7614737245/${PV}/dict-de_at-frami_${PV//./-}.oxt + http://extensions.libreoffice.org/extension-center/german-de-de-frami-dictionaries/releases/${PV}/dict-de_de-frami_${PV//./-}.oxt + http://extensions.libreoffice.org/extension-center/german-de-ch-frami-dictionaries/pscreleasefolder.2011-11-05.5296069116/${PV}/dict-de_ch-frami_${PV//./-}.oxt +" + +LICENSE="GPL-2 LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="" + +src_prepare() { + # rename the tarballs + for i in *_frami.*; do + mv "${i}" "${i/_frami}" || die + done +} |