diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-08-30 20:40:10 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-08-30 20:40:10 +0300 |
commit | 013b6b38b681583d81590f0178629c42bbc37faf (patch) | |
tree | 16fe258a6c3a43af51699d13de5562854c6e4a7f /app-misc/cmatrix | |
parent | app-misc/cmatrix: Stabilize 2.0-r5 sparc, #938732 (diff) | |
download | gentoo-013b6b38b681583d81590f0178629c42bbc37faf.tar.gz gentoo-013b6b38b681583d81590f0178629c42bbc37faf.tar.bz2 gentoo-013b6b38b681583d81590f0178629c42bbc37faf.zip |
app-misc/cmatrix: drop 2.0-r4
Closes: https://bugs.gentoo.org/938732
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-misc/cmatrix')
-rw-r--r-- | app-misc/cmatrix/cmatrix-2.0-r4.ebuild | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/app-misc/cmatrix/cmatrix-2.0-r4.ebuild b/app-misc/cmatrix/cmatrix-2.0-r4.ebuild deleted file mode 100644 index fc52c436c8d1..000000000000 --- a/app-misc/cmatrix/cmatrix-2.0-r4.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -FONT_SUFFIX="pcf" - -inherit cmake font - -DESCRIPTION="An ncurses based app to show a scrolling screen from the Matrix" -HOMEPAGE=" - https://www.asty.org/cmatrix/ - https://github.com/abishekvashok/cmatrix -" -SRC_URI="https://github.com/abishekvashok/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ppc ppc64 sparc x86" -IUSE="+unicode" - -DEPEND="sys-libs/ncurses:=[unicode(+)?]" -BDEPEND="" -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 -} |