blob: fac5f939102538f6d76bcc982061904afbab32fe (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/nfoview/nfoview-1.6.ebuild,v 1.3 2009/12/29 16:53:07 vapier Exp $
inherit distutils
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://gitorious.org/nfoview/mainline.git"
inherit git
SRC_URI=""
#KEYWORDS=""
else
SRC_URI="http://download.gna.org/nfoview/${PV}/${P}.tar.bz2"
KEYWORDS="amd64 x86"
fi
DESCRIPTION="simple viewer for NFO files, which are ASCII art in the CP437 codepage"
HOMEPAGE="http://home.gna.org/nfoview/"
LICENSE="GPL-3"
SLOT="0"
IUSE=""
DEPEND="dev-python/pygtk"
RDEPEND="${DEPEND}
media-fonts/terminus-font"
|