diff options
author | Anders Rune Jensen <arj@gentoo.org> | 2005-10-07 23:22:29 +0000 |
---|---|---|
committer | Anders Rune Jensen <arj@gentoo.org> | 2005-10-07 23:22:29 +0000 |
commit | 868b85dd427fc84e43eaf2fcd540c0b824b11662 (patch) | |
tree | 3f5b9478d1f3f41f4b289816b2a422917138ce0a /eclass | |
parent | make multilib-strict happy (diff) | |
download | historical-868b85dd427fc84e43eaf2fcd540c0b824b11662.tar.gz historical-868b85dd427fc84e43eaf2fcd540c0b824b11662.tar.bz2 historical-868b85dd427fc84e43eaf2fcd540c0b824b11662.zip |
fix #108112
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/aspell-dict.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/aspell-dict.eclass b/eclass/aspell-dict.eclass index 275ac74be421..6624a1f365d6 100644 --- a/eclass/aspell-dict.eclass +++ b/eclass/aspell-dict.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.34 2005/07/11 15:08:06 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.35 2005/10/07 23:22:29 arj Exp $ # # Author: Seemant Kulleen <seemant@gentoo.org> # @@ -26,10 +26,12 @@ SLOT="0" if [ x${ASPOSTFIX} = x6 ] ; then RDEPEND=">=app-text/aspell-0.60 sys-apps/which" + DEPEND="${RDEPEND}" KEYWORDS="~x86 ~ppc ~sparc ~amd64" else RDEPEND=">=app-text/aspell-0.50 sys-apps/which" + DEPEND="${RDEPEND}" KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64" fi |