From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C646B15838C for ; Sun, 28 Jan 2024 21:29:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17642E2A0C; Sun, 28 Jan 2024 21:29:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C97EAE2A0C for ; Sun, 28 Jan 2024 21:29:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 153143434AC for ; Sun, 28 Jan 2024 21:29:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A200C12C8 for ; Sun, 28 Jan 2024 21:29:30 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1706477307.8de6990f9d5b31e5f89d44303ac31cba723e18a8.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ttyplot/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/ttyplot/ttyplot-1.6.2-r1.ebuild X-VCS-Directories: app-admin/ttyplot/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 8de6990f9d5b31e5f89d44303ac31cba723e18a8 X-VCS-Branch: master Date: Sun, 28 Jan 2024 21:29:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 327da609-56d0-4948-8a69-c7465b4abc9f X-Archives-Hash: 86afd84b30ddb656fed760a61f474661 commit: 8de6990f9d5b31e5f89d44303ac31cba723e18a8 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Jan 28 21:28:27 2024 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Jan 28 21:28:27 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8de6990f app-admin/ttyplot: Use tc-getCC rather than cc Closes: https://bugs.gentoo.org/923129 Signed-off-by: Sebastian Pipping gentoo.org> app-admin/ttyplot/ttyplot-1.6.2-r1.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/app-admin/ttyplot/ttyplot-1.6.2-r1.ebuild b/app-admin/ttyplot/ttyplot-1.6.2-r1.ebuild new file mode 100644 index 000000000000..a0e31d253379 --- /dev/null +++ b/app-admin/ttyplot/ttyplot-1.6.2-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2024 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 +}