| 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.36 2006/05/08 20:44:36 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.37 2006/06/05 03:27:20 vapier 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 |
| … | |
… | |
| 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 | DEPEND="${RDEPEND}" |
28 | DEPEND="${RDEPEND}" |
| 29 | KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~x86-fbsd" |
29 | KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" |
| 30 | else |
30 | else |
| 31 | RDEPEND=">=app-text/aspell-0.50" |
31 | RDEPEND=">=app-text/aspell-0.50" |
| 32 | DEPEND="${RDEPEND}" |
32 | DEPEND="${RDEPEND}" |
| 33 | KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64" |
33 | KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86" |
| 34 | fi |
34 | fi |
| 35 | |
35 | |
| 36 | PROVIDE="virtual/aspell-dict" |
36 | PROVIDE="virtual/aspell-dict" |
| 37 | |
37 | |
| 38 | aspell-dict_src_compile() { |
38 | aspell-dict_src_compile() { |
| 39 | echo `pwd` |
|
|
| 40 | ./configure || die |
39 | ./configure || die |
| 41 | emake || die |
40 | emake || die |
| 42 | } |
41 | } |
| 43 | |
42 | |
| 44 | aspell-dict_src_install() { |
43 | aspell-dict_src_install() { |
| 45 | make DESTDIR=${D} install || die |
44 | make DESTDIR="${D}" install || die |
| 46 | |
45 | |
| 47 | for doc in README info ; do |
46 | for doc in README info ; do |
| 48 | [ -s "$doc" ] && dodoc $doc |
47 | [ -s "$doc" ] && dodoc $doc |
| 49 | done |
48 | done |
| 50 | } |
49 | } |