diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-10-20 23:56:48 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-10-20 23:56:48 +0000 |
commit | 084595a6cddb86eca9c4b8ad1a198d413834bbaa (patch) | |
tree | c747468de5e1f63a6c9af7ebfecca013ebe4efc7 /app-editors | |
parent | version bump (diff) | |
download | gentoo-2-084595a6cddb86eca9c4b8ad1a198d413834bbaa.tar.gz gentoo-2-084595a6cddb86eca9c4b8ad1a198d413834bbaa.tar.bz2 gentoo-2-084595a6cddb86eca9c4b8ad1a198d413834bbaa.zip |
version bump
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/nvi/ChangeLog | 9 | ||||
-rw-r--r-- | app-editors/nvi/files/digest-nvi-1.81.5 | 1 | ||||
-rw-r--r-- | app-editors/nvi/nvi-1.81.5.ebuild | 28 |
3 files changed, 37 insertions, 1 deletions
diff --git a/app-editors/nvi/ChangeLog b/app-editors/nvi/ChangeLog index db3e63aabbf7..bc7e5140c2e6 100644 --- a/app-editors/nvi/ChangeLog +++ b/app-editors/nvi/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-editors/nvi # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.3 2002/09/07 14:31:53 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.4 2002/10/20 23:56:48 seemant Exp $ + +*nvi-1.81.5 (20 Oct 2002) + + 20 Oct 2002; Seemant Kulleen <seemant@gentoo.org> nvi-1.81.5.ebuild + files/digest-nvi-1.81.5 : + + Version bump, thanks to: ajs@pigpond.com (Andrew Snare) in bug #7502. *nvi-1.81.4 (1 Feb 2002) diff --git a/app-editors/nvi/files/digest-nvi-1.81.5 b/app-editors/nvi/files/digest-nvi-1.81.5 new file mode 100644 index 000000000000..38945f51da60 --- /dev/null +++ b/app-editors/nvi/files/digest-nvi-1.81.5 @@ -0,0 +1 @@ +MD5 5cc674f049054f3e8f7600df8d8d5cf4 nvi-1.81.5.tar.gz 1628555 diff --git a/app-editors/nvi/nvi-1.81.5.ebuild b/app-editors/nvi/nvi-1.81.5.ebuild new file mode 100644 index 000000000000..086a12356ab1 --- /dev/null +++ b/app-editors/nvi/nvi-1.81.5.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.5.ebuild,v 1.1 2002/10/20 23:56:48 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Vi clone" +SRC_URI="http://www.kotnet.org/~skimo/nvi/devel/${P}.tar.gz" +HOMEPAGE="http://www.bostic.com/vi/" +DEPEND="sys-libs/db" + +SLOT="0" +LICENSE="Sleepycat" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64" + +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 + einstall || die +} |