| 1 | # Copyright 1999-2002 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.11 2003/03/08 01:12:27 vladimir Exp $ |
|
|
4 | # |
| 3 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.9 2003/02/12 13:33:41 seemant Exp $ |
6 | # |
| 5 | |
|
|
| 6 | # The aspell-dict eclass is designed to streamline the construction of |
7 | # The aspell-dict eclass is designed to streamline the construction of |
| 7 | # ebuilds for the new aspell dictionaries (from gnu.org) which support |
8 | # ebuilds for the new aspell dictionaries (from gnu.org) which support |
| 8 | # aspell-0.50 |
9 | # aspell-0.50 |
| 9 | |
10 | |
| 10 | ECLASS=aspell-dict |
11 | ECLASS=aspell-dict |
| … | |
… | |
| 19 | 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" |
| 20 | |
21 | |
| 21 | DEPEND=">=app-text/aspell-0.50" |
22 | DEPEND=">=app-text/aspell-0.50" |
| 22 | |
23 | |
| 23 | SLOT="0" |
24 | SLOT="0" |
| 24 | KEYWORDS="x86 ppc sparc ~alpha ~mips ~hppa" |
25 | KEYWORDS="x86 ppc sparc alpha mips hppa arm" |
| 25 | |
26 | |
| 26 | aspell-dict_src_compile() { |
27 | aspell-dict_src_compile() { |
| 27 | ./configure || die |
28 | ./configure || die |
| 28 | emake || die |
29 | emake || die |
| 29 | } |
30 | } |