diff options
author | Mike Gilbert <floppym@gentoo.org> | 2016-06-16 16:15:44 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2016-06-16 16:16:12 -0400 |
commit | 7af19ece627955c945ea1e0e618c84969bea57df (patch) | |
tree | 09cc644f6424c0e6fe40380afd2b2f0299201b3a /www-plugins/chrome-binary-plugins/chrome-binary-plugins-52.0.2743.41_beta.ebuild | |
parent | www-client/google-chrome: automated update (diff) | |
download | gentoo-7af19ece627955c945ea1e0e618c84969bea57df.tar.gz gentoo-7af19ece627955c945ea1e0e618c84969bea57df.tar.bz2 gentoo-7af19ece627955c945ea1e0e618c84969bea57df.zip |
www-plugins/chrome-binary-plugins: automated update
Package-Manager: portage-2.3.0_rc1_p20
Diffstat (limited to 'www-plugins/chrome-binary-plugins/chrome-binary-plugins-52.0.2743.41_beta.ebuild')
-rw-r--r-- | www-plugins/chrome-binary-plugins/chrome-binary-plugins-52.0.2743.41_beta.ebuild | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-52.0.2743.41_beta.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-52.0.2743.41_beta.ebuild new file mode 100644 index 000000000000..8dfd3d8e341d --- /dev/null +++ b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-52.0.2743.41_beta.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit multilib unpacker + +DESCRIPTION="Binary plugins from Google Chrome for use in Chromium" +HOMEPAGE="https://www.google.com/chrome" + +case ${PV} in + *_alpha*) + SLOT="unstable" + CHROMEDIR="opt/google/chrome-${SLOT}" + MY_PV=${PV%_alpha}-1 + ;; + *_beta*) + SLOT="beta" + CHROMEDIR="opt/google/chrome-${SLOT}" + MY_PV=${PV%_beta}-1 + ;; + *) + SLOT="stable" + CHROMEDIR="opt/google/chrome" + MY_PV=${PV}-1 + ;; +esac + +MY_PN="google-chrome-${SLOT}" +MY_P="${MY_PN}_${MY_PV}" + +SRC_URI=" + amd64? ( + https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb + ) +" +KEYWORDS="-* ~amd64" + +LICENSE="google-chrome" +IUSE="+flash +widevine" +RESTRICT="bindist mirror strip" + +for x in 0 beta stable unstable; do + if [[ ${SLOT} != ${x} ]]; then + RDEPEND+=" !${CATEGORY}/${PN}:${x}" + fi +done + +S="${WORKDIR}/${CHROMEDIR}" +QA_PREBUILT="*" + +pkg_nofetch() { + eerror "Please wait 24 hours and sync your portage tree before reporting fetch failures." +} + +src_install() { + local version flapper + + insinto /usr/$(get_libdir)/chromium-browser/ + + if use widevine; then + doins libwidevinecdm.so + 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 +} |