From d18bf1e01b65ee4bf0c804e2843b282d3d4e5d7c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 15 Jun 2021 14:57:03 +0100 Subject: gentoo resync : 15.06.2021 --- app-misc/cmatrix/Manifest | 2 +- app-misc/cmatrix/cmatrix-2.0-r2.ebuild | 54 ---------------------------------- app-misc/cmatrix/cmatrix-2.0-r3.ebuild | 45 ++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+), 55 deletions(-) delete mode 100644 app-misc/cmatrix/cmatrix-2.0-r2.ebuild create mode 100644 app-misc/cmatrix/cmatrix-2.0-r3.ebuild (limited to 'app-misc/cmatrix') diff --git a/app-misc/cmatrix/Manifest b/app-misc/cmatrix/Manifest index 0439fb1a56bf..405d4cb7ec15 100644 --- a/app-misc/cmatrix/Manifest +++ b/app-misc/cmatrix/Manifest @@ -1,3 +1,3 @@ DIST cmatrix-2.0.tar.gz 205640 BLAKE2B 3d38903b93853afc077c00308b84106664ec2ea3a31601ba7ab858f6571158182858de87392b5940725456bdd8c82232228451a4d30813e2c0a8bec99f285814 SHA512 1aeecd8e8abb6f87fc54f88a8c25478f69d42d450af782e73c0fca7f051669a415c0505ca61c904f960b46bbddf98cfb3dd1f9b18917b0b39e95d8c899889530 -EBUILD cmatrix-2.0-r2.ebuild 1029 BLAKE2B b647b4f710a437fdb6905875e3a3d8df95dbf8a762f54a5706740a82cc449bd79f38917835a3823ad24f8d6cf071e57c3eb34ed50b5fd149246ef63b92c47a60 SHA512 4cb93f824a360b6231dae0262f882ba6bf9aae161e3e17391e830370d2ab21e50b5bfc21d357b7cb3bf74925f8d04538fae53543f2a6cf35b8e1c854e254cbae +EBUILD cmatrix-2.0-r3.ebuild 834 BLAKE2B e21d62ae01d97cca5681c4f7c646b724cb2bf1a937bb123446e0d69564dc08b5e5b473ef8912604d4c9c31caa030442afdebae0db724f27a01682b6146e68fc8 SHA512 b5b5af76c4035fc821a22e72eb8ec65c9df38b4f5e4d5a80d6055855625be6b172619d2d5c7494910253600d1d24db82403192084450ccbba73fd5050a0bccfd MISC metadata.xml 251 BLAKE2B e9e9d48943645d8b737bc1f7ab0efb05db0f8eddad759c9bb40d07dc008fbfb8f5cca2020de71a9ff6945f5d66292ac02355773545010cd49c77fe6dd5ab7b40 SHA512 1b6a6955118c1a74cc89a77d6de9be8f4ff9c7137c186753462670a5b93457dfd034ad5d1f4d2507ac95cc149c2a042fa5324220b58702a56b09d91de40151c9 diff --git a/app-misc/cmatrix/cmatrix-2.0-r2.ebuild b/app-misc/cmatrix/cmatrix-2.0-r2.ebuild deleted file mode 100644 index 20bbda5977bb..000000000000 --- a/app-misc/cmatrix/cmatrix-2.0-r2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 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 +unicode" - -DEPEND=" - sys-libs/ncurses:0=[unicode?] -" -BDEPEND=" - X? ( >=x11-apps/mkfontscale-1.2.0 ) -" -RDEPEND=" - ${DEPEND} -" - -src_configure() { - mycmakeargs=( - -DCURSES_NEED_WIDE=$(usex unicode) - ) - cmake_src_configure -} - -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 -} diff --git a/app-misc/cmatrix/cmatrix-2.0-r3.ebuild b/app-misc/cmatrix/cmatrix-2.0-r3.ebuild new file mode 100644 index 000000000000..18a688600f04 --- /dev/null +++ b/app-misc/cmatrix/cmatrix-2.0-r3.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2021 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:0=[unicode?]" +BDEPEND="" +RDEPEND="${DEPEND}" + +src_configure() { + 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 +} -- cgit v1.2.3