diff options
author | Yixun Lan <dlan@gentoo.org> | 2019-10-16 10:43:55 +0800 |
---|---|---|
committer | Yixun Lan <dlan@gentoo.org> | 2019-10-16 10:58:37 +0800 |
commit | 10380785846487ace49515ac9897cd347dbab0b4 (patch) | |
tree | 01ec9c470f28dbba2adeba94fc270e9c6bd4ea39 /app-misc/tmate/tmate-2.3.1.ebuild | |
parent | net-proxy/shadowsocks-libev: drop old version (diff) | |
download | gentoo-10380785846487ace49515ac9897cd347dbab0b4.tar.gz gentoo-10380785846487ace49515ac9897cd347dbab0b4.tar.bz2 gentoo-10380785846487ace49515ac9897cd347dbab0b4.zip |
app-misc/tmate: version bump, 2.3.1
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'app-misc/tmate/tmate-2.3.1.ebuild')
-rw-r--r-- | app-misc/tmate/tmate-2.3.1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-misc/tmate/tmate-2.3.1.ebuild b/app-misc/tmate/tmate-2.3.1.ebuild new file mode 100644 index 000000000000..bdddbdf93b17 --- /dev/null +++ b/app-misc/tmate/tmate-2.3.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Instant terminal sharing" +HOMEPAGE="https://tmate.io/" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug libressl static-libs" + +SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +RDEPEND=" + sys-libs/zlib[static-libs?] + sys-libs/libutempter[static-libs?] + dev-libs/libevent[static-libs?] + dev-libs/msgpack[static-libs?] + >=net-libs/libssh-0.6.0[static-libs?] + !libressl? ( dev-libs/openssl:0=[static-libs?] ) + libressl? ( dev-libs/libressl:0=[static-libs?] ) +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + local myeconfargs=( + $(use_enable debug) + ) + econf "${myeconfargs[@]}" +} |