| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
| 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.10 2003/02/16 04:26:21 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.12 2003/04/22 22:22:10 seemant 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 |
| … | |
… | |
| 20 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/${MY_P}.tar.bz2" |
20 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/${MY_P}.tar.bz2" |
| 21 | |
21 | |
| 22 | DEPEND=">=app-text/aspell-0.50" |
22 | DEPEND=">=app-text/aspell-0.50" |
| 23 | |
23 | |
| 24 | SLOT="0" |
24 | SLOT="0" |
| 25 | KEYWORDS="x86 ppc sparc ~alpha ~mips ~hppa" |
25 | KEYWORDS="x86 ppc sparc alpha mips hppa arm" |
|
|
26 | PROVIDE="virtual/aspell-dict" |
|
|
27 | |
| 26 | |
28 | |
| 27 | aspell-dict_src_compile() { |
29 | aspell-dict_src_compile() { |
| 28 | ./configure || die |
30 | ./configure || die |
| 29 | emake || die |
31 | emake || die |
| 30 | } |
32 | } |