blob: 668c3ab1a1f277132f0029a11583e776ca4950f4 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/levee/levee-3.4o.ebuild,v 1.12 2003/02/10 11:09:16 seemant Exp $
IUSE=""
S=${WORKDIR}/${PN}
DESCRIPTION="Really tiny vi clone, for things like rescue disks"
HOMEPAGE="http://www.pell.chi.il.us/~orc/Code/"
SRC_URI="http://www.pell.chi.il.us/~orc/Code/${PN}.tar.gz"
SLOT="0"
LICENSE="levee"
KEYWORDS="x86 ppc sparc"
DEPEND="sys-libs/ncurses"
src_compile() {
sed -e "/^CFLAGS/ s:-O:${CFLAGS}:" < Makefile > Makefile.out
mv Makefile.out Makefile
make LIBES=-lncurses || die
}
src_install() {
exeinto /usr/bin
newexe lev lv
doman lv.1
}
|