Skip to content

Commit

Permalink
www-client/opera-beta: Version 52.0.2871.27.
Browse files Browse the repository at this point in the history
Package-Manager: Portage-2.3.24, Repoman-2.3.6
  • Loading branch information
Jeroen Roovers committed Mar 20, 2018
1 parent 29e8191 commit 51f7658
Show file tree
Hide file tree
Showing 2 changed files with 115 additions and 0 deletions.
1 change: 1 addition & 0 deletions www-client/opera-beta/Manifest
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
DIST opera-beta_52.0.2871.20_amd64.deb 55570802 BLAKE2B e7edfea60309b22f47170895d3c72aceb72b934e294f4749b0d55a09a2f035972a0bbe4e98054cc3d50d6902f4c10ff313e32aa3892743bfdbc1fe1fd8769e40 SHA512 1950df5d444ef52b5e277580ffd2e3a2795af013b1fb30f444a276257d9610e54a06e5ec8b58d2418698f58fdc74b98a9c3a04e016eef69f53a5ad201031f3c2
DIST opera-beta_52.0.2871.27_amd64.deb 55688388 BLAKE2B b56658262771526fe65f60cecabb88a892a5007c0ca9a10714235f0dc2450011f42e45bd543c226406d866d61d71bb6a1cc233a27b043d52727cf54d1ec84f2b SHA512 f035005195eb618bc23e58ddcb6952755573b30e6848b0019f22b87151063bfe270f1b1bbf93b94e78b86907e33c3906d964a58ab539182bf0b3a06cd617ebca
DIST opera-beta_52.0.2871.9_amd64.deb 53358140 BLAKE2B 7e1de88e79a188126d3e4000b06a059022344ad4d1c498d6f4dcb16be83a71da898bbfae8ff45c15b86240dca3c81223a5e71d01426faacd12b338a70dcf99ac SHA512 75c222958ad539fdddf2d8c31a62d3a883164ca221c5d63db7fe8f11a77d3135c38965fa46fab057b83d6b680ca2ad3168391546d165456378d4348ed6346ee9
114 changes: 114 additions & 0 deletions www-client/opera-beta/opera-beta-52.0.2871.27.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
# Copyright 1999-2018 Gentoo Foundation
# 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-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 gnome2-utils multilib unpacker xdg-utils

DESCRIPTION="A fast and secure web browser"
HOMEPAGE="http://www.opera.com/"
LICENSE="OPERA-2014"
SLOT="0"
SRC_URI_BASE="
http://download1.operacdn.com/pub/
http://download2.operacdn.com/pub/
http://download3.operacdn.com/pub/
http://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+:2
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() {
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

rm usr/bin/${PN} || die

rm usr/share/doc/${PN}/copyright || die
mv usr/share/doc/${PN} usr/share/doc/${PF} || 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
}

0 comments on commit 51f7658

Please sign in to comment.