summaryrefslogtreecommitdiff
path: root/net-misc/nextcloud-spreed-signaling/nextcloud-spreed-signaling-1.0.0.ebuild
blob: fb533664ec2e66e1a282ec4b6275ce8af0600726 (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
EAPI=7
 
inherit go-module
 
DESCRIPTION="standalone signaling server for Nextcloud Talk"
HOMEPAGE="https://github.com/strukturag/nextcloud-spreed-signaling"
 
#go-module_set_globals
 
# build the deps tarball like
https://devmanual.gentoo.org/eclass-reference/go-module.eclass/index.html
# says
SRC_URI="https://github.com/strukturag/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 https://www.thenautilus.net/gentoo-tarballs/${P}-deps.tar.xz"
 
LICENSE="AGPL-3"
SLOT="0"
KEYWORDS="~amd64"
 
DEPEND="net-misc/nats-server
net-misc/janus-gateway
net-im/coturn"
BDEPEND=">=dev-lang/go-1.17.0
 >=dev-libs/protobuf-3.20.0"
 
# NOTE: this won't actually work when run from portage, because the
# sandbox (correcly) prevents it from downloading stuff; build it
# manually with `ebuild ... compile`, install, qmerge
 
src_compile() {
export GOPATHBIN="$(pwd)/bin"
emake -j1 build
}
 
src_install() {
newbin bin/signaling nextcloud-spreed-signaling
newbin bin/proxy nextcloud-spreed-proxy
einstalldocs
dodoc proxy.conf.in server.conf.in
}