blob: e77fb73812d017981e97d140c08d0f9d714160bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-cs/ispell-cs-20040229.ebuild,v 1.6 2012/04/07 06:55:14 scarabeus Exp $
inherit multilib
MY_P=${PN/cs/czech}
DESCRIPTION="The Czech dictionary for ispell"
HOMEPAGE="ftp://ftp.tul.cz/pub/unix/ispell/"
SRC_URI="ftp://ftp.tul.cz/pub/unix/ispell/${MY_P}-${PV}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86"
DEPEND="dev-lang/perl
app-text/ispell"
S=${WORKDIR}/${MY_P}
src_compile() {
make all || die
}
src_install () {
insinto /usr/$(get_libdir)/ispell
doins czech.aff czech.hash || die
dodoc README
}
|