blob: a5a1f7429ab3eb339247be43adc161f59e8d7abe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/cmatrix/cmatrix-1.2a-r1.ebuild,v 1.7 2008/02/27 22:37:00 jer Exp $
inherit autotools eutils
DESCRIPTION="An ncurses based app to show a scrolling screen from the Matrix"
HOMEPAGE="http://www.asty.org/cmatrix.html"
SRC_URI="http://www.asty.org/${PN}/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ppc 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
eautoreconf
}
src_install() {
dodir /usr/share/consolefonts || die 'dodir failed'
dodir /usr/lib/kbd/consolefonts || die 'dodir failed'
if use X;then
dodir /usr/lib/X11/fonts/misc || die 'dodir failed'
fi
emake DESTDIR="${D}" install || die 'emake install failed'
}
pkg_postinst() {
if use X; then
if [ -d "${ROOT}"usr/lib/X11/fonts/misc ] ; then
einfo ">>> Running mkfontdir on ${ROOT}usr/lib/X11/fonts/misc"
mkfontdir "${ROOT}"usr/lib/X11/fonts/misc || die 'mkfontdir failed'
fi
fi
}
|