| 1 | # Copyright 1999-2002 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.39 2006/12/01 01:54:29 kevquinn 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.9 2003/02/12 13:33:41 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 | 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-/} |
| 16 | S=${WORKDIR}/${MY_P} |
18 | S=${WORKDIR}/${MY_P} |
| 17 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
19 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
| 18 | HOMEPAGE="http://www.gnu.org/projects/aspell/index.html" |
20 | HOMEPAGE="http://aspell.net" |
| 19 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/${MY_P}.tar.bz2" |
21 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
| 20 | |
22 | |
| 21 | DEPEND=">=app-text/aspell-0.50" |
23 | IUSE="" |
|
|
24 | SLOT="0" |
| 22 | |
25 | |
| 23 | SLOT="0" |
26 | if [ x${ASPOSTFIX} = x6 ] ; then |
| 24 | KEYWORDS="x86 ppc sparc ~alpha ~mips ~hppa" |
27 | RDEPEND=">=app-text/aspell-0.60" |
|
|
28 | DEPEND="${RDEPEND}" |
|
|
29 | else |
|
|
30 | RDEPEND=">=app-text/aspell-0.50" |
|
|
31 | DEPEND="${RDEPEND}" |
|
|
32 | fi |
|
|
33 | |
|
|
34 | PROVIDE="virtual/aspell-dict" |
| 25 | |
35 | |
| 26 | aspell-dict_src_compile() { |
36 | aspell-dict_src_compile() { |
| 27 | ./configure || die |
37 | ./configure || die |
| 28 | emake || die |
38 | emake || die |
| 29 | } |
39 | } |
| 30 | |
40 | |
| 31 | aspell-dict_src_install() { |
41 | aspell-dict_src_install() { |
|
|
42 | make DESTDIR="${D}" install || die |
| 32 | |
43 | |
| 33 | make DESTDIR=${D} install || die |
44 | for doc in README info ; do |
| 34 | |
45 | [ -s "$doc" ] && dodoc $doc |
| 35 | dodoc Copyright README info |
46 | done |
| 36 | } |
47 | } |