diff options
author | Kurt Kanzenbach <kurt@kmk-computers.de> | 2022-12-04 15:03:18 +0100 |
---|---|---|
committer | Kurt Kanzenbach <kurt@kmk-computers.de> | 2022-12-04 15:03:18 +0100 |
commit | 7fea34858f10226fc005e3ba449b01ca5b7b8e25 (patch) | |
tree | 15a1daeffad1844d94cd747252ada5699f20fe49 /net-dialup | |
parent | sys-libs/libfixposix: drop to maintainer-needed (diff) | |
download | guru-7fea34858f10226fc005e3ba449b01ca5b7b8e25.tar.gz guru-7fea34858f10226fc005e3ba449b01ca5b7b8e25.tar.bz2 guru-7fea34858f10226fc005e3ba449b01ca5b7b8e25.zip |
net-dialup/tio: add 2.4
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/tio/Manifest | 1 | ||||
-rw-r--r-- | net-dialup/tio/tio-2.4.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/net-dialup/tio/Manifest b/net-dialup/tio/Manifest index 572ecfc02..57a953ba2 100644 --- a/net-dialup/tio/Manifest +++ b/net-dialup/tio/Manifest @@ -1 +1,2 @@ DIST tio-2.3.tar.xz 3416720 BLAKE2B cecca8b4c9bab7e6ece0f98e39069e70547ddba82e758a1f02f4aeb8d4310e8f3a9af1f4a968fe54929cd09d4c93bce3a3ac530f81e740d75666973b481d6794 SHA512 0f8a825c5c57bb2bc9ca83f45ee92c7d70c3c74d3684a485cde46cd9e5bb4009526d780cc78fa92e8fbd3b7a6332f1e72609e1b4f06eeb8c7b52a1d4cc177610 +DIST tio-2.4.tar.xz 3417548 BLAKE2B 15575e603f22a02cbf999916189a0bed8de094b1a3577ae76633169acb4cb8ba1ee62ff37b0c7076dff558f28b371adf7ff55bc896bb752ba7ff0f45bc4068f5 SHA512 397c369a858677479c30034ecd6aba0a4c5ae884473ba191d58e8b5427c58f7cf5215aa9cdf134cac9c78cc67ba2ec6cd92a8a56f755caa465bcd02c1c41018b diff --git a/net-dialup/tio/tio-2.4.ebuild b/net-dialup/tio/tio-2.4.ebuild new file mode 100644 index 000000000..aa1af5f4e --- /dev/null +++ b/net-dialup/tio/tio-2.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson bash-completion-r1 + +DESCRIPTION="Simple TTY terminal application" +HOMEPAGE="https://tio.github.io/" +SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz" + +SLOT="0" +LICENSE="GPL-2+" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + dev-libs/inih +" +DEPEND=" + ${RDEPEND} +" + +src_configure() { + local emesonargs=( + -Dbashcompletiondir="$(get_bashcompdir)" + ) + + meson_src_configure +} |