blob: b4276bdff909a82e3ad9407a188be1b7b03c57be (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/levee/levee-3.5.ebuild,v 1.2 2008/12/03 11:57:14 loki_val Exp $
inherit toolchain-funcs eutils
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/levee/${P}.tar.gz"
SLOT="0"
LICENSE="levee"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="!app-text/lv
sys-libs/ncurses"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-QA.patch
}
src_compile() {
./configure.sh --prefix=/usr || die "configure failed"
emake CFLAGS="${CFLAGS} -Wall -Wextra ${LDFLAGS}" \
CC=$(tc-getCC) || die "emake failed"
}
src_install() {
emake PREFIX="${D}" install || die "emake install failed"
}
|