| 1 |
# Copyright 1999-2003 Gentoo Technologies, Inc. |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /home/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.15 2003/07/09 06:22:47 drobbins Exp $ |
| 4 |
# |
| 5 |
# Author: Seemant Kulleen <seemant@gentoo.org> |
| 6 |
# |
| 7 |
# The aspell-dict eclass is designed to streamline the construction of |
| 8 |
# ebuilds for the new aspell dictionaries (from gnu.org) which support |
| 9 |
# aspell-0.50 |
| 10 |
|
| 11 |
ECLASS=aspell-dict |
| 12 |
INHERITED="${INHERITED} ${ECLASS}" |
| 13 |
|
| 14 |
EXPORT_FUNCTIONS src_compile src_install |
| 15 |
|
| 16 |
MY_P=${PN}-${PV%.*}-${PV#*.*.} |
| 17 |
SPELLANG=${PN/aspell-/} |
| 18 |
S=${WORKDIR}/${MY_P} |
| 19 |
DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
| 20 |
HOMEPAGE="http://aspell.net" |
| 21 |
SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
| 22 |
|
| 23 |
DEPEND=">=app-text/aspell-0.50" |
| 24 |
RDEPEND="$DEPEND" |
| 25 |
|
| 26 |
SLOT="0" |
| 27 |
KEYWORDS="x86 ppc sparc alpha mips hppa arm amd64" |
| 28 |
PROVIDE="virtual/aspell-dict" |
| 29 |
|
| 30 |
|
| 31 |
aspell-dict_src_compile() { |
| 32 |
./configure || die |
| 33 |
emake || die |
| 34 |
} |
| 35 |
|
| 36 |
aspell-dict_src_install() { |
| 37 |
|
| 38 |
make DESTDIR=${D} install || die |
| 39 |
|
| 40 |
dodoc Copyright README info |
| 41 |
} |