commit:     18a2e5473cfc844be6ae5a3a3a24dda5d0f4fd27
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Tue May 31 07:01:43 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue May 31 07:06:27 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18a2e547

app-misc/cmatrix: EAPI 6 bump.

Package-Manager: portage-2.2.28

 app-misc/cmatrix/cmatrix-1.2a-r2.ebuild | 46 +++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/app-misc/cmatrix/cmatrix-1.2a-r2.ebuild 
b/app-misc/cmatrix/cmatrix-1.2a-r2.ebuild
new file mode 100644
index 0000000..057b62e
--- /dev/null
+++ b/app-misc/cmatrix/cmatrix-1.2a-r2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+EAPI=6
+
+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:0="
+
+RDEPEND="${DEPEND}"
+
+CPATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+
+src_prepare() {
+       default
+       use X && CPATCHES+=( "${FILESDIR}"/${P}-fontdir.patch )
+       epatch "${CPATCHES[@]}"
+       eautoreconf
+}
+
+src_install() {
+       dodir /usr/share/consolefonts
+       dodir /usr/lib/kbd/consolefonts
+       use X && dodir /usr/share/fonts/misc
+       emake DESTDIR="${D}" install
+}
+
+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
+}

Reply via email to