diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-01-17 23:49:17 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-01-17 23:52:11 +0100 |
commit | c5024a1d1c40752e809392fccb6bec236db5f733 (patch) | |
tree | 3249f6a12d77c4bf8a6c84ab4515a9511f5aaba1 | |
parent | app-misc/cmatrix: stable for the remaining arches using the ALLARCHES policy. (diff) | |
download | gentoo-c5024a1d1c40752e809392fccb6bec236db5f733.tar.gz gentoo-c5024a1d1c40752e809392fccb6bec236db5f733.tar.bz2 gentoo-c5024a1d1c40752e809392fccb6bec236db5f733.zip |
app-misc/cmatrix: clean up old..
Package-Manager: portage-2.3.0
-rw-r--r-- | app-misc/cmatrix/cmatrix-1.2a-r1.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/app-misc/cmatrix/cmatrix-1.2a-r1.ebuild b/app-misc/cmatrix/cmatrix-1.2a-r1.ebuild deleted file mode 100644 index 9d107b569e8a..000000000000 --- a/app-misc/cmatrix/cmatrix-1.2a-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -inherit autotools eutils - -DESCRIPTION="An ncurses based app to show a scrolling screen from the Matrix" -HOMEPAGE="http://www.asty.org/cmatrix" -SRC_URI="http://www.asty.org/${PN}/dist/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 hppa ppc ~ppc64 sparc x86" -IUSE="X" - -DEPEND="X? ( x11-apps/mkfontdir ) - sys-libs/ncurses" - -src_unpack() { - unpack ${A} - # patch Makefile.am to make sure the fonts installations don't violate the - # sandbox. - cd "${S}" - epatch "${FILESDIR}"/${P}-gentoo.patch - if use X ; then - epatch "${FILESDIR}"/${P}-fontdir.patch - fi - eautoreconf -} - -src_install() { - dodir /usr/share/consolefonts || die 'dodir failed' - dodir /usr/lib/kbd/consolefonts || die 'dodir failed' - if use X;then - dodir /usr/share/fonts/misc || die 'dodir failed' - fi - emake DESTDIR="${D}" install || die 'emake install failed' -} - -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 || die 'mkfontdir failed' - fi - fi -} |