| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
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.19 2003/09/16 04:05:42 seemant Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.28 2004/07/30 21:31:52 arj 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 |
| … | |
… | |
| 19 | S=${WORKDIR}/${MY_P} |
19 | S=${WORKDIR}/${MY_P} |
| 20 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
20 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
| 21 | HOMEPAGE="http://aspell.net" |
21 | HOMEPAGE="http://aspell.net" |
| 22 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
22 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
| 23 | |
23 | |
| 24 | RDEPEND=">=app-text/aspell-0.50" |
24 | IUSE="" |
|
|
25 | SLOT="0" |
|
|
26 | KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64" |
| 25 | |
27 | |
| 26 | SLOT="0" |
28 | RDEPEND=">=app-text/aspell-0.50 |
| 27 | KEYWORDS="x86 ppc sparc alpha mips hppa arm amd64" |
29 | sys-apps/which" |
| 28 | PROVIDE="virtual/aspell-dict" |
30 | PROVIDE="virtual/aspell-dict" |
| 29 | |
|
|
| 30 | |
31 | |
| 31 | aspell-dict_src_compile() { |
32 | aspell-dict_src_compile() { |
| 32 | ./configure || die |
33 | ./configure || die |
| 33 | emake || die |
34 | emake || die |
| 34 | } |
35 | } |
| 35 | |
36 | |
| 36 | aspell-dict_src_install() { |
37 | aspell-dict_src_install() { |
| 37 | |
|
|
| 38 | make DESTDIR=${D} install || die |
38 | make DESTDIR=${D} install || die |
| 39 | |
39 | |
| 40 | dodoc Copyright README info |
40 | for doc in README info ; do |
|
|
41 | [ -s "$doc" ] && dodoc $doc |
|
|
42 | done |
| 41 | } |
43 | } |