blob: fd90c3fdcebeb34fd31ca8117bae2c6afde930e7 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-it/ispell-it-2001.ebuild,v 1.10 2005/01/01 12:54:45 eradicator Exp $
DESCRIPTION="Loris Palmerini - Italian dictionary for ispell"
HOMEPAGE="http://members.xoom.virgilio.it/trasforma/ispell/"
SRC_URI="http://members.xoom.virgilio.it/trasforma/ispell/${PN}${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="ppc x86 sparc alpha mips hppa"
DEPEND="app-text/ispell"
S=${WORKDIR}/${PN}
src_compile() {
make || die
}
src_install () {
insinto /usr/lib/ispell
doins italian.hash italian.aff
dodoc collab.txt AUTHORS CAMBI CHANGES DA-FARE.txt FUSIONE.txt
}
|