| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
| 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 or later |
| 3 | # Author: Seemant Kulleen <seemant@gentoo.org> |
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 $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.6 2002/10/18 10:42:01 seemant Exp $ |
| 5 | |
5 | |
| 6 | # The aspell-dict eclass is designed to streamline the construction of |
6 | # The aspell-dict eclass is designed to streamline the construction of |
| 7 | # ebuilds for the new aspell dictionaries (from gnu.org) which support |
7 | # ebuilds for the new aspell dictionaries (from gnu.org) which support |
| 8 | # aspell-0.50 |
8 | # aspell-0.50 |
| 9 | |
9 | |
| 10 | ECLASS=aspell-dict |
10 | ECLASS=aspell-dict |
| 11 | INHERITED="${INHERITED} ${ECLASS}" |
11 | INHERITED="${INHERITED} ${ECLASS}" |
| 12 | |
12 | |
| 13 | EXPORT_FUNCTIONS src_compile src_install |
13 | EXPORT_FUNCTIONS src_compile src_install |
| 14 | |
14 | |
| 15 | if [ -z ${MY_P} ] |
|
|
| 16 | then |
|
|
| 17 | MY_P=${PN}-${PV%.*.*}-${PV#*.*.} |
15 | MY_P=${PN}-${PV%.*}-${PV#*.*.} |
| 18 | fi |
|
|
| 19 | S=${WORKDIR}/${MY_P} |
16 | S=${WORKDIR}/${MY_P} |
| 20 | DESCRIPTION="${ASPELL_LANG} dictionary for aspell" |
17 | DESCRIPTION="${ASPELL_LANG} language dictionary for aspell" |
| 21 | HOMEPAGE="http://www.gnu.org/projects/aspell/index.html" |
18 | HOMEPAGE="http://www.gnu.org/projects/aspell/index.html" |
| 22 | SRC_URI="http://savannah.gnu.org/download/aspell/dicts/${MY_P}.tar.bz2" |
19 | SRC_URI="ftp://ftp.gnu.org/gnu/aspell/${MY_P}.tar.bz2" |
| 23 | |
20 | |
| 24 | DEPEND="=app-text/aspell-0.50*" |
21 | DEPEND=">=app-text/aspell-0.50" |
| 25 | |
22 | |
| 26 | SLOT="0" |
23 | SLOT="0" |
| 27 | LICENSE="as-is" |
24 | KEYWORDS="x86 ppc sparc sparc64" |
| 28 | KEYWORDS="x86" |
|
|
| 29 | |
25 | |
| 30 | aspell-dict_src_compile() { |
26 | aspell-dict_src_compile() { |
| 31 | ./configure || die |
27 | ./configure || die |
| 32 | emake || die |
28 | emake || die |
| 33 | } |
29 | } |
| 34 | |
30 | |
| 35 | aspell-dict_src_install() { |
31 | aspell-dict_src_install() { |
| 36 | |
32 | |
| 37 | make \ |
33 | make DESTDIR=${D} install || die |
| 38 | DESTDIR=${D} \ |
|
|
| 39 | install || die |
|
|
| 40 | |
34 | |
| 41 | dodoc Copyright README info |
35 | dodoc Copyright README info |
| 42 | } |
36 | } |