summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2008-11-01 09:06:26 +0000
committerPeter Volkov <pva@gentoo.org>2008-11-01 09:06:26 +0000
commite804722e2481292a72026bc7f603f80b2952391b (patch)
tree8ab176c429fabb07921a4681a2e190e6bdac215d /app-dicts/ispell-de
parentSmall cleanups. (diff)
downloadhistorical-e804722e2481292a72026bc7f603f80b2952391b.tar.gz
historical-e804722e2481292a72026bc7f603f80b2952391b.tar.bz2
historical-e804722e2481292a72026bc7f603f80b2952391b.zip
Version bump.
Package-Manager: portage-2.2_rc12/cvs/Linux 2.6.26-openvz.git-35f41f1 i686
Diffstat (limited to 'app-dicts/ispell-de')
-rw-r--r--app-dicts/ispell-de/ChangeLog9
-rw-r--r--app-dicts/ispell-de/ispell-de-20071211.ebuild32
2 files changed, 39 insertions, 2 deletions
diff --git a/app-dicts/ispell-de/ChangeLog b/app-dicts/ispell-de/ChangeLog
index 037f32741cba..493789809429 100644
--- a/app-dicts/ispell-de/ChangeLog
+++ b/app-dicts/ispell-de/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-dicts/ispell-de
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-de/ChangeLog,v 1.10 2007/02/21 20:35:57 peper Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-de/ChangeLog,v 1.11 2008/11/01 09:06:26 pva Exp $
+
+*ispell-de-20071211 (01 Nov 2008)
+
+ 01 Nov 2008; Peter Volkov <pva@gentoo.org> +ispell-de-20071211.ebuild:
+ Version bump.
21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
Transition to Manifest2.
diff --git a/app-dicts/ispell-de/ispell-de-20071211.ebuild b/app-dicts/ispell-de/ispell-de-20071211.ebuild
new file mode 100644
index 000000000000..331881334bc4
--- /dev/null
+++ b/app-dicts/ispell-de/ispell-de-20071211.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-de/ispell-de-20071211.ebuild,v 1.1 2008/11/01 09:06:26 pva Exp $
+
+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="~ppc ~x86 ~sparc ~alpha ~mips ~hppa ~amd64"
+
+DEPEND="app-text/ispell"
+
+S=${WORKDIR}/${MY_P}
+
+src_compile() {
+ for lang in de_DE de_AT de_CH; do
+ make ispell/${lang}{.aff,.hash}
+ done
+}
+
+src_install () {
+ insinto /usr/lib/ispell
+ for lang in de_DE de_AT de_CH; do
+ doins ispell/${lang}{.aff,.hash} || die
+ done
+
+ dodoc Documentation/*
+}