| 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.10 2003/02/16 04:26:21 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.27 2004/07/13 04:54:24 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 |
| … | |
… | |
| 11 | ECLASS=aspell-dict |
11 | ECLASS=aspell-dict |
| 12 | INHERITED="${INHERITED} ${ECLASS}" |
12 | INHERITED="${INHERITED} ${ECLASS}" |
| 13 | |
13 | |
| 14 | EXPORT_FUNCTIONS src_compile src_install |
14 | EXPORT_FUNCTIONS src_compile src_install |
| 15 | |
15 | |
| 16 | MY_P=${PN}-${PV%.*}-${PV#*.*.} |
16 | #MY_P=${PN}-${PV%.*}-${PV#*.*.} |
|
|
17 | MY_P=${P%.*}-${PV##*.} |
|
|
18 | SPELLANG=${PN/aspell-/} |
| 17 | S=${WORKDIR}/${MY_P} |
19 | S=${WORKDIR}/${MY_P} |
| 18 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
20 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
| 19 | HOMEPAGE="http://www.gnu.org/projects/aspell/index.html" |
21 | HOMEPAGE="http://aspell.net" |
| 20 | 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" |
| 21 | |
|
|
| 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 mips alpha arm hppa amd64 ia64" |
|
|
26 | |
|
|
27 | RDEPEND=">=app-text/aspell-0.50 |
|
|
28 | sys-apps/which" |
|
|
29 | PROVIDE="virtual/aspell-dict" |
| 26 | |
30 | |
| 27 | aspell-dict_src_compile() { |
31 | aspell-dict_src_compile() { |
| 28 | ./configure || die |
32 | ./configure || die |
| 29 | emake || die |
33 | emake || die |
| 30 | } |
34 | } |
| 31 | |
35 | |
| 32 | aspell-dict_src_install() { |
36 | aspell-dict_src_install() { |
| 33 | |
|
|
| 34 | make DESTDIR=${D} install || die |
37 | make DESTDIR=${D} install || die |
| 35 | |
38 | |
| 36 | dodoc Copyright README info |
39 | for doc in README info ; do |
|
|
40 | [ -s "$doc" ] && dodoc $doc |
|
|
41 | done |
| 37 | } |
42 | } |