diff options
author | 2001-08-08 05:24:27 +0000 | |
---|---|---|
committer | 2001-08-08 05:24:27 +0000 | |
commit | c55499947829535b376ca2c5c3891486b92cf54a (patch) | |
tree | 8064fb2804fed280067cef5590449b6c6221ea14 /app-editors/nvi | |
parent | great editor! supersmall, written in asm, and key bindings for emacs, vi, (diff) | |
download | gentoo-2-c55499947829535b376ca2c5c3891486b92cf54a.tar.gz gentoo-2-c55499947829535b376ca2c5c3891486b92cf54a.tar.bz2 gentoo-2-c55499947829535b376ca2c5c3891486b92cf54a.zip |
nvi is a vi-clone.
Diffstat (limited to 'app-editors/nvi')
-rw-r--r-- | app-editors/nvi/files/digest-nvi-1.81.4 | 1 | ||||
-rw-r--r-- | app-editors/nvi/nvi-1.81.4.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/app-editors/nvi/files/digest-nvi-1.81.4 b/app-editors/nvi/files/digest-nvi-1.81.4 new file mode 100644 index 000000000000..528e8a7545c7 --- /dev/null +++ b/app-editors/nvi/files/digest-nvi-1.81.4 @@ -0,0 +1 @@ +MD5 5826bdceb43cb3787ee89ef57de033f6 nvi-1.81.4.tar.gz diff --git a/app-editors/nvi/nvi-1.81.4.ebuild b/app-editors/nvi/nvi-1.81.4.ebuild new file mode 100644 index 000000000000..b7a93763d5e9 --- /dev/null +++ b/app-editors/nvi/nvi-1.81.4.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: tools@gentoo.org +# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.4.ebuild,v 1.1 2001/08/08 05:24:27 chadh 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="" + +src_compile() { + cd build.unix + try ../dist/configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} + try emake +} + +src_install () { + cd ${S}/build.unix + try make prefix=${D}/usr install +} + |