blob: 080a3e255c756050663051108820659f1af0d1d3 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Instant terminal sharing"
HOMEPAGE="https://tmate.io/"
SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="ISC BSD BSD-2"
SLOT="0"
KEYWORDS="amd64 ~riscv ~x86"
IUSE="debug"
RDEPEND="
dev-libs/libevent
dev-libs/msgpack:=
dev-libs/openssl:=
>=net-libs/libssh-0.6.0
sys-libs/zlib
sys-libs/libutempter
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${PN}-2.4.0-msgpack-6.patch
)
QA_CONFIG_IMPL_DECL_SKIP=(
# missing on musl, check works as intended
b64_ntop
)
src_prepare() {
default
eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_enable debug)
)
econf "${myeconfargs[@]}"
}
|