blob: a5fd087c0fb2d79d47972cb8dbeca95c4a92ca26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A glossy Matrix collaboration client for the web"
HOMEPAGE="https://riot.im"
inherit unpacker xdg-utils
if [[ ${PV} == "9999" ]]; then
inherit git-r3
SRC_URI=""
EGIT_REPO_URI="https://github.com/vector-im/riot-web.git"
EGIT_BRANCH="develop"
else
SRC_URI="https://github.com/vector-im/riot-web/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="Apache-2.0"
SLOT="0"
IUSE="+emoji"
REQUIRED_USE=""
DEPEND="sys-devel/binutils:*
>=net-libs/nodejs-12.14.0
sys-apps/yarn
x11-libs/libXScrnSaver
net-print/cups
dev-libs/nss
gnome-base/gconf
emoji? ( >=media-fonts/noto-emoji-20180823 )"
RDEPEND="${DEPEND}"
QA_PREBUILT="
opt/Riot/chrome-sandbox
opt/Riot/libGLESv2.so
opt/Riot/libEGL.so
opt/Riot/libffmpeg.so
opt/Riot/libnode.so
opt/Riot/riot-web
opt/Riot/swiftshader/libGLESv2.so
opt/Riot/swiftshader/libEGL.so
opt/Riot/swiftshader/libvk_swiftshader.so"
src_prepare() {
default
if [[ ${PV} == "9999" ]]; then
"${S}"/scripts/fetch-develop.deps.sh
fi
yarn install || die "Yarn module installation failed"
cp "${S}"/config.sample.json "${S}"/config.json || die
}
src_compile() {
yarn run build || die "Build failed"
"${S}"/node_modules/.bin/electron-builder --linux --x64 || die "Bundling failed"
}
src_install() {
unpack electron_app/dist/riot-web*.deb
tar xvf data.tar.xz || die
mv usr/share/doc/${PN} usr/share/doc/${PF} || die
gunzip usr/share/doc/${PF}/changelog.gz || die
insinto /
doins -r usr
doins -r opt
fperms +x /opt/Riot/${PN}
dosym ../../opt/Riot/${PN} /usr/bin/${PN}
}
pkg_postinst() {
xdg_icon_cache_update
}
pkg_postrm() {
xdg_icon_cache_update
}
|