From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-899703-garchives=archives.gentoo.org@lists.gentoo.org> 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 2FCCD138330 for <garchives@archives.gentoo.org>; Sat, 3 Sep 2016 04:21:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80A4921C028; Sat, 3 Sep 2016 04:21:34 +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 2EBD021C03E for <gentoo-commits@lists.gentoo.org>; Sat, 3 Sep 2016 04:21:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 DEF6F3408F9 for <gentoo-commits@lists.gentoo.org>; Sat, 3 Sep 2016 04:21:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 763292475 for <gentoo-commits@lists.gentoo.org>; Sat, 3 Sep 2016 04:21:29 +0000 (UTC) From: "Mike Gilbert" <floppym@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" <floppym@gentoo.org> Message-ID: <1472876486.5df1a7c258f407fd09c320e8789c783bdbdab396.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-plugins/chrome-binary-plugins/chrome-binary-plugins-54.0.2840.8_alpha.ebuild X-VCS-Directories: www-plugins/chrome-binary-plugins/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 5df1a7c258f407fd09c320e8789c783bdbdab396 X-VCS-Branch: master Date: Sat, 3 Sep 2016 04:21:29 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0d11d5cb-33f9-40e5-bd8e-f7e9bd48f366 X-Archives-Hash: b772df55c7ac4b2dca9c192a11ce8d68 commit: 5df1a7c258f407fd09c320e8789c783bdbdab396 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Sat Sep 3 04:21:11 2016 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Sat Sep 3 04:21:26 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5df1a7c2 www-plugins/chrome-binary-plugins: drop flash support Package-Manager: portage-2.3.0_p24 .../chrome-binary-plugins-54.0.2840.8_alpha.ebuild | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-54.0.2840.8_alpha.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-54.0.2840.8_alpha.ebuild index 07c207f..d7fd45a 100644 --- a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-54.0.2840.8_alpha.ebuild +++ b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-54.0.2840.8_alpha.ebuild @@ -34,7 +34,7 @@ SRC_URI="https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd KEYWORDS="-* ~amd64" LICENSE="google-chrome" -IUSE="+flash +widevine" +IUSE="+widevine" RESTRICT="bindist mirror strip" for x in 0 beta stable unstable; do @@ -51,7 +51,7 @@ pkg_nofetch() { } src_install() { - local version flapper + local version insinto /usr/$(get_libdir)/chromium-browser/ @@ -60,19 +60,4 @@ src_install() { strings ./chrome | grep -C 1 " (version:" | tail -1 > widevine.version doins widevine.version fi - - if use flash; then - doins -r PepperFlash - - # Since this is a live ebuild, we're forced to, unfortuantely, - # dynamically construct the command line args for Chromium. - version=$(sed -n 's/.*"version": "\(.*\)",.*/\1/p' PepperFlash/manifest.json) - flapper="${EPREFIX}/usr/$(get_libdir)/chromium-browser/PepperFlash/libpepflashplayer.so" - echo -n "CHROMIUM_FLAGS=\"\${CHROMIUM_FLAGS} " > pepper-flash - echo -n "--ppapi-flash-path=$flapper " >> pepper-flash - echo "--ppapi-flash-version=$version\"" >> pepper-flash - - insinto /etc/chromium/ - doins pepper-flash - fi }