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