commit: 23f7d1919ab3169b7deb4e47424874db97b0846e Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Apr 3 06:45:32 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Apr 3 06:46:49 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23f7d191
app-misc/tmate: restore -r1 Bug: https://bugs.gentoo.org/903718 Signed-off-by: Sam James <sam <AT> gentoo.org> app-misc/tmate/tmate-2.4.0-r1.ebuild | 40 ++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/app-misc/tmate/tmate-2.4.0-r1.ebuild b/app-misc/tmate/tmate-2.4.0-r1.ebuild new file mode 100644 index 000000000000..920c528ee69e --- /dev/null +++ b/app-misc/tmate/tmate-2.4.0-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2023 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/" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="amd64 ~riscv ~x86" +IUSE="debug" + +SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +RDEPEND=" + sys-libs/zlib + sys-libs/libutempter + dev-libs/libevent + dev-libs/msgpack + >=net-libs/libssh-0.6.0 + dev-libs/openssl:0= +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + local myeconfargs=( + $(use_enable debug) + --disable-static + ) + econf "${myeconfargs[@]}" +}
