| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.30 2004/10/03 22:13:56 arj Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.36 2006/05/08 20:44:36 flameeyes Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # The aspell-dict eclass is designed to streamline the construction of |
7 | # The aspell-dict eclass is designed to streamline the construction of |
| 8 | # ebuilds for the new aspell dictionaries (from gnu.org) which support |
8 | # ebuilds for the new aspell dictionaries (from gnu.org) which support |
| 9 | # aspell-0.50. Support for aspell-0.60 has been added by Sergey Ulanov. |
9 | # aspell-0.50. Support for aspell-0.60 has been added by Sergey Ulanov. |
| 10 | |
10 | |
| 11 | ECLASS=aspell-dict |
|
|
| 12 | INHERITED="${INHERITED} ${ECLASS}" |
|
|
| 13 | |
11 | |
| 14 | EXPORT_FUNCTIONS src_compile src_install |
12 | EXPORT_FUNCTIONS src_compile src_install |
| 15 | |
13 | |
| 16 | #MY_P=${PN}-${PV%.*}-${PV#*.*.} |
14 | #MY_P=${PN}-${PV%.*}-${PV#*.*.} |
| 17 | MY_P=${P%.*}-${PV##*.} |
15 | MY_P=${P%.*}-${PV##*.} |
| … | |
… | |
| 22 | HOMEPAGE="http://aspell.net" |
20 | HOMEPAGE="http://aspell.net" |
| 23 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
21 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
| 24 | |
22 | |
| 25 | IUSE="" |
23 | IUSE="" |
| 26 | SLOT="0" |
24 | SLOT="0" |
| 27 | KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64" |
|
|
| 28 | |
25 | |
| 29 | if [ x${ASPOSTFIX} = x6 ] ; then |
26 | if [ x${ASPOSTFIX} = x6 ] ; then |
| 30 | RDEPEND=">=app-text/aspell-0.60 |
27 | RDEPEND=">=app-text/aspell-0.60" |
| 31 | sys-apps/which" |
28 | DEPEND="${RDEPEND}" |
|
|
29 | KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~x86-fbsd" |
| 32 | else |
30 | else |
| 33 | RDEPEND=">=app-text/aspell-0.50 |
31 | RDEPEND=">=app-text/aspell-0.50" |
| 34 | sys-apps/which" |
32 | DEPEND="${RDEPEND}" |
|
|
33 | KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64" |
| 35 | fi |
34 | fi |
| 36 | |
35 | |
| 37 | PROVIDE="virtual/aspell-dict" |
36 | PROVIDE="virtual/aspell-dict" |
| 38 | |
37 | |
| 39 | aspell-dict_src_compile() { |
38 | aspell-dict_src_compile() { |