blob: f8f6943f49ae711e7bc197fe5195e4c2930f4a88 (
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
45
46
47
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/nfoview/nfoview-1.9.5.ebuild,v 1.1 2011/06/12 01:24:07 vapier Exp $
EAPI=3
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils fdo-mime gnome2-utils
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://github.com/otsaloma/nfoview.git"
inherit git
SRC_URI=""
#KEYWORDS=""
else
SRC_URI="http://download.gna.org/nfoview/1.9/${P}.tar.gz"
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"
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
distutils_pkg_postinst
}
pkg_postrm() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
distutils_pkg_postrm
}
|