| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2011 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.20 2003/10/19 11:50:36 lanius Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.43 2011/08/22 04:46:31 vapier Exp $ |
| 4 | # |
4 | |
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # @ECLASS: aspell-dict.eclass |
| 6 | # |
6 | # @MAINTAINER: |
|
|
7 | # app-dicts@gentoo.org |
|
|
8 | # @AUTHOR: |
|
|
9 | # Original author: Seemant Kulleen |
|
|
10 | # @BLURB: An eclass to streamline the construction of ebuilds for new aspell dicts |
|
|
11 | # @DESCRIPTION: |
| 7 | # The aspell-dict eclass is designed to streamline the construction of |
12 | # The aspell-dict eclass is designed to streamline the construction of |
| 8 | # ebuilds for the new aspell dictionaries (from gnu.org) which support |
13 | # ebuilds for the new aspell dictionaries (from gnu.org) which support |
| 9 | # aspell-0.50 |
14 | # aspell-0.50. Support for aspell-0.60 has been added by Sergey Ulanov. |
| 10 | |
15 | |
| 11 | ECLASS=aspell-dict |
16 | # @ECLASS-VARIABLE: ASPELL_LANG |
| 12 | INHERITED="${INHERITED} ${ECLASS}" |
17 | # @REQUIRED |
|
|
18 | # @DESCRIPTION: |
|
|
19 | # Which language is the dictionary for? It's used for the DESCRIPTION of the |
|
|
20 | # package. |
|
|
21 | |
|
|
22 | # @ECLASS-VARIABLE: ASPOSTFIX |
|
|
23 | # @REQUIRED |
|
|
24 | # @DESCRIPTION: |
|
|
25 | # What major version of aspell is this dictionary for? |
| 13 | |
26 | |
| 14 | EXPORT_FUNCTIONS src_compile src_install |
27 | EXPORT_FUNCTIONS src_compile src_install |
| 15 | |
28 | |
| 16 | #MY_P=${PN}-${PV%.*}-${PV#*.*.} |
29 | #MY_P=${PN}-${PV%.*}-${PV#*.*.} |
| 17 | MY_P=${P%.*}-${PV##*.} |
30 | MY_P=${P%.*}-${PV##*.} |
|
|
31 | MY_P=aspell${ASPOSTFIX}-${MY_P/aspell-/} |
| 18 | SPELLANG=${PN/aspell-/} |
32 | SPELLANG=${PN/aspell-/} |
| 19 | S=${WORKDIR}/${MY_P} |
33 | S="${WORKDIR}/${MY_P}" |
| 20 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
34 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
| 21 | HOMEPAGE="http://aspell.net" |
35 | HOMEPAGE="http://aspell.net" |
| 22 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
36 | SRC_URI="mirror://gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
| 23 | |
37 | |
| 24 | RDEPEND=">=app-text/aspell-0.50" |
38 | IUSE="" |
|
|
39 | SLOT="0" |
| 25 | |
40 | |
| 26 | SLOT="0" |
41 | if [ x${ASPOSTFIX} = x6 ] ; then |
| 27 | KEYWORDS="x86 ppc sparc alpha mips hppa arm amd64" |
42 | RDEPEND=">=app-text/aspell-0.60" |
| 28 | PROVIDE="virtual/aspell-dict" |
43 | DEPEND="${RDEPEND}" |
|
|
44 | else |
|
|
45 | RDEPEND=">=app-text/aspell-0.50" |
|
|
46 | DEPEND="${RDEPEND}" |
|
|
47 | fi |
| 29 | |
48 | |
| 30 | |
49 | # @FUNCTION: aspell-dict_src_compile |
|
|
50 | # @DESCRIPTION: |
|
|
51 | # The aspell-dict src_compile function which is exported. |
| 31 | aspell-dict_src_compile() { |
52 | aspell-dict_src_compile() { |
| 32 | ./configure || die |
53 | ./configure || die |
| 33 | emake || die |
54 | emake || die |
| 34 | } |
55 | } |
| 35 | |
56 | |
|
|
57 | # @FUNCTION: aspell-dict_src_install |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # The aspell-dict src_install function which is exported. |
| 36 | aspell-dict_src_install() { |
60 | aspell-dict_src_install() { |
|
|
61 | make DESTDIR="${D}" install || die |
| 37 | |
62 | |
| 38 | make DESTDIR=${D} install || die |
|
|
| 39 | |
|
|
| 40 | for doc in Copyright README info; do |
63 | for doc in README info ; do |
| 41 | [ -s "$doc" ] && dodoc $doc |
64 | [ -s "$doc" ] && dodoc $doc |
| 42 | done |
65 | done |
| 43 | } |
66 | } |