summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2004-09-28 21:29:17 +0000
committerAron Griffis <agriffis@gentoo.org>2004-09-28 21:29:17 +0000
commitb45aa6db1799dc0ca087ee1a336b95f803054aff (patch)
tree1aa8e3652fdc675438d850c57868502c1264177b /eclass/mozilla.eclass
parentAdd missing metadata.xml, set myself as maintainer. (Manifest recommit) (diff)
downloadgentoo-2-b45aa6db1799dc0ca087ee1a336b95f803054aff.tar.gz
gentoo-2-b45aa6db1799dc0ca087ee1a336b95f803054aff.tar.bz2
gentoo-2-b45aa6db1799dc0ca087ee1a336b95f803054aff.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/mozilla.eclass')
-rw-r--r--eclass/mozilla.eclass6
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