diff options
author | 2020-07-28 10:52:29 +0200 | |
---|---|---|
committer | 2020-07-28 10:53:33 +0200 | |
commit | 0218ef4a46a23f63dc84fa4a66c4fa7aa8df0356 (patch) | |
tree | 8e21d335414396c545a5f1f04dfb47bdb7edce1f /www-client | |
parent | net-analyzer/zabbix: bump to 4.0.23 (diff) | |
download | gentoo-0218ef4a46a23f63dc84fa4a66c4fa7aa8df0356.tar.gz gentoo-0218ef4a46a23f63dc84fa4a66c4fa7aa8df0356.tar.bz2 gentoo-0218ef4a46a23f63dc84fa4a66c4fa7aa8df0356.zip |
www-client/opera: Version 70.0.3728.71
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/opera/Manifest | 1 | ||||
-rw-r--r-- | www-client/opera/opera-70.0.3728.71.ebuild | 110 |
2 files changed, 111 insertions, 0 deletions
diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest index 09d182ade493..b11ed0a7f856 100644 --- a/www-client/opera/Manifest +++ b/www-client/opera/Manifest @@ -1 +1,2 @@ DIST opera-stable_69.0.3686.77_amd64.deb 66216000 BLAKE2B e9f567fa5bb93c68068786ebf114a5805bc70e2bbc226a4541ab1eb803e639eab3eef1476e862644f676c248a6bbece81c8447e0577ea9fe3f43092b5aac9672 SHA512 ec283dce194827f7fc62918faca052091de4235e5b4e61f4125998e65b1c0d7ec59ce03aa035075c5a03bee9f49443db5319e73cd6b70f97a739e0fca2390872 +DIST opera-stable_70.0.3728.71_amd64.deb 67391396 BLAKE2B 747f90cfe052193f9794d14fc2f74b2ea535402a1bc9c6bb9e5a39806654be63599447e382794d681a2045386269d6b249c571386fc588171350239dbfbfc471 SHA512 2c35185fad60c40154fecb844d7ef4f0142081e5b94d251035bc51f9be1083d1206205dd6c52fc6e9879ee514755a1a3b08057f8065135743b59ffb42f75c6d1 diff --git a/www-client/opera/opera-70.0.3728.71.ebuild b/www-client/opera/opera-70.0.3728.71.ebuild new file mode 100644 index 000000000000..58c0be89c0ab --- /dev/null +++ b/www-client/opera/opera-70.0.3728.71.ebuild @@ -0,0 +1,110 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +CHROMIUM_LANGS=" + be bg bn ca cs da de el en-GB en-US es-419 es fil fi fr-CA fr hi hr hu id + it ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi + zh-CN zh-TW + +" +inherit chromium-2 multilib unpacker xdg-utils + +DESCRIPTION="A fast and secure web browser" +HOMEPAGE="https://www.opera.com/" +LICENSE="OPERA-2014" +SLOT="0" +SRC_URI_BASE=" + https://download1.operacdn.com/pub/ + https://download2.operacdn.com/pub/ + https://download3.operacdn.com/pub/ + https://download4.operacdn.com/pub/ +" +for uri in ${SRC_URI_BASE}; do +SRC_URI+=" + "${uri}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb" +" +done +KEYWORDS="~amd64" + +RDEPEND=" + dev-libs/expat + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + media-libs/alsa-lib + media-libs/fontconfig + media-libs/freetype + net-misc/curl + net-print/cups + sys-apps/dbus + x11-libs/cairo + x11-libs/gdk-pixbuf + x11-libs/gtk+:3 + x11-libs/libX11 + x11-libs/libXScrnSaver + x11-libs/libXcomposite + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXi + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libXtst + x11-libs/libnotify + x11-libs/pango[X] +" + +QA_PREBUILT="*" +S=${WORKDIR} + +src_unpack() { + unpack_deb ${A} +} + +src_prepare() { + default + + OPERA_HOME="usr/$(get_libdir)/${PN}" + + case ${ARCH} in + amd64) + mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die + rm -r usr/lib || die + ;; + esac + + rm usr/bin/${PN} || die + + rm usr/share/doc/${PN}-stable/copyright || die + mv usr/share/doc/${PN}-stable usr/share/doc/${PF} || die + gunzip usr/share/doc/${PF}/changelog.gz || die + + pushd "${OPERA_HOME}"/localization > /dev/null || die + chromium_remove_language_paks + popd > /dev/null || die + + sed -i \ + -e 's|^TargetEnvironment|X-&|g' \ + usr/share/applications/${PN}.desktop || die +} + +src_install() { + rm "${OPERA_HOME}"/${PN}_autoupdate || die + mv * "${D}" || die + dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN} + fperms 4711 /"${OPERA_HOME}"/opera_sandbox +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update + xdg_mimeinfo_database_update +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update + xdg_mimeinfo_database_update +} |