forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-dicts/myspell-de_1901: Version bump.
Package-Manager: portage-2.2.28
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST dict-de_de-1901_oldspell_2012-09-29.oxt 4807281 SHA256 252d8a411446dc8a1bc971fbbef0610a88203cdc910a949a6292c60188c02eb0 SHA512 15afe6157c6a1fbd723610440f98e823217d91fd0accf54975797ca20b3f47d6beb14c2ce118a44d17815c05e6dab923ea1ec3759237c6c4758344d805776cde WHIRLPOOL 39703e5c2b0ca8bf619d512efc40eb6151d9f2902be89497597f82fa1330e088fe0098b0fcda5b895c22e9917f3c1847d9ed5f86d4e4c1c511f102764170ce20 | ||
DIST dict-de_de-1901_oldspell_2016-04-03.oxt 8197279 SHA256 4c59cb201c794186d43a638a18ed718a0502b70f4c4a84eaf2c7f07d141ac4a2 SHA512 af6a353e52505895e4084378d91578956452d7db402a14073e6b2387d7b5377bcf652414bf90e113d976f24e082adf138ba138d54fa321c55bcb2c4d93c83cdc WHIRLPOOL cc44d97d12571d05bb98aa1e4fa9f746b20cd1a521d56ab91eb2b9eb78ff939c2469ff94816993905a3c0f71644b405b25ce2a83c9288144979a00a7535a105b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
MYSPELL_DICT=( | ||
"de_DE_1901.aff" | ||
"de_DE_1901.dic" | ||
) | ||
|
||
MYSPELL_HYPH=( | ||
"hyph_de_DE_1901.dic" | ||
) | ||
|
||
MYSPELL_THES=( | ||
) | ||
|
||
inherit myspell-r2 | ||
|
||
DESCRIPTION="German (traditional orthography) dictionaries for myspell/hunspell" | ||
HOMEPAGE="http://www.j3e.de/myspell/ | ||
http://extensions.libreoffice.org/extension-center/german-de-de-1901-old-spelling-dictionaries" | ||
#SRC_URI="http://extensions.libreoffice.org/extension-center/german-de-de-1901-old-spelling-dictionaries/pscreleasefolder.2011-11-04.1209635399/${PV:0:4}.${PV:4:2}.${PV:6:2}/dict-de_de-1901_oldspell_${PV:0:4}-${PV:4:2}-${PV:6:2}.oxt" | ||
SRC_URI="mirror://sourceforge/project/aoo-extensions/1057/8/dict-de_de-1901_oldspell_${PV:0:4}-${PV:4:2}-${PV:6:2}.oxt" | ||
|
||
LICENSE="|| ( GPL-2 GPL-3 )" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" | ||
|
||
src_prepare() { | ||
default | ||
# Nicely rename; http://www.iana.org/assignments/language-subtag-registry | ||
mv de_DE_OLDSPELL.aff de_DE_1901.aff || die | ||
mv de_DE_OLDSPELL.dic de_DE_1901.dic || die | ||
mv hyph_de_DE_OLDSPELL.dic hyph_de_DE_1901.dic || die | ||
# Remove thesaurus for new spelling to avoid installing its readme file | ||
rm th_de_DE_v2* || die | ||
} |