Diff tmate-2.4.0-r1 with a tmate-2.4.0-r2

/usr/portage/app-misc/tmate/tmate-2.4.0-r2.ebuild 2023-10-09 14:52:28.824368333 +0300
7 7

  
8 8
DESCRIPTION="Instant terminal sharing"
9 9
HOMEPAGE="https://tmate.io/"
10
SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
10 11

  
11
LICENSE="ISC"
12
LICENSE="ISC BSD BSD-2"
12 13
SLOT="0"
13 14
KEYWORDS="amd64 ~riscv ~x86"
14 15
IUSE="debug"
15 16

  
16
SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
17

  
18 17
RDEPEND="
19
	sys-libs/zlib
20
	sys-libs/libutempter
21 18
	dev-libs/libevent
22
	dev-libs/msgpack
19
	dev-libs/msgpack:=
20
	dev-libs/openssl:=
23 21
	>=net-libs/libssh-0.6.0
24
	dev-libs/openssl:0=
22
	sys-libs/zlib
23
	sys-libs/libutempter
25 24
"
26 25
DEPEND="${RDEPEND}"
27 26
BDEPEND="virtual/pkgconfig"
28 27

  
28
PATCHES=(
29
	"${FILESDIR}"/${PN}-2.4.0-msgpack-6.patch
30
)
31

  
29 32
src_prepare() {
30 33
	default
31 34
	eautoreconf
......
34 37
src_configure() {
35 38
	local myeconfargs=(
36 39
		$(use_enable debug)
37
		--disable-static
38 40
	)
39 41
	econf "${myeconfargs[@]}"
40 42
}
Thank you!