mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
www-client/opera-beta: Version 58.0.3135.45
Package-Manager: Portage-2.3.56, Repoman-2.3.12 Signed-off-by: Jeroen Roovers <jer@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST opera-beta_58.0.3135.30_amd64.deb 70660872 BLAKE2B 2f18f3e17095f77e6d4087df70373b5147ace2c7dc03e4c5363147f3b3c7bdac38e1763c33ff7cc587be51a52f9e0af8b1a02008b1274b929c47b5aee0f7ac53 SHA512 a41c27360242fef945ae51f82ebce480c5c5d16ceedb7c379c83362d0e9fb5f3cd6baf3dc040e13dcb7988c9d048ea07416237a52d0cc1290a315489ddf42ef0
|
||||
DIST opera-beta_58.0.3135.37_amd64.deb 71184580 BLAKE2B 1dbe7aa5f52cda02b69be045fcc30c474582a48a0b720d4b1567e91e117f8b3e64c8ae4ccaba4c2c3d2f89ef300a58cc9638a36d737d56e060a3442bdea3cbac SHA512 2aa35696b408977f8d981cec88126debb5c704c00b26b291a74b0f8011125dafbfce30b2e211b0d87e18c3a75bf81b2b5441f6e144325ed90dbc8eb7f2b9b16d
|
||||
DIST opera-beta_58.0.3135.45_amd64.deb 70850556 BLAKE2B 65b20bd6d1d9ccf3fe746cdaa86c61e9028fce15a26864e293d599f1757ea4de20ca554fa1b4855159ece096136f4f94d347e4328cd208a60ff4cd1231ffb07a SHA512 df09653f5ebe8681ceb85094d54a03843bd679482c40f3ba650c33c29007f7976c906a115fcd00e4f019d8fec4dec3825483c035b01ad0fbd7bdea3a0aeb09bb
|
||||
|
||||
116
www-client/opera-beta/opera-beta-58.0.3135.45.ebuild
Normal file
116
www-client/opera-beta/opera-beta-58.0.3135.45.ebuild
Normal file
@@ -0,0 +1,116 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
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 gnome2-utils 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}
|
||||
OPERA_HOME="usr/$(get_libdir)/${PN}"
|
||||
|
||||
src_unpack() {
|
||||
unpack_deb ${A}
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
epatch_user
|
||||
|
||||
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_preinst() {
|
||||
gnome2_icon_savelist
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
gnome2_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
xdg_mimeinfo_database_update
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
gnome2_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
xdg_mimeinfo_database_update
|
||||
}
|
||||
Reference in New Issue
Block a user