www-client/opera-developer: Version 64.0.3409.0

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
This commit is contained in:
Jeroen Roovers
2019-08-15 08:06:07 +02:00
parent cddc7143b9
commit 8bd299605c
2 changed files with 116 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST opera-developer_64.0.3401.0_amd64.deb 65538220 BLAKE2B 36ebc9a86edfac9ec05783ed6f7d99b9f38a14b29d922a8091975f846efe85d02f3c19c0f782f21ae17715bd27ac924035f807a93a5fa4010ff7f31ef03163b5 SHA512 544ab99744a29dd9b2c7ade1f4aba9e5dae92f63f9e5217e4e4608ac4662b9c2cb3cd2f6ddf4ef097c27c76d01dd1178370b0a14d264681e17aa4f938623735b
DIST opera-developer_64.0.3407.0_amd64.deb 65947994 BLAKE2B 5533f55491057387b6fbdc76296ad66329154504a7c9c062efdcb5850ea33afa8cdd2ffee703b2fe31e0d29c69743117b85725d082fe705a18f183ec6509d767 SHA512 f30f97b6ffb1c97402ce3f1afe23b343e790349b05fdf76013f7f804dd1c2c08edcf7512d82497cf72732cf87262bd97cab6a85cfd6e7d402a38b6cce6a7794d
DIST opera-developer_64.0.3409.0_amd64.deb 66076622 BLAKE2B 45c8fa96d8abcfa2f26343465e1fe9c49cb6b7c82f023b7b5ad655d8995a3a6e00dda55d81196c1c5d89cc0aacd0844327fea45340566f4ccd8c649c278b1a1f SHA512 870c0a3a6250fb4fba3c1bb27ab1fa5cff3f37b50924ddf393b5fd4d854cefee4bbff33965bf832625714037a2cb595861c4a25a2d3c5ffc3b9d5cd192a2fe37

View File

@@ -0,0 +1,115 @@
# Copyright 1999-2019 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 es es-419 fi fil fr fr-CA 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/
"
SRC_URI="amd64? ("
for uri in ${SRC_URI_BASE}; do
SRC_URI+="
"${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb"
"
done
SRC_URI+=")"
KEYWORDS="~amd64"
RDEPEND="
dev-libs/expat
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss
gnome-base/gconf:2
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}
}
pkg_setup() {
OPERA_HOME="usr/$(get_libdir)/${PN}"
}
src_prepare() {
default
case ${ARCH} in
amd64)
mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
rm -r usr/lib || die
;;
x86)
mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || die
;;
esac
mv usr/share/doc/${PN} usr/share/doc/${PF} || die
gunzip usr/share/doc/${PF}/changelog.gz || die
rm usr/bin/${PN} || 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() {
mv * "${D}" || die
dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
fperms 4711 /usr/$(get_libdir)/${PN}/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
}