summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/cmatrix/cmatrix-2.0.ebuild')
-rw-r--r--app-misc/cmatrix/cmatrix-2.0.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/app-misc/cmatrix/cmatrix-2.0.ebuild b/app-misc/cmatrix/cmatrix-2.0.ebuild
deleted file mode 100644
index 64b0aaf7b480..000000000000
--- a/app-misc/cmatrix/cmatrix-2.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-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="X"
-
-DEPEND="
- sys-libs/ncurses:0=
- X? ( >=x11-apps/mkfontscale-1.2.0 )
-"
-
-RDEPEND="
- ${DEPEND}
-"
-
-src_install() {
- cmake_src_install
- font_src_install
- doman ${PN}.1
-}
-
-pkg_postinst() {
- if use X; then
- if [[ -d "${ROOT}"usr/share/fonts/misc ]] ; then
- einfo ">>> Running mkfontdir on ${ROOT}usr/share/fonts/misc"
- mkfontdir "${ROOT}"usr/share/fonts/misc
- fi
- font_pkg_postinst
- fi
-}
-
-pkg_postrm() {
- use X && font_pkg_postrm
-}