diff options
author | gentoo-setan <gentoo@supporter.addy.io> | 2024-05-27 09:43:46 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2024-05-30 21:16:57 +0200 |
commit | eb8886f5f8cac97fb265696070a9722fc6e5cb0a (patch) | |
tree | 529e3211031c3ec6eb39d336e2f24b63c24dce5c /app-misc/cmatrix | |
parent | app-text/poppler: drop 24.03.0 (diff) | |
download | gentoo-eb8886f5f8cac97fb265696070a9722fc6e5cb0a.tar.gz gentoo-eb8886f5f8cac97fb265696070a9722fc6e5cb0a.tar.bz2 gentoo-eb8886f5f8cac97fb265696070a9722fc6e5cb0a.zip |
app-misc/cmatrix: update EAPI, DESCRIPTION, LICENSE, and HOMEPAGE
Signed-off-by: gentoo-setan <gentoo@supporter.addy.io>
Closes: https://github.com/gentoo/gentoo/pull/36836
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'app-misc/cmatrix')
-rw-r--r-- | app-misc/cmatrix/cmatrix-2.0-r5.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/app-misc/cmatrix/cmatrix-2.0-r5.ebuild b/app-misc/cmatrix/cmatrix-2.0-r5.ebuild new file mode 100644 index 000000000000..5d79851505fb --- /dev/null +++ b/app-misc/cmatrix/cmatrix-2.0-r5.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +FONT_SUFFIX="pcf" + +inherit cmake font + +DESCRIPTION="Ncurses based app to show a scrolling screen from the Matrix" +HOMEPAGE="https://github.com/abishekvashok/cmatrix" +SRC_URI="https://github.com/abishekvashok/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="+unicode" + +DEPEND="sys-libs/ncurses:=[unicode(+)?]" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DCURSES_NEED_WIDE=$(usex unicode) + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + use X && font_src_install + doman ${PN}.1 +} + +pkg_postinst() { + use X && font_pkg_postinst +} + +pkg_postrm() { + use X && font_pkg_postrm +} |