Update vigor to 0.016. Changes:
Version 0.016 (May 2 19:36) * Enable Version 0.015 (Mar 25 15:17) * Disable by default built-in curses, db, and re libraries. Most OS's these days have proper libraries for these, and I was seeing conflicts (particularly on SuSE under Vigor 0.014). This may break things on some other OS's, probably older ones. If so, try using --enable-curses --enable-db --enable-re on the command line. Version 0.014 (Feb 8 14:50) * Remove the hack to the EULA that produced the Jumping Vigor Bug. Version 0.013 (Feb 5 11:53) * Fix to configure.in: it looked for Tcl on Debian systems when it was supposed to look for Tk. Version 0.012 (Feb 4 00:28) * Updated EULA, made dialog box move along with assistant Version 0.011 (Feb 2 00:10) * Look for libtcl8.2 etc (as opposed to libtcl82 etc); handle select() calls prior to assistant initialization
This commit is contained in:
parent
d382f07f23
commit
22c256a3a5
5 changed files with 48 additions and 46 deletions
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.7 2001/09/27 23:18:01 jlam Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2001/11/15 23:40:32 hubertf Exp $
|
||||
#
|
||||
|
||||
DISTNAME= vigor-0.010
|
||||
DISTNAME= vigor-0.016
|
||||
CATEGORIES= editors
|
||||
MASTER_SITES= http://www.red-bean.com:8080/
|
||||
|
||||
|
|
|
@ -1,23 +1,23 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2001/10/31 21:24:04 zuntum Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2001/11/15 23:40:33 hubertf Exp $
|
||||
bin/vigor
|
||||
share/vi/catalog/german
|
||||
share/vi/catalog/spanish
|
||||
share/vi/catalog/ru_SU.KOI8-R
|
||||
share/vi/catalog/swedish
|
||||
share/vi/catalog/french
|
||||
share/vi/catalog/english
|
||||
share/vi/catalog/dutch
|
||||
share/vi/perl/VI.pm
|
||||
share/vi/perl/wc.pl
|
||||
share/vi/perl/tk.pl
|
||||
share/vi/perl/make.pl
|
||||
share/vi/perl/forall.pl
|
||||
share/vi/tcl/wc.tcl
|
||||
share/vi/tcl/mailprocs.tcl
|
||||
share/vi/tcl/gnats.tcl
|
||||
share/vi/tcl/errors.tcl
|
||||
share/vi/recover
|
||||
@dirrm share/vi/tcl
|
||||
@dirrm share/vi/perl
|
||||
@dirrm share/vi/catalog
|
||||
@dirrm share/vi
|
||||
share/vigor/catalog/dutch
|
||||
share/vigor/catalog/english
|
||||
share/vigor/catalog/french
|
||||
share/vigor/catalog/german
|
||||
share/vigor/catalog/ru_SU.KOI8-R
|
||||
share/vigor/catalog/spanish
|
||||
share/vigor/catalog/swedish
|
||||
share/vigor/perl/VI.pm
|
||||
share/vigor/perl/forall.pl
|
||||
share/vigor/perl/make.pl
|
||||
share/vigor/perl/tk.pl
|
||||
share/vigor/perl/wc.pl
|
||||
share/vigor/recover
|
||||
share/vigor/tcl/errors.tcl
|
||||
share/vigor/tcl/gnats.tcl
|
||||
share/vigor/tcl/mailprocs.tcl
|
||||
share/vigor/tcl/wc.tcl
|
||||
@dirrm share/vigor/tcl
|
||||
@dirrm share/vigor/perl
|
||||
@dirrm share/vigor/catalog
|
||||
@dirrm share/vigor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.2 2001/04/19 11:01:05 agc Exp $
|
||||
$NetBSD: distinfo,v 1.3 2001/11/15 23:40:33 hubertf Exp $
|
||||
|
||||
SHA1 (vigor-0.010.tar.gz) = acf681299f8e64d2815dec69f8bb3ea9a7f9f40d
|
||||
Size (vigor-0.010.tar.gz) = 1176833 bytes
|
||||
SHA1 (patch-aa) = c7bef278e7405c54784c3978b6430cb517940604
|
||||
SHA1 (patch-ab) = 99b0518d4617dcabe317023ab845b8bd1449982e
|
||||
SHA1 (vigor-0.016.tar.gz) = cbbd7db8226421b86c50799178033c4248753706
|
||||
Size (vigor-0.016.tar.gz) = 1108486 bytes
|
||||
SHA1 (patch-aa) = 2e50c3612956840ee2cea7b6c2b508bef60ea270
|
||||
SHA1 (patch-ab) = 26986b721459b917db2f8079cec437fa1f3e8528
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
$NetBSD: patch-aa,v 1.2 2000/02/05 18:28:22 wiz Exp $
|
||||
--- Makefile.in.orig Wed Jan 19 13:45:40 2000
|
||||
+++ Makefile.in Wed Jan 19 13:46:52 2000
|
||||
@@ -81,28 +81,16 @@
|
||||
$NetBSD: patch-aa,v 1.3 2001/11/15 23:40:33 hubertf Exp $
|
||||
|
||||
--- Makefile.in.orig Wed May 3 04:28:02 2000
|
||||
+++ Makefile.in
|
||||
@@ -84,28 +84,16 @@
|
||||
[ -d $(mandir)/cat1 ] || \
|
||||
($(mkdir) $(mandir)/cat1 && $(chmod) $(dmode) $(mandir)/cat1)
|
||||
@echo "Installing man pages: $(mandir) ..."
|
||||
|
|
|
@ -1,21 +1,22 @@
|
|||
$NetBSD: patch-ab,v 1.2 2000/09/03 14:47:53 wiz Exp $
|
||||
--- configure.orig Thu Jan 20 02:14:28 2000
|
||||
+++ configure Wed Aug 30 11:51:34 2000
|
||||
@@ -1880,7 +1880,7 @@
|
||||
$NetBSD: patch-ab,v 1.3 2001/11/15 23:40:34 hubertf Exp $
|
||||
|
||||
--- configure.orig Wed May 3 04:27:53 2000
|
||||
+++ configure
|
||||
@@ -1881,7 +1881,7 @@
|
||||
cat conftest.$ac_ext >&5
|
||||
fi
|
||||
rm -f conftest*
|
||||
-test "$ac_cv_search_Tcl_Init" = "no" && for i in tcl tcl82 tcl80; do
|
||||
+test "$ac_cv_search_Tcl_Init" = "no" && for i in tcl83 tcl tcl82 tcl80; do
|
||||
LIBS="-l$i -lm $ac_func_search_save_LIBS"
|
||||
-test "$ac_cv_search_Tcl_Init" = "no" && for i in tcl tcl82 tcl8.2 tcl80 tcl8.0; do
|
||||
+test "$ac_cv_search_Tcl_Init" = "no" && for i in tcl83 tcl tcl82 tcl8.2 tcl80 tcl8.0; do
|
||||
LIBS="-l$i $ac_func_search_save_LIBS"
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 1887 "configure"
|
||||
@@ -1942,7 +1942,7 @@
|
||||
#line 1888 "configure"
|
||||
@@ -1943,7 +1943,7 @@
|
||||
cat conftest.$ac_ext >&5
|
||||
fi
|
||||
rm -f conftest*
|
||||
-test "$ac_cv_search_Tk_Init" = "no" && for i in tk tk82 tk80; do
|
||||
+test "$ac_cv_search_Tk_Init" = "no" && for i in tk tk83 tk82 tk80; do
|
||||
LIBS="-l$i $XLIBS -lm $ac_func_search_save_LIBS"
|
||||
-test "$ac_cv_search_Tk_Init" = "no" && for i in tk tk82 tk8.2 tk80 tk8.0; do
|
||||
+test "$ac_cv_search_Tk_Init" = "no" && for i in tk83 tk tk82 tk8.2 tk80 tk8.0; do
|
||||
LIBS="-l$i $XLIBS $ac_func_search_save_LIBS"
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 1949 "configure"
|
||||
#line 1950 "configure"
|
||||
|
|
Loading…
Reference in a new issue