| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 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.33 2005/07/06 20:23:20 agriffis 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.2 2002/08/16 01:34:43 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. Support for aspell-0.60 has been added by Sergey Ulanov. |
| 9 | |
10 | |
| 10 | ECLASS=aspell-dict |
|
|
| 11 | INHERITED="${INHERITED} ${ECLASS}" |
|
|
| 12 | |
11 | |
| 13 | EXPORT_FUNCTIONS src_compile src_install |
12 | EXPORT_FUNCTIONS src_compile src_install |
| 14 | |
13 | |
| 15 | if [ -z ${MY_P} ] |
|
|
| 16 | then |
|
|
| 17 | MY_P=${PN}-${PV%.*.*}-${PV#*.*.} |
14 | #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} |
|
|
19 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
|
|
20 | HOMEPAGE="http://aspell.net" |
|
|
21 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
|
|
22 | |
|
|
23 | IUSE="" |
|
|
24 | SLOT="0" |
|
|
25 | |
|
|
26 | if [ x${ASPOSTFIX} = x6 ] ; then |
|
|
27 | RDEPEND=">=app-text/aspell-0.60 |
|
|
28 | sys-apps/which" |
|
|
29 | KEYWORDS="~x86 ~ppc ~sparc ~amd64" |
|
|
30 | else |
|
|
31 | RDEPEND=">=app-text/aspell-0.50 |
|
|
32 | sys-apps/which" |
|
|
33 | KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64" |
| 18 | fi |
34 | fi |
| 19 | S=${WORKDIR}/${MY_P} |
|
|
| 20 | DESCRIPTION="${ASPELL_LANG} dictionary for aspell" |
|
|
| 21 | HOMEPAGE="http://www.gnu.org/projects/aspell/index.html" |
|
|
| 22 | SRC_URI="http://savannah.gnu.org/download/aspell/dicts/${MY_P}.tar.bz2" |
|
|
| 23 | |
35 | |
| 24 | DEPEND="=app-text/aspell-0.50*" |
36 | PROVIDE="virtual/aspell-dict" |
| 25 | |
|
|
| 26 | SLOT="0" |
|
|
| 27 | LICENSE="as-is" |
|
|
| 28 | KEYWORDS="x86" |
|
|
| 29 | |
37 | |
| 30 | aspell-dict_src_compile() { |
38 | aspell-dict_src_compile() { |
|
|
39 | echo `pwd` |
| 31 | ./configure || die |
40 | ./configure || die |
| 32 | emake || die |
41 | emake || die |
| 33 | } |
42 | } |
| 34 | |
43 | |
| 35 | aspell-dict_src_install() { |
44 | aspell-dict_src_install() { |
|
|
45 | make DESTDIR=${D} install || die |
| 36 | |
46 | |
| 37 | make \ |
47 | for doc in README info ; do |
| 38 | DESTDIR=${D} \ |
48 | [ -s "$doc" ] && dodoc $doc |
| 39 | install || die |
49 | done |
| 40 | |
|
|
| 41 | dodoc Copyright README info |
|
|
| 42 | } |
50 | } |