summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2003-05-29 17:03:18 +0000
committerAron Griffis <agriffis@gentoo.org>2003-05-29 17:03:18 +0000
commit8f2493a1b933e87c46cca8453ea2bc096084d49a (patch)
tree76967e222f390890a6e9bb0568ffdd0ee57abed5 /app-editors
parentadding Manifest (diff)
downloadgentoo-2-8f2493a1b933e87c46cca8453ea2bc096084d49a.tar.gz
gentoo-2-8f2493a1b933e87c46cca8453ea2bc096084d49a.tar.bz2
gentoo-2-8f2493a1b933e87c46cca8453ea2bc096084d49a.zip
fix bug 21903
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/vi/ChangeLog6
-rw-r--r--app-editors/vi/Manifest4
-rw-r--r--app-editors/vi/vi-3.7-r3.ebuild13
3 files changed, 16 insertions, 7 deletions
diff --git a/app-editors/vi/ChangeLog b/app-editors/vi/ChangeLog
index e6746e408d13..e93a601b9a41 100644
--- a/app-editors/vi/ChangeLog
+++ b/app-editors/vi/ChangeLog
@@ -1,7 +1,11 @@
# ChangeLog for app-editors/vi
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/vi/ChangeLog,v 1.13 2003/05/14 01:39:22 kumba Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/vi/ChangeLog,v 1.14 2003/05/29 17:03:13 agriffis Exp $
+ 29 May 2003; Aron Griffis <agriffis@gentoo.org> vi-3.7-r3.ebuild:
+ Set WARN='' on the make command-line to fix bug 21903. This is a
+ compile-time error, not a run-time error, so no revision bump required.
+ Also mark stable on alpha.
*vi-3.7-r3 (05 Sep 2002)
diff --git a/app-editors/vi/Manifest b/app-editors/vi/Manifest
index d2874d159cbb..2c190697ae9b 100644
--- a/app-editors/vi/Manifest
+++ b/app-editors/vi/Manifest
@@ -1,5 +1,5 @@
-MD5 d2518dbb1e46e031ef99785ab048564a ChangeLog 1717
+MD5 48ca765ef3a9c0040c0393db82242b09 ChangeLog 1959
MD5 d184ae0401873a7120f50c3afc10071d vi-3.7-r2.ebuild 1230
-MD5 bff5490a195c1b4ad93ed74eb05bc55d vi-3.7-r3.ebuild 1320
+MD5 0b73702a6380590796c47b31a3af7c72 vi-3.7-r3.ebuild 1529
MD5 ce4d692dfa7de2308c057231387e920c files/digest-vi-3.7-r2 61
MD5 ce4d692dfa7de2308c057231387e920c files/digest-vi-3.7-r3 61
diff --git a/app-editors/vi/vi-3.7-r3.ebuild b/app-editors/vi/vi-3.7-r3.ebuild
index e299ea8bccad..e183b72f8040 100644
--- a/app-editors/vi/vi-3.7-r3.ebuild
+++ b/app-editors/vi/vi-3.7-r3.ebuild
@@ -1,19 +1,19 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/vi/vi-3.7-r3.ebuild,v 1.8 2003/05/14 01:39:22 kumba Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/vi/vi-3.7-r3.ebuild,v 1.9 2003/05/29 17:03:13 agriffis Exp $
-# NOTE: vi needs /etc/termcap to function properly with TERM=linux.
+IUSE=""
MY_P=ex-020403
S=${WORKDIR}/${MY_P}
DESCRIPTION="The original VI package"
SRC_URI="http://download.berlios.de/ex-vi/${MY_P}.tar.gz"
HOMEPAGE="http://ex-vi.berlios.de/"
-
LICENSE="Caldera"
SLOT="0"
-KEYWORDS="x86 ppc sparc arm ~mips"
+KEYWORDS="x86 ppc sparc arm ~mips alpha"
+# NOTE: vi needs /etc/termcap to function properly with TERM=linux.
DEPEND="sys-libs/ncurses
sys-libs/libtermcap-compat"
@@ -24,11 +24,16 @@ src_compile() {
# Do not use TERMLIB=ncurses, as it causes vi
# to segfault with TERM=linux.
+ #
+ # WARN is set in the environment in /sbin/functions.sh
+ # (unfortunately generic variable name). Need to reset on the
+ # make command-line to keep from breaking the build.
make DESTDIR=/usr \
TERMLIB=termlib \
PRESERVEDIR=/var/lib/expreserve \
RECOVER="-DEXRECOVER=\\\"/var/lib/exrecover\\\" \
-DEXPRESERVE=\\\"/var/lib/expreserve\\\"" \
+ WARN='' \
|| die "failed compilation"
}