mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
109 lines
2.3 KiB
Bash
109 lines
2.3 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit unpacker desktop xdg
|
|
|
|
DESCRIPTION="TETR.IO desktop client."
|
|
HOMEPAGE="https://tetr.io/"
|
|
|
|
SRC_URI="https://tetr.io/about/desktop/builds/${PV}/TETR.IO%20Setup.deb -> ${P}.deb"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="all-rights-reserved"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE="tetrio-plus"
|
|
|
|
RESTRICT="bindist mirror test strip"
|
|
|
|
BDEPEND="
|
|
app-arch/unzip
|
|
"
|
|
RDEPEND="
|
|
x11-libs/libxkbcommon
|
|
app-accessibility/at-spi2-core:2
|
|
dev-libs/expat
|
|
dev-libs/glib:2
|
|
dev-libs/nspr
|
|
dev-libs/nss
|
|
media-libs/alsa-lib
|
|
media-libs/mesa
|
|
net-print/cups
|
|
sys-apps/dbus
|
|
x11-libs/cairo
|
|
x11-libs/gtk+:3
|
|
x11-libs/libdrm
|
|
x11-libs/libX11
|
|
x11-libs/libxcb
|
|
x11-libs/libXcomposite
|
|
x11-libs/libXdamage
|
|
x11-libs/libXext
|
|
x11-libs/libXfixes
|
|
x11-libs/libXrandr
|
|
x11-libs/pango
|
|
"
|
|
|
|
QA_PREBUILT=".*"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-application.patch"
|
|
)
|
|
|
|
src_unpack() {
|
|
unpack_deb "${P}.deb"
|
|
|
|
# No TETR.IO PLUS for v10 yet
|
|
#if use tetrio-plus; then
|
|
# unpack "tetrio-plus-${PV}.zip"
|
|
#fi
|
|
}
|
|
|
|
src_prepare() {
|
|
mv "${S}/usr/share/applications/TETR.IO.desktop"\
|
|
"${S}/usr/share/applications/tetrio-desktop.desktop"
|
|
|
|
default
|
|
|
|
if use tetrio-plus; then
|
|
ewarn "TETR.IO PLUS is not supported yet for v10"
|
|
fi
|
|
|
|
#if use tetrio-plus; then
|
|
# mv "${S}/app.asar" "${S}/opt/TETR.IO/resources/app.asar" || die
|
|
#fi
|
|
|
|
mv "${S}/opt/TETR.IO" "${S}/opt/${PN}" || die
|
|
}
|
|
|
|
src_install() {
|
|
ICONDIR="usr/share/icons/hicolor"
|
|
DESTDIR="/opt/${PN}"
|
|
|
|
doicon -s 256 "${ICONDIR}/256x256/apps/TETR.IO.png"
|
|
doicon -s 512 "${ICONDIR}/512x512/apps/TETR.IO.png"
|
|
|
|
domenu "usr/share/applications/tetrio-desktop.desktop"
|
|
|
|
dodir /opt/${PN}
|
|
|
|
exeinto "${DESTDIR}"
|
|
doexe "opt/${PN}/TETR.IO" "opt/${PN}/chrome-sandbox" "opt/${PN}/libEGL.so" \
|
|
"opt/${PN}/libffmpeg.so" "opt/${PN}/libGLESv2.so" "opt/${PN}/libvk_swiftshader.so" "opt/${PN}/libvulkan.so.1"
|
|
|
|
insinto "${DESTDIR}"
|
|
doins "opt/${PN}/chrome_100_percent.pak" "opt/${PN}/chrome_200_percent.pak" "opt/${PN}/icudtl.dat" \
|
|
"opt/${PN}/resources.pak" "opt/${PN}/snapshot_blob.bin" "opt/${PN}/v8_context_snapshot.bin"\
|
|
"opt/${PN}/vk_swiftshader_icd.json"
|
|
|
|
doins -r "opt/${PN}/locales" "opt/${PN}/resources"
|
|
|
|
fowners root "${DESTDIR}/chrome-sandbox"
|
|
fperms 4711 "${DESTDIR}/chrome-sandbox"
|
|
|
|
dosym -r "/opt/${PN}/TETR.IO" "/usr/bin/${PN}"
|
|
}
|