| 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.2 2002/08/16 01:34:43 seemant Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.41 2009/01/10 16:16:19 pva 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 | if [ -z ${MY_P} ] |
|
|
| 16 | then |
|
|
| 17 | 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-/} |
|
|
32 | S="${WORKDIR}/${MY_P}" |
|
|
33 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
|
|
34 | HOMEPAGE="http://aspell.net" |
|
|
35 | SRC_URI="mirror://gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2" |
|
|
36 | |
|
|
37 | IUSE="" |
|
|
38 | SLOT="0" |
|
|
39 | |
|
|
40 | if [ x${ASPOSTFIX} = x6 ] ; then |
|
|
41 | RDEPEND=">=app-text/aspell-0.60" |
|
|
42 | DEPEND="${RDEPEND}" |
|
|
43 | else |
|
|
44 | RDEPEND=">=app-text/aspell-0.50" |
|
|
45 | DEPEND="${RDEPEND}" |
| 18 | fi |
46 | 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 | |
47 | |
| 24 | DEPEND="=app-text/aspell-0.50*" |
48 | PROVIDE="virtual/aspell-dict" |
| 25 | |
49 | |
| 26 | SLOT="0" |
50 | # @FUNCTION: aspell-dict_src_compile |
| 27 | LICENSE="as-is" |
51 | # @DESCRIPTION: |
| 28 | KEYWORDS="x86" |
52 | # The aspell-dict src_compile function which is exported. |
| 29 | |
|
|
| 30 | aspell-dict_src_compile() { |
53 | aspell-dict_src_compile() { |
| 31 | ./configure || die |
54 | ./configure || die |
| 32 | emake || die |
55 | emake || die |
| 33 | } |
56 | } |
| 34 | |
57 | |
|
|
58 | # @FUNCTION: aspell-dict_src_install |
|
|
59 | # @DESCRIPTION: |
|
|
60 | # The aspell-dict src_install function which is exported. |
| 35 | aspell-dict_src_install() { |
61 | aspell-dict_src_install() { |
|
|
62 | make DESTDIR="${D}" install || die |
| 36 | |
63 | |
| 37 | make \ |
64 | for doc in README info ; do |
| 38 | DESTDIR=${D} \ |
65 | [ -s "$doc" ] && dodoc $doc |
| 39 | install || die |
66 | done |
| 40 | |
|
|
| 41 | dodoc Copyright README info |
|
|
| 42 | } |
67 | } |