| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2006 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.16 2003/07/18 20:11:22 tester Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.37 2006/06/05 03:27:20 vapier 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 |
| 9 | # aspell-0.50 |
9 | # aspell-0.50. Support for aspell-0.60 has been added by Sergey Ulanov. |
| 10 | |
10 | |
| 11 | ECLASS=aspell-dict |
|
|
| 12 | INHERITED="${INHERITED} ${ECLASS}" |
|
|
| 13 | |
11 | |
| 14 | EXPORT_FUNCTIONS src_compile src_install |
12 | EXPORT_FUNCTIONS src_compile src_install |
| 15 | |
13 | |
| 16 | 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-/} |
17 | SPELLANG=${PN/aspell-/} |
| 18 | S=${WORKDIR}/${MY_P} |
18 | S=${WORKDIR}/${MY_P} |
| 19 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
19 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
| 20 | HOMEPAGE="http://aspell.net" |
20 | HOMEPAGE="http://aspell.net" |
| 21 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
21 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
| 22 | |
22 | |
| 23 | DEPEND=">=app-text/aspell-0.50" |
23 | IUSE="" |
| 24 | RDEPEND="$DEPEND" |
24 | SLOT="0" |
| 25 | |
25 | |
| 26 | SLOT="0" |
26 | if [ x${ASPOSTFIX} = x6 ] ; then |
| 27 | KEYWORDS="x86 ppc sparc alpha mips hppa arm amd64" |
27 | RDEPEND=">=app-text/aspell-0.60" |
|
|
28 | DEPEND="${RDEPEND}" |
|
|
29 | KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" |
|
|
30 | else |
|
|
31 | RDEPEND=">=app-text/aspell-0.50" |
|
|
32 | DEPEND="${RDEPEND}" |
|
|
33 | KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86" |
|
|
34 | fi |
|
|
35 | |
| 28 | PROVIDE="virtual/aspell-dict" |
36 | PROVIDE="virtual/aspell-dict" |
| 29 | |
|
|
| 30 | |
37 | |
| 31 | aspell-dict_src_compile() { |
38 | aspell-dict_src_compile() { |
| 32 | ./configure || die |
39 | ./configure || die |
| 33 | emake || die |
40 | emake || die |
| 34 | } |
41 | } |
| 35 | |
42 | |
| 36 | aspell-dict_src_install() { |
43 | aspell-dict_src_install() { |
|
|
44 | make DESTDIR="${D}" install || die |
| 37 | |
45 | |
| 38 | make DESTDIR=${D} install || die |
46 | for doc in README info ; do |
| 39 | |
47 | [ -s "$doc" ] && dodoc $doc |
| 40 | dodoc Copyright README info |
48 | done |
| 41 | } |
49 | } |