blob: 08d1719bfea26cf6616e75049bef368faf027b96 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.4.ebuild,v 1.4 2002/07/25 20:19:41 kabau Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Vi clone"
SRC_URI="http://www.kotnet.org/~skimo/nvi/devel/${P}.tar.gz"
HOMEPAGE="http://www.kotnet.org/~skimo/nvi"
DEPEND=">=sys-libs/db-3.1"
RDEPEND=""
SLOT="0"
LICENSE="Sleepycat"
KEYWORDS="x86"
src_compile() {
cd build.unix
../dist/configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} || die
emake || die
}
src_install () {
cd ${S}/build.unix
make prefix=${D}/usr install || die
}
|