You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-editors/levee/levee-3.5a.ebuild

40 lines
1010 B

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
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"
LICENSE="levee"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
IUSE=""
DEPEND="!app-text/lv
sys-libs/ncurses:0="
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${PN}-3.4o-darwin.patch
epatch "${FILESDIR}"/${P}-QA.patch
epatch "${FILESDIR}"/${PN}-3.5-glibc210.patch
}
src_configure() {
export AC_CPP_PROG=$(tc-getCPP)
export AC_PATH=${PATH}
export AC_LIBDIR="$($(tc-getPKG_CONFIG) --libs ncurses)"
./configure.sh --prefix="${PREFIX}"/usr || die "configure failed"
}
src_compile() {
emake CFLAGS="${CFLAGS} -Wall -Wextra ${LDFLAGS}" CC=$(tc-getCC)
}
src_install() {
emake PREFIX="${D}${EPREFIX}" install
}