blob: e45cd0871d9c33b3af67cef3ed2179e3777fc408 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Really tiny vi clone, for things like rescue disks"
HOMEPAGE="https://www.pell.portland.or.us/~orc/Code/levee/"
SRC_URI="https://www.pell.portland.or.us/~orc/Code/levee/${P}.tar.bz2"
SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-patches.tar.xz"
LICENSE="levee"
SLOT="0"
KEYWORDS="amd64 ~arm64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
RDEPEND="
!app-text/lv
sys-libs/ncurses:0=
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${WORKDIR}"/${P}-patches
)
src_configure() {
export AC_CPP_PROG="$(tc-getCPP)"
export AC_PATH="${PATH}"
export AC_LIBDIR="$($(tc-getPKG_CONFIG) --libs ncurses)"
# --sive=256000 because configure.sh expects size to be a number and not the
# tool lize "llvm-size" or "x86_64-pc-linux-gnu-size".
# See #729264
./configure.sh \
--prefix="${PREFIX}"/usr --size=256000 || die "configure failed"
}
src_compile() {
emake \
CFLAGS="${CFLAGS} ${LDFLAGS}" \
CC="$(tc-getCC)"
}
src_install() {
emake PREFIX="${D}/${EPREFIX}" install
}
|