From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8B2D4139085 for ; Thu, 2 Feb 2017 03:02:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FAE7E0EE4; Thu, 2 Feb 2017 03:02:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1E669E0EE4 for ; Thu, 2 Feb 2017 03:02:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BE47333FE7D for ; Thu, 2 Feb 2017 03:02:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C24023DB5 for ; Thu, 2 Feb 2017 03:02:40 +0000 (UTC) From: "Jory Pratt" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jory Pratt" Message-ID: <1486004517.7c0970a092e19fd8c1df802d029d8bf630fc73ec.anarchy@gentoo> Subject: [gentoo-commits] proj/mozilla:master commit in: eclass/ X-VCS-Repository: proj/mozilla X-VCS-Files: eclass/mozconfig-v6.51.eclass X-VCS-Directories: eclass/ X-VCS-Committer: anarchy X-VCS-Committer-Name: Jory Pratt X-VCS-Revision: 7c0970a092e19fd8c1df802d029d8bf630fc73ec X-VCS-Branch: master Date: Thu, 2 Feb 2017 03:02:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 31d032b3-e595-4f8b-a235-2abad468c084 X-Archives-Hash: 3a51f7546b10c5043a5f1129503f45b7 commit: 7c0970a092e19fd8c1df802d029d8bf630fc73ec Author: Jory A. Pratt gentoo org> AuthorDate: Thu Feb 2 03:01:57 2017 +0000 Commit: Jory Pratt gentoo org> CommitDate: Thu Feb 2 03:01:57 2017 +0000 URL: https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=7c0970a0 eclass/mozconfig-v6.51 : Remove skia support as being optional and force it to be default eclass/mozconfig-v6.51.eclass | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/eclass/mozconfig-v6.51.eclass b/eclass/mozconfig-v6.51.eclass index 7bbed9a..1e451f8 100644 --- a/eclass/mozconfig-v6.51.eclass +++ b/eclass/mozconfig-v6.51.eclass @@ -83,7 +83,7 @@ inherit flag-o-matic toolchain-funcs mozcoreconf-v4 # Set the variable to any value if the use flag should exist but not be default-enabled. # use-flags common among all mozilla ebuilds -IUSE="${IUSE} dbus debug +jemalloc neon pulseaudio selinux +skia startup-notification system-cairo +IUSE="${IUSE} dbus debug +jemalloc neon pulseaudio selinux startup-notification system-cairo system-harfbuzz system-icu system-jpeg system-libevent system-sqlite system-libvpx" # some notes on deps: @@ -286,7 +286,7 @@ mozconfig_config() { mozconfig_annotate 'Gentoo default' --with-system-png mozconfig_annotate '' --enable-system-ffi mozconfig_annotate 'Gentoo default to honor system linker' --disable-gold - mozconfig_use_enable skia + mozconfig_annotate '' skia mozconfig_annotate '' --disable-gconf mozconfig_annotate '' --with-intl-api @@ -404,12 +404,4 @@ mozconfig_install_prefs() { echo "sticky_pref(\"gfx.font_rendering.graphite.enabled\",true);" \ >>"${prefs_file}" || die fi - - # force cairo as the canvas renderer if USE=skia is disabled - if ! use skia ; then - echo "lockPref(\"gfx.canvas.azure.backends\",\"cairo\");" \ - >>"${prefs_file}" || die - echo "lockPref(\"gfx.content.azure.backends\",\"cairo\");" \ - >>"${prefs_file}" || die - fi }