mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
www-client/opera-developer: Version 61.0.3298.3
Package-Manager: Portage-2.3.65, Repoman-2.3.12 Signed-off-by: Jeroen Roovers <jer@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST opera-developer_61.0.3290.0_amd64.deb 67235090 BLAKE2B d278afc5137bf8d986b35afeaeeb81eafc9c003fb89ede35f79386533b6d42808998add223ef792c12550b22078c7c83f9eea78ef1cd4d5c0627a7f50230a41e SHA512 47fce448900edc3cc83568771916ac69274b0e1f759bfaf369a045df9eac7f74dda93d80c6b878d73184e5962edb25c9445ed5cf86d2088285716a97b2d0afa4
|
||||
DIST opera-developer_61.0.3296.0_amd64.deb 67217070 BLAKE2B 2937cb8bb782fbb163ce2475971ed0b2dd0d41a74c14c8c6ff223cac1d5f468592b7d8f32b7ea215c87b6699a04c12439127491ec16ba1a94b31d2a863ca5727 SHA512 c49136f6112decf16184883d9198529cbd5717aa978ced8d26524fde09c19b6936b1c538168d417ac4328584913da0503b0265025c9816cab10eea92c4d35672
|
||||
DIST opera-developer_61.0.3298.3_amd64.deb 68157710 BLAKE2B 94afc24395b5c097c26b5e840a81e5ce2d9f07267680f53214a617569cb51597a140eed1a444db23d8f0067832760c9b41db82f81c18c24e2a2884ddea289299 SHA512 7da0b3d82e340eded7154219b5bbe31aaafaf7ef1b016f76b98e385211f0bf607f7339d2f7350a5196312c67a5ca1287b60ecef2c8e7bd53be5a9ebe2f7a639e
|
||||
|
||||
115
www-client/opera-developer/opera-developer-61.0.3298.3.ebuild
Normal file
115
www-client/opera-developer/opera-developer-61.0.3298.3.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}
|
||||
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user