diff options
author | Sam James <sam@gentoo.org> | 2023-04-03 07:45:32 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-04-03 07:46:49 +0100 |
commit | 23f7d1919ab3169b7deb4e47424874db97b0846e (patch) | |
tree | f20585bec110db7ce56aa37b3ddb48a990b0e582 /app-misc | |
parent | sys-process/rtirq: remove old (diff) | |
download | gentoo-23f7d1919ab3169b7deb4e47424874db97b0846e.tar.gz gentoo-23f7d1919ab3169b7deb4e47424874db97b0846e.tar.bz2 gentoo-23f7d1919ab3169b7deb4e47424874db97b0846e.zip |
app-misc/tmate: restore -r1
Bug: https://bugs.gentoo.org/903718
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/tmate/tmate-2.4.0-r1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
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[@]}" +} |