diff options
author | 2006-10-16 21:34:33 +0000 | |
---|---|---|
committer | 2006-10-16 21:34:33 +0000 | |
commit | ece33ab397f5e6c8298630a36917e60a51addf36 (patch) | |
tree | ce340ba9a47194d69f49fe7b5959252e89f37f30 /www-client | |
parent | Added dependency to >=x11-libs/libmatchbox-1.1 as checked by the ./configure ... (diff) | |
download | gentoo-2-ece33ab397f5e6c8298630a36917e60a51addf36.tar.gz gentoo-2-ece33ab397f5e6c8298630a36917e60a51addf36.tar.bz2 gentoo-2-ece33ab397f5e6c8298630a36917e60a51addf36.zip |
bug #147107 thanks Nick Hofstede for the heads up on xform plugin support
(Portage version: 2.1.2_pre3-r2)
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/mozilla-firefox/ChangeLog | 6 | ||||
-rw-r--r-- | www-client/mozilla-firefox/mozilla-firefox-2.0_rc2.ebuild | 11 |
2 files changed, 13 insertions, 4 deletions
diff --git a/www-client/mozilla-firefox/ChangeLog b/www-client/mozilla-firefox/ChangeLog index ac5ca00bae5d..ffc0ac95c4bf 100644 --- a/www-client/mozilla-firefox/ChangeLog +++ b/www-client/mozilla-firefox/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-client/mozilla-firefox # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/ChangeLog,v 1.196 2006/10/16 21:15:16 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/ChangeLog,v 1.197 2006/10/16 21:34:33 genstef Exp $ + + 16 Oct 2006; Stefan Schweizer <genstef@gentoo.org> + mozilla-firefox-2.0_rc2.ebuild: + bug #147107 thanks Nick Hofstede for the heads up on xform plugin support 16 Oct 2006; Stefan Schweizer <genstef@gentoo.org> mozilla-firefox-2.0_rc2.ebuild: diff --git a/www-client/mozilla-firefox/mozilla-firefox-2.0_rc2.ebuild b/www-client/mozilla-firefox/mozilla-firefox-2.0_rc2.ebuild index 8c588e8c4408..4ffe172fcdac 100644 --- a/www-client/mozilla-firefox/mozilla-firefox-2.0_rc2.ebuild +++ b/www-client/mozilla-firefox/mozilla-firefox-2.0_rc2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/mozilla-firefox-2.0_rc2.ebuild,v 1.8 2006/10/16 21:15:16 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-firefox/mozilla-firefox-2.0_rc2.ebuild,v 1.9 2006/10/16 21:34:33 genstef Exp $ inherit flag-o-matic toolchain-funcs eutils mozconfig-2 mozilla-launcher makeedit multilib fdo-mime mozextension autotools @@ -16,7 +16,7 @@ HOMEPAGE="http://www.mozilla.org/projects/firefox/" KEYWORDS="~alpha ~amd64 ~sparc ~x86" SLOT="0" LICENSE="MPL-1.1 NPL-1.1" -IUSE="java mozdevelop branding" +IUSE="java mozdevelop branding xform" MOZ_URI="http://releases.mozilla.org/pub/mozilla.org/firefox/releases/${MY_PV}" SRC_URI="${MOZ_URI}/source/firefox-${MY_PV}-source.tar.bz2 @@ -115,12 +115,17 @@ src_compile() { mozconfig_config mozconfig_annotate '' --enable-application=browser - mozconfig_annotate '' --enable-extensions=default,typeaheadfind mozconfig_annotate '' --enable-image-encoder=all mozconfig_annotate '' --enable-canvas mozconfig_annotate '' --with-system-nspr mozconfig_annotate '' --with-system-nss + if use xform; then + mozconfig_annotate '' --enable-extensions=default,xforms,schema-validatalidation,typeaheadfind + else + mozconfig_annotate '' --enable-extensions=default,typeaheadfind + fi + if use branding; then mozconfig_annotate '' --enable-official-branding fi |