blob: 37e00a4fcf14255083ed233e77419771597482ae (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/ranger/ranger-1.4.3.ebuild,v 1.1 2011/04/08 17:38:52 radhermit Exp $
EAPI=3
PYTHON_DEPEND="2:2.6 3:3.1"
PYTHON_USE_WITH="ncurses"
inherit distutils
DESCRIPTION="A vim-inspired file manager for the console"
HOMEPAGE="http://ranger.nongnu.org/"
SRC_URI="http://nongnu.org/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="sys-apps/less"
pkg_postinst() {
distutils_pkg_postinst
elog "Ranger has many optional dependencies to support enhanced file previews."
elog "See the README or homepage for more details."
}
|