| 1 | # Copyright 1999-2004 Gentoo Foundation |
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.33 2005/07/06 20:23:20 agriffis Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.39 2006/12/01 01:54:29 kevquinn Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
5 | # Author: Seemant Kulleen <seemant@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # The aspell-dict eclass is designed to streamline the construction of |
7 | # The aspell-dict eclass is designed to streamline the construction of |
| 8 | # ebuilds for the new aspell dictionaries (from gnu.org) which support |
8 | # ebuilds for the new aspell dictionaries (from gnu.org) which support |
| … | |
… | |
| 22 | |
22 | |
| 23 | IUSE="" |
23 | IUSE="" |
| 24 | SLOT="0" |
24 | SLOT="0" |
| 25 | |
25 | |
| 26 | if [ x${ASPOSTFIX} = x6 ] ; then |
26 | if [ x${ASPOSTFIX} = x6 ] ; then |
| 27 | RDEPEND=">=app-text/aspell-0.60 |
27 | RDEPEND=">=app-text/aspell-0.60" |
| 28 | sys-apps/which" |
28 | DEPEND="${RDEPEND}" |
| 29 | KEYWORDS="~x86 ~ppc ~sparc ~amd64" |
|
|
| 30 | else |
29 | else |
| 31 | RDEPEND=">=app-text/aspell-0.50 |
30 | RDEPEND=">=app-text/aspell-0.50" |
| 32 | sys-apps/which" |
31 | DEPEND="${RDEPEND}" |
| 33 | KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64" |
|
|
| 34 | fi |
32 | fi |
| 35 | |
33 | |
| 36 | PROVIDE="virtual/aspell-dict" |
34 | PROVIDE="virtual/aspell-dict" |
| 37 | |
35 | |
| 38 | aspell-dict_src_compile() { |
36 | aspell-dict_src_compile() { |
| 39 | echo `pwd` |
|
|
| 40 | ./configure || die |
37 | ./configure || die |
| 41 | emake || die |
38 | emake || die |
| 42 | } |
39 | } |
| 43 | |
40 | |
| 44 | aspell-dict_src_install() { |
41 | aspell-dict_src_install() { |
| 45 | make DESTDIR=${D} install || die |
42 | make DESTDIR="${D}" install || die |
| 46 | |
43 | |
| 47 | for doc in README info ; do |
44 | for doc in README info ; do |
| 48 | [ -s "$doc" ] && dodoc $doc |
45 | [ -s "$doc" ] && dodoc $doc |
| 49 | done |
46 | done |
| 50 | } |
47 | } |