mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
www-client/opera-beta: Version 63.0.3368.8
Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Jeroen Roovers <jer@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST opera-beta_62.0.3331.16_amd64.deb 67725100 BLAKE2B f61999b33dd779a539fbf585d5a5b7e409962abbf024d0b29c198ec717e044cdea7cd2c203c414358cf9dd54c4b9cf8dab3592cfc7e786cac7b4d708cb580ed1 SHA512 2c079ed39c252c62d24d7dc2c038a030cfe3b3e455240899a5e8f20f91cf9d19229c1ffab4d2b685ba9270804dfb1bc176e6b1333413d3e058817b5a47c6de4f
|
||||
DIST opera-beta_62.0.3331.55_amd64.deb 67546090 BLAKE2B c73bbdf9e845a469e3baf8aa3bce9e02e1fc2ad2cdd2e5287e38e35d3c13dff1a1daa34059bc5f1a1a6f691f74375071618969a8e16108f6baf46a66af4c6292 SHA512 7925e13bb1baca9034de27feec3165da8dd0beed9956fd6f357233d0d5a04e721e78cec007f35fdcb8675d870b7d65acc728ea69e982aaa341cb940ed0a63423
|
||||
DIST opera-beta_63.0.3368.8_amd64.deb 60832818 BLAKE2B 45a6da9342efe9a2a8511364edbcd4eacde1ee0f3ef20830d959ecf4bc652f475c5cc4dcc3b1e35b07d359066e38d8daab3b911e27e8477ad39cb869d0f4f7bf SHA512 b53affde2eae29e9cb9aaddce9340857beffe0ea28fcb2d5bcee16cb90acb02869b060c0a0af8aeaea62e289e7c7bb94b7ec78960f9e5a3e0a19e3f0e4a0ee87
|
||||
|
||||
115
www-client/opera-beta/opera-beta-63.0.3368.8.ebuild
Normal file
115
www-client/opera-beta/opera-beta-63.0.3368.8.ebuild
Normal 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}
|
||||
|
||||
pkg_setup() {
|
||||
OPERA_HOME="usr/$(get_libdir)/${PN}"
|
||||
}
|
||||
|
||||
src_unpack() {
|
||||
unpack_deb ${A}
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user