| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2002 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 or later |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.1.1.1 2005/11/30 09:59:26 chriswhite Exp $ |
|
|
| 4 | # |
|
|
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
3 | # Author: Seemant Kulleen <seemant@gentoo.org> |
| 6 | # |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.6 2002/10/18 10:42:01 seemant Exp $ |
|
|
5 | |
| 7 | # The aspell-dict eclass is designed to streamline the construction of |
6 | # The aspell-dict eclass is designed to streamline the construction of |
| 8 | # ebuilds for the new aspell dictionaries (from gnu.org) which support |
7 | # ebuilds for the new aspell dictionaries (from gnu.org) which support |
| 9 | # aspell-0.50. Support for aspell-0.60 has been added by Sergey Ulanov. |
8 | # aspell-0.50 |
| 10 | |
9 | |
|
|
10 | ECLASS=aspell-dict |
|
|
11 | INHERITED="${INHERITED} ${ECLASS}" |
| 11 | |
12 | |
| 12 | EXPORT_FUNCTIONS src_compile src_install |
13 | EXPORT_FUNCTIONS src_compile src_install |
| 13 | |
14 | |
| 14 | #MY_P=${PN}-${PV%.*}-${PV#*.*.} |
15 | MY_P=${PN}-${PV%.*}-${PV#*.*.} |
| 15 | MY_P=${P%.*}-${PV##*.} |
|
|
| 16 | MY_P=aspell${ASPOSTFIX}-${MY_P/aspell-/} |
|
|
| 17 | SPELLANG=${PN/aspell-/} |
|
|
| 18 | S=${WORKDIR}/${MY_P} |
16 | S=${WORKDIR}/${MY_P} |
| 19 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
17 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
| 20 | HOMEPAGE="http://aspell.net" |
18 | HOMEPAGE="http://www.gnu.org/projects/aspell/index.html" |
| 21 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
19 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/${MY_P}.tar.bz2" |
| 22 | |
20 | |
| 23 | IUSE="" |
21 | DEPEND=">=app-text/aspell-0.50" |
|
|
22 | |
| 24 | SLOT="0" |
23 | SLOT="0" |
| 25 | |
|
|
| 26 | if [ x${ASPOSTFIX} = x6 ] ; then |
|
|
| 27 | RDEPEND=">=app-text/aspell-0.60 |
|
|
| 28 | sys-apps/which" |
|
|
| 29 | DEPEND="${RDEPEND}" |
|
|
| 30 | KEYWORDS="~x86 ~ppc ~sparc ~amd64" |
24 | KEYWORDS="x86 ppc sparc sparc64" |
| 31 | else |
|
|
| 32 | RDEPEND=">=app-text/aspell-0.50 |
|
|
| 33 | sys-apps/which" |
|
|
| 34 | DEPEND="${RDEPEND}" |
|
|
| 35 | KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64" |
|
|
| 36 | fi |
|
|
| 37 | |
|
|
| 38 | PROVIDE="virtual/aspell-dict" |
|
|
| 39 | |
25 | |
| 40 | aspell-dict_src_compile() { |
26 | aspell-dict_src_compile() { |
| 41 | echo `pwd` |
|
|
| 42 | ./configure || die |
27 | ./configure || die |
| 43 | emake || die |
28 | emake || die |
| 44 | } |
29 | } |
| 45 | |
30 | |
| 46 | aspell-dict_src_install() { |
31 | aspell-dict_src_install() { |
|
|
32 | |
| 47 | make DESTDIR=${D} install || die |
33 | make DESTDIR=${D} install || die |
| 48 | |
34 | |
| 49 | for doc in README info ; do |
35 | dodoc Copyright README info |
| 50 | [ -s "$doc" ] && dodoc $doc |
|
|
| 51 | done |
|
|
| 52 | } |
36 | } |