mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
www-client/opera-beta: Version 68.0.3618.24
Package-Manager: Portage-2.3.95, Repoman-2.3.21 Signed-off-by: Jeroen Roovers <jer@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST opera-beta_68.0.3618.24_amd64.deb 67566452 BLAKE2B 33a1789c57949a818ead97bbd783d9e5183913fb37be0fdeb68c8df6f371ab349ad0a9fe182d10a90becaa8610b5cd29c9aaf1ae59f4dcd17114d3c11bb7d375 SHA512 0a596a91bd75f6b25ae3a58abae159277136ecbf1cf3b378cc72ce8581f0e32b3cf2b5e15bcb3dc07003f3ae162784b47ec118a83eb24e3f7b684abbf8939d41
|
||||
DIST opera-beta_68.0.3618.3_amd64.deb 67662952 BLAKE2B b1f8469825f66ca4a155c4d9c9ee2b68a52db7e6a0cd7cb1074040ef141c525f37e762b8bfe0326110363fe480218088ab807b4caa827070eac8c17942cce394 SHA512 b9580d2f843f7fc35cb0752116a251fd8a38ba76ed5f8836bc748c7ef45a1f8ee79290e80be86e7fd21dc87e165cc921525ad263a0c7532b7ef72e03c74dd597
|
||||
DIST opera-beta_68.0.3618.5_amd64.deb 67667148 BLAKE2B e24cbb6da9743092220c2a788f209f9db5a3b92f9941bd603868bb4159666c881d773d0abf5546df3b9cdb4fa15550606ed5ca9402ea990aa767f34f85cde338 SHA512 8fc0a0c8c895c1d77a232b57b6ae9573077f6aae379a6bd703c33e37310723c84a30ccf6541be1a041f5de271780c249c606047467ac1daa7c809d4a637120b6
|
||||
|
||||
115
www-client/opera-beta/opera-beta-68.0.3618.24.ebuild
Normal file
115
www-client/opera-beta/opera-beta-68.0.3618.24.ebuild
Normal file
@@ -0,0 +1,115 @@
|
||||
# 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 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