| 1 |
vapier |
1.26 |
# Copyright 1999-2004 Gentoo Foundation
|
| 2 |
vapier |
1.7 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
agriffis |
1.33 |
# $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.32 2005/07/06 20:20:03 agriffis 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 |
arj |
1.30 |
# aspell-0.50. Support for aspell-0.60 has been added by Sergey Ulanov.
|
| 10 |
seemant |
1.1 |
|
| 11 |
|
|
|
| 12 |
|
|
EXPORT_FUNCTIONS src_compile src_install
|
| 13 |
|
|
|
| 14 |
spyderous |
1.17 |
#MY_P=${PN}-${PV%.*}-${PV#*.*.}
|
| 15 |
|
|
MY_P=${P%.*}-${PV##*.}
|
| 16 |
arj |
1.30 |
MY_P=aspell${ASPOSTFIX}-${MY_P/aspell-/}
|
| 17 |
seemant |
1.13 |
SPELLANG=${PN/aspell-/}
|
| 18 |
seemant |
1.1 |
S=${WORKDIR}/${MY_P}
|
| 19 |
seemant |
1.5 |
DESCRIPTION="${ASPELL_LANG} language dictionary for aspell"
|
| 20 |
foser |
1.14 |
HOMEPAGE="http://aspell.net"
|
| 21 |
seemant |
1.13 |
SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2"
|
| 22 |
seemant |
1.1 |
|
| 23 |
arj |
1.28 |
IUSE=""
|
| 24 |
vapier |
1.25 |
SLOT="0"
|
| 25 |
|
|
|
| 26 |
arj |
1.30 |
if [ x${ASPOSTFIX} = x6 ] ; then
|
| 27 |
|
|
RDEPEND=">=app-text/aspell-0.60
|
| 28 |
|
|
sys-apps/which"
|
| 29 |
arj |
1.31 |
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
|
| 30 |
arj |
1.30 |
else
|
| 31 |
|
|
RDEPEND=">=app-text/aspell-0.50
|
| 32 |
|
|
sys-apps/which"
|
| 33 |
arj |
1.31 |
KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64"
|
| 34 |
arj |
1.30 |
fi
|
| 35 |
|
|
|
| 36 |
seemant |
1.12 |
PROVIDE="virtual/aspell-dict"
|
| 37 |
|
|
|
| 38 |
seemant |
1.1 |
aspell-dict_src_compile() {
|
| 39 |
arj |
1.30 |
echo `pwd`
|
| 40 |
seemant |
1.1 |
./configure || die
|
| 41 |
|
|
emake || die
|
| 42 |
|
|
}
|
| 43 |
|
|
|
| 44 |
|
|
aspell-dict_src_install() {
|
| 45 |
seemant |
1.3 |
make DESTDIR=${D} install || die
|
| 46 |
seemant |
1.1 |
|
| 47 |
vapier |
1.25 |
for doc in README info ; do
|
| 48 |
lanius |
1.20 |
[ -s "$doc" ] && dodoc $doc
|
| 49 |
|
|
done
|
| 50 |
seemant |
1.1 |
}
|