diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-08-11 19:41:24 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-08-11 19:41:24 +0000 |
commit | de8d557ffd06b3b6f61371413659cf36c91ca20d (patch) | |
tree | 67e324983e48a8f7392feff0fde8cf62f3e57375 /eclass | |
parent | simplify multilib check (diff) | |
download | historical-de8d557ffd06b3b6f61371413659cf36c91ca20d.tar.gz historical-de8d557ffd06b3b6f61371413659cf36c91ca20d.tar.bz2 historical-de8d557ffd06b3b6f61371413659cf36c91ca20d.zip |
disable moznoplaintext #59971, enable wallet extension for tb #60060
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mozilla.eclass | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/eclass/mozilla.eclass b/eclass/mozilla.eclass index 13e0c7e8a17b..66944ff252fa 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.10 2004/08/09 15:43:54 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozilla.eclass,v 1.11 2004/08/11 19:41:24 agriffis Exp $ ECLASS=mozilla INHERITED="$INHERITED $ECLASS" @@ -10,8 +10,8 @@ IUSE="java gnome gtk2 ldap debug xinerama xprint" IUSE="${IUSE} moznoxft" [[ ${PN} == mozilla || ${PN} == mozilla-firefox ]] && \ IUSE="${IUSE} mozdevelop mozxmlterm" -[[ ${PN} == mozilla || ${PN} == mozilla-thunderbird ]] && \ - IUSE="${IUSE} mozplaintext" +#[[ ${PN} == mozilla || ${PN} == mozilla-thunderbird ]] && \ +# IUSE="${IUSE} mozplaintext" [[ ${PN} == mozilla ]] && \ IUSE="${IUSE} mozsvg" @@ -233,12 +233,14 @@ mozilla_conf() { fi # Some mailer-only flags - if ${MOZ} || ${TB}; then - if use mozplaintext; then - mozilla_annotate "+mozplaintext" \ - --enable-plaintext-editor-only - fi - else + # (This doesn't work for moz-1.7.2 or tb-0.7.3 #59971) +# if ${MOZ} || ${TB} && use mozplaintext; then +# mozilla_annotate "+mozplaintext" \ +# --enable-plaintext-editor-only +# fi + + # Some firefox-only flags + if ${FF}; then mozilla_annotate "n/a on ${PN}" \ --disable-mailnews fi @@ -283,7 +285,7 @@ mozilla_conf() { use mozdevelop && myext="${myext},venkman" use gnome && myext="${myext},gnomevfs" else - myext="pref,spellcheck,universalchardet" + myext="pref,spellcheck,universalchardet,wallet" fi myconf="${myconf} --enable-extensions=${myext}" |