mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
44 lines
848 B
Bash
44 lines
848 B
Bash
# Copyright 1999-2025 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 ~arm64 ~hppa ppc ppc64 ~sparc x86"
|
|
IUSE="+unicode"
|
|
|
|
DEPEND="sys-libs/ncurses:=[unicode(+)?]"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
PATCHES=( "${FILESDIR}"/${P}-cmake4.patch )
|
|
|
|
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
|
|
}
|