diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2015-12-23 11:22:18 -0500 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2015-12-23 15:55:49 -0500 |
commit | fee93309cd45ab053182c9d5b59d0379d1eb95b7 (patch) | |
tree | 287051929c1bf6e7c6cad22fe337d5dd9daa1fe2 /www-client | |
parent | mail-client/thunderbird: clean up old/vulnerable versions (diff) | |
download | gentoo-fee93309cd45ab053182c9d5b59d0379d1eb95b7.tar.gz gentoo-fee93309cd45ab053182c9d5b59d0379d1eb95b7.tar.bz2 gentoo-fee93309cd45ab053182c9d5b59d0379d1eb95b7.zip |
mozilla packages: migrate arm neon/softfp/hardfp config fixes to the eclass
The firefox ebuild received fixes for various arm configurations (neon, hardfp/softfp)
but these fixes should also be applied to the other mozilla packages. This commit
removes them from firefox and adds them to mozconfig.
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/firefox/firefox-38.4.0.ebuild | 18 | ||||
-rw-r--r-- | www-client/firefox/firefox-38.5.0.ebuild | 18 | ||||
-rw-r--r-- | www-client/firefox/firefox-43.0.ebuild | 18 |
3 files changed, 3 insertions, 51 deletions
diff --git a/www-client/firefox/firefox-38.4.0.ebuild b/www-client/firefox/firefox-38.4.0.ebuild index 39fef48bc3de..bfe259582d30 100644 --- a/www-client/firefox/firefox-38.4.0.ebuild +++ b/www-client/firefox/firefox-38.4.0.ebuild @@ -42,7 +42,7 @@ KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux" SLOT="0" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="bindist egl hardened +minimal neon pgo selinux +gmp-autoupdate test" +IUSE="bindist egl hardened +minimal pgo selinux +gmp-autoupdate test" RESTRICT="!bindist? ( bindist )" # More URIs appended below... @@ -206,22 +206,6 @@ src_configure() { # Add full relro support for hardened use hardened && append-ldflags "-Wl,-z,relro,-z,now" - if use neon ; then - mozconfig_annotate '' --with-fpu=neon - mozconfig_annotate '' --with-thumb=yes - mozconfig_annotate '' --with-thumb-interwork=no - fi - - if [[ ${CHOST} == armv* ]] ; then - mozconfig_annotate '' --with-float-abi=hard - mozconfig_annotate '' --enable-skia - - if ! use system-libvpx ; then - sed -i -e "s|softfp|hard|" \ - "${S}"/media/libvpx/moz.build - fi - fi - use egl && mozconfig_annotate 'Enable EGL as GL provider' --with-gl-provider=EGL # Setup api key for location services diff --git a/www-client/firefox/firefox-38.5.0.ebuild b/www-client/firefox/firefox-38.5.0.ebuild index 038a181b18e9..48ff07d8baa5 100644 --- a/www-client/firefox/firefox-38.5.0.ebuild +++ b/www-client/firefox/firefox-38.5.0.ebuild @@ -42,7 +42,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linu SLOT="0" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="bindist egl hardened +minimal neon pgo selinux +gmp-autoupdate test" +IUSE="bindist egl hardened +minimal pgo selinux +gmp-autoupdate test" RESTRICT="!bindist? ( bindist )" # More URIs appended below... @@ -207,22 +207,6 @@ src_configure() { # Add full relro support for hardened use hardened && append-ldflags "-Wl,-z,relro,-z,now" - if use neon ; then - mozconfig_annotate '' --with-fpu=neon - mozconfig_annotate '' --with-thumb=yes - mozconfig_annotate '' --with-thumb-interwork=no - fi - - if [[ ${CHOST} == armv* ]] ; then - mozconfig_annotate '' --with-float-abi=hard - mozconfig_annotate '' --enable-skia - - if ! use system-libvpx ; then - sed -i -e "s|softfp|hard|" \ - "${S}"/media/libvpx/moz.build - fi - fi - use egl && mozconfig_annotate 'Enable EGL as GL provider' --with-gl-provider=EGL # Setup api key for location services diff --git a/www-client/firefox/firefox-43.0.ebuild b/www-client/firefox/firefox-43.0.ebuild index 2c932c1d99ef..d0229f53ce60 100644 --- a/www-client/firefox/firefox-43.0.ebuild +++ b/www-client/firefox/firefox-43.0.ebuild @@ -43,7 +43,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linu SLOT="0" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" -IUSE="bindist egl hardened +hwaccel +minimal neon pgo selinux +gmp-autoupdate test" +IUSE="bindist egl hardened +hwaccel +minimal pgo selinux +gmp-autoupdate test" RESTRICT="!bindist? ( bindist )" # More URIs appended below... @@ -220,22 +220,6 @@ src_configure() { # Add full relro support for hardened use hardened && append-ldflags "-Wl,-z,relro,-z,now" - if use neon ; then - mozconfig_annotate '' --with-fpu=neon - mozconfig_annotate '' --with-thumb=yes - mozconfig_annotate '' --with-thumb-interwork=no - fi - - if [[ ${CHOST} == armv* ]] ; then - mozconfig_annotate '' --with-float-abi=hard - mozconfig_annotate '' --enable-skia - - if ! use system-libvpx ; then - sed -i -e "s|softfp|hard|" \ - "${S}"/media/libvpx/moz.build - fi - fi - use egl && mozconfig_annotate 'Enable EGL as GL provider' --with-gl-provider=EGL # Setup api key for location services |