diff options
author | 2005-10-07 23:22:29 +0000 | |
---|---|---|
committer | 2005-10-07 23:22:29 +0000 | |
commit | c76604eb3213463b53d0269baf809440f68f445a (patch) | |
tree | b53d548fa49aa28e8f86eabec1498626684f5e09 /eclass | |
parent | make multilib-strict happy (diff) | |
download | gentoo-2-c76604eb3213463b53d0269baf809440f68f445a.tar.gz gentoo-2-c76604eb3213463b53d0269baf809440f68f445a.tar.bz2 gentoo-2-c76604eb3213463b53d0269baf809440f68f445a.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 |