diff options
author | Mike Gilbert <floppym@gentoo.org> | 2016-03-22 21:32:25 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2016-03-22 21:32:25 -0400 |
commit | 9d44501a3a5997362f12ca30f0aea12de352958b (patch) | |
tree | d25b10d03ae5833c3631238125409dd652066098 /www-client/google-chrome/google-chrome-49.0.2623.87_p1.ebuild | |
parent | www-client/google-chrome-unstable: automated update (diff) | |
download | gentoo-9d44501a3a5997362f12ca30f0aea12de352958b.tar.gz gentoo-9d44501a3a5997362f12ca30f0aea12de352958b.tar.bz2 gentoo-9d44501a3a5997362f12ca30f0aea12de352958b.zip |
www-client/google-chrome: Misc cleanup
EAPI=6
Remove stale code that is no longer useful with x86 gone.
Die in pkg_pretend if not on amd64.
Diffstat (limited to 'www-client/google-chrome/google-chrome-49.0.2623.87_p1.ebuild')
-rw-r--r-- | www-client/google-chrome/google-chrome-49.0.2623.87_p1.ebuild | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/www-client/google-chrome/google-chrome-49.0.2623.87_p1.ebuild b/www-client/google-chrome/google-chrome-49.0.2623.87_p1.ebuild index 95fd11b6d091..a97043e77a62 100644 --- a/www-client/google-chrome/google-chrome-49.0.2623.87_p1.ebuild +++ b/www-client/google-chrome/google-chrome-49.0.2623.87_p1.ebuild @@ -2,13 +2,13 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="5" +EAPI="6" CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl sr sv sw ta te th tr uk vi zh_CN zh_TW fake_bidi" -inherit readme.gentoo-r1 chromium eutils multilib pax-utils unpacker +inherit readme.gentoo-r1 chromium eutils pax-utils unpacker DESCRIPTION="The web browser from Google" HOMEPAGE="https://www.google.com/chrome" @@ -21,11 +21,7 @@ fi MY_P="${MY_PN}_${PV/_p/-}" -SRC_URI=" - amd64? ( - https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb - ) -" +SRC_URI="https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb" LICENSE="google-chrome" SLOT="0" @@ -101,6 +97,11 @@ pkg_nofetch() { eerror "Please wait 24 hours and sync your tree before reporting a bug for google-chrome fetch failures." } +pkg_pretend() { + # Protect against people using autounmask overzealously + use amd64 || die "google-chrome only works on amd64" +} + pkg_setup() { chromium_suid_sandbox_check_kernel_config } @@ -135,20 +136,8 @@ src_install() { readme.gentoo_create_doc } -any_cpu_missing_flag() { - local value=$1 - grep '^flags' /proc/cpuinfo | grep -qv "$value" -} - pkg_preinst() { chromium_pkg_preinst - if any_cpu_missing_flag sse2; then - ewarn "The bundled PepperFlash plugin requires a CPU that supports the" - ewarn "SSE2 instruction set, and at least one of your CPUs does not" - ewarn "support this feature. Disabling PepperFlash." - sed -e "/^exec/ i set -- --disable-bundled-ppapi-flash \"\$@\"" \ - -i "${ED}${CHROME_HOME}/google-chrome" || die - fi } pkg_postinst() { |