diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-03-12 20:22:06 +0100 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-13 10:17:05 +0300 |
commit | b03286375e2d68c4f5357e871bfe6790ba314c9b (patch) | |
tree | b5bb5f29c5d61169a70979a5a297b3e448c3a6e6 /media-gfx/gnuclad/gnuclad-0.2.4-r1.ebuild | |
parent | gui-libs/wlroots: drop 0.17.1 (diff) | |
download | gentoo-b03286375e2d68c4f5357e871bfe6790ba314c9b.tar.gz gentoo-b03286375e2d68c4f5357e871bfe6790ba314c9b.tar.bz2 gentoo-b03286375e2d68c4f5357e871bfe6790ba314c9b.zip |
media-gfx/gnuclad: EAPI8, fix LICENSE
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/35728
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'media-gfx/gnuclad/gnuclad-0.2.4-r1.ebuild')
-rw-r--r-- | media-gfx/gnuclad/gnuclad-0.2.4-r1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
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 +} |