blob: 1bdbea51792a84ba21149c828d2cada247a5d121 (
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.8.ebuild,v 1.1 2009/12/29 16:54:26 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"
|