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 | 735237e67b935c97f7a4a83d412ae7d4a65b56cf (patch) | |
tree | aa53573ab69bee7fa9aa3500791b646f9c89424c /eclass/aspell-dict.eclass | |
parent | m68k love (diff) | |
download | gentoo-2-735237e67b935c97f7a4a83d412ae7d4a65b56cf.tar.gz gentoo-2-735237e67b935c97f7a4a83d412ae7d4a65b56cf.tar.bz2 gentoo-2-735237e67b935c97f7a4a83d412ae7d4a65b56cf.zip |
touchups and more arch love
Diffstat (limited to 'eclass/aspell-dict.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 |