| 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 or later |
2 | # Distributed under the terms of the GNU General Public License v2 |
|
|
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.22 2004/02/17 07:26:58 mr_bones_ 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.6 2002/10/18 10:42:01 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 |
| 11 | INHERITED="${INHERITED} ${ECLASS}" |
12 | INHERITED="${INHERITED} ${ECLASS}" |
| 12 | |
13 | |
| 13 | EXPORT_FUNCTIONS src_compile src_install |
14 | EXPORT_FUNCTIONS src_compile src_install |
| 14 | |
15 | |
| 15 | MY_P=${PN}-${PV%.*}-${PV#*.*.} |
16 | #MY_P=${PN}-${PV%.*}-${PV#*.*.} |
|
|
17 | MY_P=${P%.*}-${PV##*.} |
|
|
18 | SPELLANG=${PN/aspell-/} |
| 16 | S=${WORKDIR}/${MY_P} |
19 | S=${WORKDIR}/${MY_P} |
| 17 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
20 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
| 18 | HOMEPAGE="http://www.gnu.org/projects/aspell/index.html" |
21 | HOMEPAGE="http://aspell.net" |
| 19 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/${MY_P}.tar.bz2" |
22 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
| 20 | |
23 | |
| 21 | DEPEND=">=app-text/aspell-0.50" |
24 | RDEPEND=">=app-text/aspell-0.50" |
| 22 | |
25 | |
| 23 | SLOT="0" |
26 | SLOT="0" |
| 24 | KEYWORDS="x86 ppc sparc sparc64" |
27 | KEYWORDS="x86 ppc sparc alpha mips hppa amd64 ia64" |
|
|
28 | PROVIDE="virtual/aspell-dict" |
|
|
29 | |
| 25 | |
30 | |
| 26 | aspell-dict_src_compile() { |
31 | aspell-dict_src_compile() { |
| 27 | ./configure || die |
32 | ./configure || die |
| 28 | emake || die |
33 | emake || die |
| 29 | } |
34 | } |
| 30 | |
35 | |
| 31 | aspell-dict_src_install() { |
36 | aspell-dict_src_install() { |
| 32 | |
37 | |
| 33 | make DESTDIR=${D} install || die |
38 | make DESTDIR=${D} install || die |
| 34 | |
39 | |
| 35 | dodoc Copyright README info |
40 | for doc in Copyright README info; do |
|
|
41 | [ -s "$doc" ] && dodoc $doc |
|
|
42 | done |
| 36 | } |
43 | } |