| 1 |
vapier |
1.10 |
# Copyright 1999-2003 Gentoo Technologies, Inc. |
| 2 |
vapier |
1.7 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
agriffis |
1.21 |
# $Header: /home/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.20 2003/10/19 11:50:36 lanius Exp $ |
| 4 |
vapier |
1.10 |
# |
| 5 |
seemant |
1.1 |
# Author: Seemant Kulleen <seemant@gentoo.org> |
| 6 |
vapier |
1.10 |
# |
| 7 |
seemant |
1.1 |
# 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 |
spyderous |
1.17 |
#MY_P=${PN}-${PV%.*}-${PV#*.*.} |
| 17 |
|
|
MY_P=${P%.*}-${PV##*.} |
| 18 |
seemant |
1.13 |
SPELLANG=${PN/aspell-/} |
| 19 |
seemant |
1.1 |
S=${WORKDIR}/${MY_P} |
| 20 |
seemant |
1.5 |
DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
| 21 |
foser |
1.14 |
HOMEPAGE="http://aspell.net" |
| 22 |
seemant |
1.13 |
SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
| 23 |
seemant |
1.1 |
|
| 24 |
seemant |
1.19 |
RDEPEND=">=app-text/aspell-0.50" |
| 25 |
seemant |
1.1 |
|
| 26 |
|
|
SLOT="0" |
| 27 |
agriffis |
1.21 |
KEYWORDS="x86 ppc sparc alpha mips hppa arm amd64 ia64" |
| 28 |
seemant |
1.12 |
PROVIDE="virtual/aspell-dict" |
| 29 |
|
|
|
| 30 |
seemant |
1.1 |
|
| 31 |
|
|
aspell-dict_src_compile() { |
| 32 |
|
|
./configure || die |
| 33 |
|
|
emake || die |
| 34 |
|
|
} |
| 35 |
|
|
|
| 36 |
|
|
aspell-dict_src_install() { |
| 37 |
|
|
|
| 38 |
seemant |
1.3 |
make DESTDIR=${D} install || die |
| 39 |
seemant |
1.1 |
|
| 40 |
lanius |
1.20 |
for doc in Copyright README info; do |
| 41 |
|
|
[ -s "$doc" ] && dodoc $doc |
| 42 |
|
|
done |
| 43 |
seemant |
1.1 |
} |