Adding chromium debian bin
This commit is contained in:
parent
c0d3716798
commit
083e8353fc
1
www-clients/chromium-bin/Manifest
Normal file
1
www-clients/chromium-bin/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST chromium-browser_94.0.4606.81-0ubuntu0.18.04.1_arm64.deb 81148392 BLAKE2B cbe049c22d45d19b8694212e06067b5e4ad8111a70bc93a6ddd47023624a90c23644337c50e4bc349215e5e691b8d5214711ed7d56116cf6cc5e2a147356f398 SHA512 3e5ece9aaa034e6e8845154137fece2f97dba88334dce734f7dbd159d9e9862c7359275a8dbd9fa0dbf78892de0a07f222ca09f989079b1558279a2f577e0cc8
|
101
www-clients/chromium-bin/chromium-bin-94.0.4606.81.ebuild
Normal file
101
www-clients/chromium-bin/chromium-bin-94.0.4606.81.ebuild
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
# Copyright 2011-2021 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
CHROMIUM_LANGS="am ar bg bn ca cs da de el en-GB es es-419 et fa fi fil fr gu he
|
||||||
|
hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr
|
||||||
|
sv sw ta te th tr uk vi zh-CN zh-TW"
|
||||||
|
|
||||||
|
inherit chromium-2 desktop pax-utils unpacker xdg
|
||||||
|
|
||||||
|
DESCRIPTION="The web browser from Google"
|
||||||
|
HOMEPAGE="https://www.google.com/chrome"
|
||||||
|
|
||||||
|
KEYWORDS="~arm64"
|
||||||
|
|
||||||
|
MY_P="chromium-browser_${PV}-0"
|
||||||
|
|
||||||
|
SRC_URI="http://ports.ubuntu.com/pool/universe/c/chromium-browser/${MY_P}ubuntu0.18.04.1_arm64.deb"
|
||||||
|
|
||||||
|
SLOT="0"
|
||||||
|
IUSE="selinux"
|
||||||
|
RESTRICT="bindist mirror strip"
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
app-accessibility/at-spi2-atk:2
|
||||||
|
app-accessibility/at-spi2-core:2
|
||||||
|
app-misc/ca-certificates
|
||||||
|
dev-libs/atk
|
||||||
|
dev-libs/expat
|
||||||
|
dev-libs/glib:2
|
||||||
|
dev-libs/nspr
|
||||||
|
>=dev-libs/nss-3.26
|
||||||
|
media-fonts/liberation-fonts
|
||||||
|
media-libs/alsa-lib
|
||||||
|
media-libs/mesa[gbm(+)]
|
||||||
|
net-misc/curl
|
||||||
|
net-print/cups
|
||||||
|
sys-apps/dbus
|
||||||
|
sys-libs/libcap
|
||||||
|
x11-libs/cairo
|
||||||
|
x11-libs/gdk-pixbuf:2
|
||||||
|
x11-libs/gtk+:3[X]
|
||||||
|
x11-libs/libdrm
|
||||||
|
>=x11-libs/libX11-1.5.0
|
||||||
|
x11-libs/libXcomposite
|
||||||
|
x11-libs/libXdamage
|
||||||
|
x11-libs/libXext
|
||||||
|
x11-libs/libXfixes
|
||||||
|
x11-libs/libXrandr
|
||||||
|
x11-libs/libxcb
|
||||||
|
x11-libs/libxkbcommon
|
||||||
|
x11-libs/libxshmfence
|
||||||
|
x11-libs/pango
|
||||||
|
x11-misc/xdg-utils
|
||||||
|
"
|
||||||
|
|
||||||
|
QA_PREBUILT="*"
|
||||||
|
QA_DESKTOP_FILE="usr/share/applications/chromium.*\\.desktop"
|
||||||
|
S=${WORKDIR}
|
||||||
|
CHROME_HOME="opt/google/chromium${PN#chromium-browser}"
|
||||||
|
|
||||||
|
pkg_nofetch() {
|
||||||
|
eerror "Please wait 24 hours and sync your tree before reporting a bug for chromium fetch failures."
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_pretend() {
|
||||||
|
# Protect against people using autounmask overzealously
|
||||||
|
use arm64 || die "This version of Chromium only works on arm64"
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_setup() {
|
||||||
|
chromium_suid_sandbox_check_kernel_config
|
||||||
|
}
|
||||||
|
|
||||||
|
src_unpack() {
|
||||||
|
:
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
dodir /
|
||||||
|
cd "${ED}" || die
|
||||||
|
unpacker
|
||||||
|
|
||||||
|
rm -r etc usr/share/menu || die
|
||||||
|
mv usr/share/doc/${MY_PN} usr/share/doc/${PF} || die
|
||||||
|
|
||||||
|
gzip -d usr/share/doc/${PF}/changelog.gz || die
|
||||||
|
gzip -d usr/share/man/man1/${MY_PN}.1.gz || die
|
||||||
|
|
||||||
|
pushd "${CHROME_HOME}/locales" > /dev/null || die
|
||||||
|
chromium_remove_language_paks
|
||||||
|
popd > /dev/null || die
|
||||||
|
|
||||||
|
local size
|
||||||
|
for size in 16 24 32 48 64 128 256 ; do
|
||||||
|
newicon -s ${size} "${CHROME_HOME}/product_logo_${size}${suffix}.png" ${PN}.png
|
||||||
|
done
|
||||||
|
|
||||||
|
pax-mark m "${CHROME_HOME}/chromium"
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user