summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-03-28 21:48:25 +0000
committerUlrich Müller <ulm@gentoo.org>2009-03-28 21:48:25 +0000
commit9f294e9bc289e839c4300e3dc010528d243e75f5 (patch)
tree68cde6effc1705a93d6ea48728213580cb5d1ab6 /app-dicts/myspell-de-alt
parentwhitespace (diff)
downloadgentoo-2-9f294e9bc289e839c4300e3dc010528d243e75f5.tar.gz
gentoo-2-9f294e9bc289e839c4300e3dc010528d243e75f5.tar.bz2
gentoo-2-9f294e9bc289e839c4300e3dc010528d243e75f5.zip
Initial import, bug 258654.
(Portage version: 2.2_rc27/cvs/Linux i686)
Diffstat (limited to 'app-dicts/myspell-de-alt')
-rw-r--r--app-dicts/myspell-de-alt/ChangeLog10
-rw-r--r--app-dicts/myspell-de-alt/metadata.xml8
-rw-r--r--app-dicts/myspell-de-alt/myspell-de-alt-20060124.ebuild37
3 files changed, 55 insertions, 0 deletions
diff --git a/app-dicts/myspell-de-alt/ChangeLog b/app-dicts/myspell-de-alt/ChangeLog
new file mode 100644
index 000000000000..fa842ffbd99f
--- /dev/null
+++ b/app-dicts/myspell-de-alt/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for app-dicts/myspell-de-alt
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-de-alt/ChangeLog,v 1.1 2009/03/28 21:48:25 ulm Exp $
+
+*myspell-de-alt-20060124 (28 Mar 2009)
+
+ 28 Mar 2009; Ulrich Mueller <ulm@gentoo.org> +metadata.xml,
+ +myspell-de-alt-20060124.ebuild:
+ Initial import, bug 258654. Ebuild contributed by me.
+
diff --git a/app-dicts/myspell-de-alt/metadata.xml b/app-dicts/myspell-de-alt/metadata.xml
new file mode 100644
index 000000000000..57e23c5e937a
--- /dev/null
+++ b/app-dicts/myspell-de-alt/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>app-dicts</herd>
+<maintainer>
+ <email>ulm@gentoo.org</email>
+</maintainer>
+</pkgmetadata>
diff --git a/app-dicts/myspell-de-alt/myspell-de-alt-20060124.ebuild b/app-dicts/myspell-de-alt/myspell-de-alt-20060124.ebuild
new file mode 100644
index 000000000000..2bbb20377c1d
--- /dev/null
+++ b/app-dicts/myspell-de-alt/myspell-de-alt-20060124.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-de-alt/myspell-de-alt-20060124.ebuild,v 1.1 2009/03/28 21:48:25 ulm Exp $
+
+MYSPELL_SPELLING_DICTIONARIES=(
+"de,DE,de_DE_1901,German (traditional orthography),de_DE_1901.zip"
+)
+
+MYSPELL_HYPHENATION_DICTIONARIES=(
+"de,DE,hyph_de_DE_1901,German (traditional orthography),hyph_de_DE_1901.zip"
+)
+
+MYSPELL_THESAURUS_DICTIONARIES=(
+)
+
+inherit myspell
+
+DESCRIPTION="German dictionaries (traditional orthography) for myspell/hunspell"
+HOMEPAGE="http://www.j3e.de/myspell/"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# override myspell.eclass function, to avoid file collision
+# for "dictionary.lst.$(get_myspell_lang)" with app-dicts/myspell-de
+get_myspell_lang() {
+ echo de_1901
+}
+
+src_unpack() {
+ unpack ${A}
+ # see http://www.iana.org/assignments/language-subtag-registry
+ mv de_OLDSPELL.aff de_DE_1901.aff || die
+ mv de_OLDSPELL.dic de_DE_1901.dic || die
+ mv hyph_de_OLD.dic hyph_de_DE_1901.dic || die
+}