diff options
author | jtb <jtb@pkgsrc.org> | 2001-04-20 22:20:50 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-04-20 22:20:50 +0000 |
commit | bec49f9237e528980917df9879a895311c126e89 (patch) | |
tree | 81c28b8dd6a0a7b887905bad90d10d628d4fc0fa /misc | |
parent | e4024254fa1f75a3d7f1a66d05c99618620ba4ca (diff) | |
download | pkgsrc-bec49f9237e528980917df9879a895311c126e89.tar.gz |
Update to most-4.9.0.
Changes since 4.8.1
1. Apparantly, the binary flag +b is not valid with POSIX popen.
2. Screen resize code modified so that most works in a SunOS cmdtool.
3. Color support added. Use `most -C' to disable.
4. Ported to Mingw32 (GNU C)
Diffstat (limited to 'misc')
-rw-r--r-- | misc/most/Makefile | 6 | ||||
-rw-r--r-- | misc/most/distinfo | 9 | ||||
-rw-r--r-- | misc/most/patches/patch-aa | 9 | ||||
-rw-r--r-- | misc/most/patches/patch-ab | 15 |
4 files changed, 27 insertions, 12 deletions
diff --git a/misc/most/Makefile b/misc/most/Makefile index 824515f239b..5ffb162f9e5 100644 --- a/misc/most/Makefile +++ b/misc/most/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.13 2001/02/17 18:09:14 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2001/04/20 22:20:50 jtb Exp $ # FreeBSD Id: Makefile,v 1.2 1997/06/03 21:52:01 asami Exp # -DISTNAME= most4.8.1 -PKGNAME= most-4.8.1 +DISTNAME= most-4.9.0 CATEGORIES= misc MASTER_SITES= ftp://space.mit.edu/pub/davis/most/ \ ftp://ftp.uni-stuttgart.de/pub/unix/misc/slang/most/ @@ -16,6 +15,5 @@ DEPENDS+= libslang-*:../../devel/libslang GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-x -WRKSRC= ${WRKDIR}/most .include "../../mk/bsd.pkg.mk" diff --git a/misc/most/distinfo b/misc/most/distinfo index 1b826fded4b..fa25bb42145 100644 --- a/misc/most/distinfo +++ b/misc/most/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2001/04/20 13:52:16 agc Exp $ +$NetBSD: distinfo,v 1.3 2001/04/20 22:20:50 jtb Exp $ -SHA1 (most4.8.1.tar.gz) = 82f8b3f0adaa594313bbac5c31a83ab41b4ec5a9 -Size (most4.8.1.tar.gz) = 78430 bytes -SHA1 (patch-aa) = 76299645cb9a67e4b5030ff61c0a1777f0607584 +SHA1 (most-4.9.0.tar.gz) = 7f8d02c6573ea58b00a9f85b06efa89bdc386dd2 +Size (most-4.9.0.tar.gz) = 85661 bytes +SHA1 (patch-aa) = 3dcc0d06882b2a25c165f2b3f3426b607c85c864 +SHA1 (patch-ab) = 5e512c09fce45e251fde0c393cdef9747dbade1f diff --git a/misc/most/patches/patch-aa b/misc/most/patches/patch-aa index d5d8d63f67d..e517c6b1a73 100644 --- a/misc/most/patches/patch-aa +++ b/misc/most/patches/patch-aa @@ -1,12 +1,13 @@ -$NetBSD: patch-aa,v 1.3 1998/08/07 11:10:27 agc Exp $ +$NetBSD: patch-aa,v 1.4 2001/04/20 22:20:51 jtb Exp $ ---- configure.orig Wed Jul 15 10:03:01 1998 -+++ configure Wed Jul 15 10:06:03 1998 -@@ -2361,11 +2361,7 @@ +--- configure.orig Fri Apr 20 22:08:26 2001 ++++ configure +@@ -2363,12 +2363,7 @@ # the other directories may have a better chance of containing a more recent # version. -JD_Search_Dirs="$JD_Search_Dirs \ +- $includedir,$libdir \ - /usr/local/include,/usr/local/lib \ - /usr/include,/usr/lib \ - /usr/include/slang,/usr/lib \ diff --git a/misc/most/patches/patch-ab b/misc/most/patches/patch-ab new file mode 100644 index 00000000000..73f98aa4e7f --- /dev/null +++ b/misc/most/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.1 2001/04/20 22:20:51 jtb Exp $ + +--- src/Makefile.in.orig Fri Apr 20 22:18:06 2001 ++++ src/Makefile.in +@@ -87,8 +87,8 @@ + install: all $(BIN_DIR) + $(INSTALL) -s $(OBJDIR)/most $(BIN_DIR) + $(INSTALL_DATA) ../most.1 $(MAN_DIR) +- $(INSTALL) -d $(DOC_DIR) -m 755 +- $(INSTALL_DATA) $(DOC_FILES) $(DOC_DIR) ++# $(INSTALL) -d $(DOC_DIR) -m 755 ++# $(INSTALL_DATA) $(DOC_FILES) $(DOC_DIR) + $(BIN_DIR): + - ../mkinsdir.sh $(BIN_DIR) + # The symlinks target is for my own private use. It simply creates the object |