# 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" }