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 5ACDB158041 for ; Sat, 13 Apr 2024 07:25:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C9A0E2A3F; Sat, 13 Apr 2024 07:25:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 662B0E2A3D for ; Sat, 13 Apr 2024 07:25:00 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5C9B9343211 for ; Sat, 13 Apr 2024 07:24:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B117F16A5 for ; Sat, 13 Apr 2024 07:24:57 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1712992625.b03286375e2d68c4f5357e871bfe6790ba314c9b.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/gnuclad/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/gnuclad/gnuclad-0.2.4-r1.ebuild X-VCS-Directories: media-gfx/gnuclad/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: b03286375e2d68c4f5357e871bfe6790ba314c9b X-VCS-Branch: master Date: Sat, 13 Apr 2024 07:24:57 +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: a3d96d53-8f4c-4b63-8a5c-36c24212d253 X-Archives-Hash: 4934a81008e0b88f2523d00a0eee5a71 commit: b03286375e2d68c4f5357e871bfe6790ba314c9b Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Mar 12 19:22:06 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Apr 13 07:17:05 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0328637 media-gfx/gnuclad: EAPI8, fix LICENSE Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/35728 Signed-off-by: Arthur Zamarin gentoo.org> media-gfx/gnuclad/gnuclad-0.2.4-r1.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/media-gfx/gnuclad/gnuclad-0.2.4-r1.ebuild b/media-gfx/gnuclad/gnuclad-0.2.4-r1.ebuild new file mode 100644 index 000000000000..b7c62a8e14c1 --- /dev/null +++ b/media-gfx/gnuclad/gnuclad-0.2.4-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Cladogram tree generator mainly used by the GNU/Linux distro timeline project" +HOMEPAGE="https://launchpad.net/gnuclad/" +SRC_URI="https://launchpad.net/gnuclad/trunk/$(ver_cut 1-2)/+download/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="examples" + +PATCHES=( + "${FILESDIR}/${P}"-werror.patch +) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + doman doc/man/gnuclad.1 + use examples && dodoc -r example +}