blob: f699e9275211a339de593f0d0a90babc9f1d6ad9 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
MY_P=${P/_beta/-test}
DESCRIPTION="Ncurses file manager with a full-screen user interface"
HOMEPAGE="http://www.clex.sk/"
SRC_URI="http://www.clex.sk/download/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE=""
DEPEND="sys-libs/ncurses"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN}-${PV%_beta*}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc ChangeLog
}
|