summaryrefslogtreecommitdiff
path: root/app-admin/ttyplot
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
commitb590c8d7572b727d565cc0b8ff660d43569845de (patch)
tree06f7a4102ea4e845df8b66660f252920d52952f9 /app-admin/ttyplot
parent24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff)
downloadbaldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip
Adding metadata
Diffstat (limited to 'app-admin/ttyplot')
-rw-r--r--app-admin/ttyplot/Manifest2
-rw-r--r--app-admin/ttyplot/metadata.xml9
-rw-r--r--app-admin/ttyplot/ttyplot-1.7.2.ebuild31
-rw-r--r--app-admin/ttyplot/ttyplot-1.7.4.ebuild31
4 files changed, 73 insertions, 0 deletions
diff --git a/app-admin/ttyplot/Manifest b/app-admin/ttyplot/Manifest
new file mode 100644
index 000000000000..f2d425ed6f52
--- /dev/null
+++ b/app-admin/ttyplot/Manifest
@@ -0,0 +1,2 @@
+DIST ttyplot-1.7.2.gh.tar.gz 57429 BLAKE2B 012adf83244cc3f499a4ba765b88330228d1288d55da997203a14ad749cb790151e0fcd93a051278354a81db7f0d3ce748721aadabf6ea97af0165360dab9444 SHA512 48aefb0d68603ca57dbe860adb0939ff6728b7853a001eb8c7c06b5967b6b1e8d8608b0982283923235e807e2d5291d2f54d4c7662f8b15869fd3ad75daa1053
+DIST ttyplot-1.7.4.gh.tar.gz 60181 BLAKE2B 3eafd6e8a595ea7e253dc1431c8d69db58d753c4481f2ab75123efb3f2aac779f23b05051b008339202d4299c492ecf6d97d97d8bdaaaacf0ba63d6e7b0fb8b3 SHA512 5168395b38b89bc9b21b70bdff651d162e081ef041d115c176d9bd0775e5835aa49ca4f136871ab0896a727a5cf6e430367fc321c205822a8fb2c84878728e23
diff --git a/app-admin/ttyplot/metadata.xml b/app-admin/ttyplot/metadata.xml
new file mode 100644
index 000000000000..c083c00402f0
--- /dev/null
+++ b/app-admin/ttyplot/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>sping@gentoo.org</email>
+ <name>Sebastian Pipping</name>
+ </maintainer>
+ <origin>baldeagleos-repo</origin>
+</pkgmetadata>
diff --git a/app-admin/ttyplot/ttyplot-1.7.2.ebuild b/app-admin/ttyplot/ttyplot-1.7.2.ebuild
new file mode 100644
index 000000000000..5c23d37f8189
--- /dev/null
+++ b/app-admin/ttyplot/ttyplot-1.7.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit toolchain-funcs
+
+DESCRIPTION="Realtime plotting utility with data input from stdin"
+HOMEPAGE="https://github.com/tenox7/ttyplot"
+SRC_URI="https://github.com/tenox7/ttyplot/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="virtual/pkgconfig"
+DEPEND="${RDEPEND}
+ sys-libs/ncurses[tinfo]"
+
+src_compile() {
+ emake CC="$(tc-getCC)"
+}
+
+src_install() {
+ local args=(
+ PREFIX=/usr
+ MANPREFIX=/usr/share/man
+ DESTDIR="${D}"
+ )
+ emake "${args[@]}" install
+}
diff --git a/app-admin/ttyplot/ttyplot-1.7.4.ebuild b/app-admin/ttyplot/ttyplot-1.7.4.ebuild
new file mode 100644
index 000000000000..52bfa5657fb3
--- /dev/null
+++ b/app-admin/ttyplot/ttyplot-1.7.4.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit toolchain-funcs
+
+DESCRIPTION="Realtime plotting utility with data input from stdin"
+HOMEPAGE="https://github.com/tenox7/ttyplot"
+SRC_URI="https://github.com/tenox7/ttyplot/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="amd64 x86"
+
+RDEPEND="virtual/pkgconfig"
+DEPEND="${RDEPEND}
+ sys-libs/ncurses[tinfo]"
+
+src_compile() {
+ emake CC="$(tc-getCC)" VERSION="${PV}"
+}
+
+src_install() {
+ local args=(
+ PREFIX=/usr
+ MANPREFIX=/usr/share/man
+ DESTDIR="${D}"
+ )
+ emake "${args[@]}" install
+}