diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-09-28 21:29:17 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-09-28 21:29:17 +0000 |
commit | 99a1f1ad038050be1b6cd3f8fa4c767694dcfdcc (patch) | |
tree | 1930ff70547f9f4406f1596b6fdd2f47259db3e2 /eclass | |
parent | Add missing metadata.xml, set myself as maintainer. (diff) | |
download | historical-99a1f1ad038050be1b6cd3f8fa4c767694dcfdcc.tar.gz historical-99a1f1ad038050be1b6cd3f8fa4c767694dcfdcc.tar.bz2 historical-99a1f1ad038050be1b6cd3f8fa4c767694dcfdcc.zip |
don't use typeaheadfind for firefox >= 1.0PR. another thing that would be fixed by changing to mozconfig instead of ./configure.. :-( #64196
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mozilla.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/mozilla.eclass b/eclass/mozilla.eclass index c469d19aec08..f2469c163036 100644 --- a/eclass/mozilla.eclass +++ b/eclass/mozilla.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/mozilla.eclass,v 1.15 2004/09/27 23:45:38 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozilla.eclass,v 1.16 2004/09/28 21:29:17 agriffis Exp $ ECLASS=mozilla INHERITED="$INHERITED $ECLASS" @@ -283,7 +283,9 @@ mozilla_conf() { use mozxmlterm && myext="${myext},xmlterm" elif ${FF}; then # note that help is broken, and irc doesn't work - myext="cookie,inspector,negotiateauth,pref,transformiix,typeaheadfind,universalchardet,webservices,xmlextras,xml-rpc" + # also typeaheadfind applies only to versions prior to 1.0PR #64196 + myext="cookie,inspector,negotiateauth,pref,transformiix,universalchardet,webservices,xmlextras,xml-rpc" + [[ ${PV} < 1.0 ]] && myext="${myext},typeaheadfind" use mozdevelop && myext="${myext},venkman" use gnome && myext="${myext},gnomevfs" else |