diff options
author | Ulrich Müller <ulm@gentoo.org> | 2009-02-11 17:06:59 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2009-02-11 17:06:59 +0000 |
commit | f94ace56b9c6f410c52170295102f0541a582114 (patch) | |
tree | d125d19824bfec824b1468b7bbdfd636f5dd9c88 | |
parent | ppc stable, bug #245572 (diff) | |
download | gentoo-2-f94ace56b9c6f410c52170295102f0541a582114.tar.gz gentoo-2-f94ace56b9c6f410c52170295102f0541a582114.tar.bz2 gentoo-2-f94ace56b9c6f410c52170295102f0541a582114.zip |
Change licence info and add a patch.
(Portage version: 2.2_rc23/cvs/Linux i686)
-rw-r--r-- | app-dicts/ispell-de-alt/ispell-de-alt-2.ebuild | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/app-dicts/ispell-de-alt/ispell-de-alt-2.ebuild b/app-dicts/ispell-de-alt/ispell-de-alt-2.ebuild index 24f74f496129..f0fe7e435489 100644 --- a/app-dicts/ispell-de-alt/ispell-de-alt-2.ebuild +++ b/app-dicts/ispell-de-alt/ispell-de-alt-2.ebuild @@ -1,15 +1,16 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-de-alt/ispell-de-alt-2.ebuild,v 1.1 2009/02/11 14:50:45 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-de-alt/ispell-de-alt-2.ebuild,v 1.2 2009/02/11 17:06:59 ulm Exp $ -inherit multilib +inherit eutils multilib -MY_P="hk${PV}-deutsch" DESCRIPTION="German dictionary (classic orthography) for ispell" HOMEPAGE="http://www.lasr.cs.ucla.edu/geoff/ispell-dictionaries.html" -SRC_URI="ftp://ftp.informatik.uni-kiel.de/pub/kiel/dicts/${MY_P}.tar.gz" +SRC_URI="ftp://ftp.informatik.uni-kiel.de/pub/kiel/dicts/hk${PV}-deutsch.tar.gz + http://www.j3e.de/ispell/hk2/hkgerman_2-patch-bj1.diff.gz" -LICENSE="as-is" +# GPL according to <http://bugs.debian.org/131124#25> +LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" @@ -19,8 +20,13 @@ RDEPEND="${DEPEND}" S="${WORKDIR}" -src_install () { +src_unpack() { + unpack ${A} + epatch hkgerman_2-patch-bj1.diff +} + +src_install() { insinto /usr/$(get_libdir)/ispell doins deutsch.aff deutsch.hash || die "doins failed" - dodoc ANNOUNCE Changes Contributors README + dodoc ANNOUNCE Changes Contributors README* } |