diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-06-05 03:27:20 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-06-05 03:27:20 +0000 |
commit | 9edce804c0ffa03c4430b215db25bec723172498 (patch) | |
tree | b1c9ada3f743c21bd10b36e145a904c094e4d6ae /eclass | |
parent | m68k love (diff) | |
download | historical-9edce804c0ffa03c4430b215db25bec723172498.tar.gz historical-9edce804c0ffa03c4430b215db25bec723172498.tar.bz2 historical-9edce804c0ffa03c4430b215db25bec723172498.zip |
touchups and more arch love
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/aspell-dict.eclass | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/eclass/aspell-dict.eclass b/eclass/aspell-dict.eclass index e99fcbc9a09d..c272227b7bce 100644 --- a/eclass/aspell-dict.eclass +++ b/eclass/aspell-dict.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.36 2006/05/08 20:44:36 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.37 2006/06/05 03:27:20 vapier Exp $ # # Author: Seemant Kulleen <seemant@gentoo.org> # @@ -26,23 +26,22 @@ SLOT="0" if [ x${ASPOSTFIX} = x6 ] ; then RDEPEND=">=app-text/aspell-0.60" DEPEND="${RDEPEND}" - KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~x86-fbsd" + KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" else RDEPEND=">=app-text/aspell-0.50" DEPEND="${RDEPEND}" - KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64" + KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86" fi PROVIDE="virtual/aspell-dict" aspell-dict_src_compile() { - echo `pwd` ./configure || die emake || die } aspell-dict_src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die for doc in README info ; do [ -s "$doc" ] && dodoc $doc |