diff options
author | itojun <itojun@pkgsrc.org> | 2002-11-25 08:48:11 +0000 |
---|---|---|
committer | itojun <itojun@pkgsrc.org> | 2002-11-25 08:48:11 +0000 |
commit | c0a4e7a69b8984e3e348bf173f3ebf7cbd4d24e6 (patch) | |
tree | 910126dbd80f1ee869c94a0e5b7c3588f582677c /www/lynx | |
parent | 2ec9c1bc8b1abf54f85327583af8a008d283da96 (diff) | |
download | pkgsrc-c0a4e7a69b8984e3e348bf173f3ebf7cbd4d24e6.tar.gz |
pull in http://lynx.isc.org/current/lynx2.8.4rel.1d.patch.gz.
* correct inverted logic of restrictions table which made "-restrict=default"
provide incorrect values for several items. This was broken in 2.8.4dev.19
(reported by Jeff Long <long@ukans.edu> and RobertM <robm@bob.bofh.org>) -TD
* correct check for calling endwin() to allow for curses implementations
without newterm (report/patch by Brett Lymn).
Diffstat (limited to 'www/lynx')
-rw-r--r-- | www/lynx/Makefile | 6 | ||||
-rw-r--r-- | www/lynx/distinfo | 5 | ||||
-rw-r--r-- | www/lynx/patches/patch-ab | 23 |
3 files changed, 6 insertions, 28 deletions
diff --git a/www/lynx/Makefile b/www/lynx/Makefile index af308c11057..bf94e37a4e5 100644 --- a/www/lynx/Makefile +++ b/www/lynx/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.51 2002/08/25 21:52:14 jlam Exp $ +# $NetBSD: Makefile,v 1.52 2002/11/25 08:48:11 itojun Exp $ # DISTNAME= lynx2.8.4rel.1 -PKGNAME= lynx-2.8.4.1.3 +PKGNAME= lynx-2.8.4.1.4 CATEGORIES= www MASTER_SITES= http://lynx.isc.org/lynx2.8.4/ \ ftp://lynx.isc.org/lynx2.8.4/ \ @@ -15,7 +15,7 @@ PATCH_SITES= http://lynx.isc.org/lynx2.8.4/patches/ \ ftp://ftp.nl.uu.net/pub/unix/www/lynx/lynx2.8.4/patches/ \ ftp://ftp.netlab.is.tsukuba.ac.jp/pub/network/WWW/lynx/lynx2.8.4/patches/ PATCHFILES= lynx2.8.4rel.1a.patch lynx2.8.4rel.1b.patch \ - lynx2.8.4rel.1c.patch + lynx2.8.4rel.1c.patch lynx2.8.4rel.1d.patch PATCH_DIST_STRIP= -p1 MAINTAINER= fredb@netbsd.org diff --git a/www/lynx/distinfo b/www/lynx/distinfo index 7aaf0ca5f31..81431fb6321 100644 --- a/www/lynx/distinfo +++ b/www/lynx/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2002/08/25 21:52:15 jlam Exp $ +$NetBSD: distinfo,v 1.8 2002/11/25 08:48:14 itojun Exp $ SHA1 (lynx2.8.4rel.1.tar.bz2) = 11285022fbe6910fb0a47adc14581ceb0c3bfc98 Size (lynx2.8.4rel.1.tar.bz2) = 1940531 bytes @@ -8,6 +8,7 @@ SHA1 (lynx2.8.4rel.1b.patch) = 323edfa079bf8e6ed517e1031a6797ade4fe823a Size (lynx2.8.4rel.1b.patch) = 8939 bytes SHA1 (lynx2.8.4rel.1c.patch) = 47c9d74c063714b499f03135f3ecba894a037a10 Size (lynx2.8.4rel.1c.patch) = 9270 bytes +SHA1 (lynx2.8.4rel.1d.patch) = d217452fe9b4862c0e98d63b2391708feb27366e +Size (lynx2.8.4rel.1d.patch) = 4688 bytes SHA1 (patch-aa) = 123ebe71a00dfdd309d54b96f52ea83002d43cb2 -SHA1 (patch-ab) = dd533235a5ee83b946df76d29d26dbbb679f9ccf SHA1 (patch-ae) = ebd644a91ad08060baaf724d44bb03bb2f51a260 diff --git a/www/lynx/patches/patch-ab b/www/lynx/patches/patch-ab deleted file mode 100644 index 8885ec50eb3..00000000000 --- a/www/lynx/patches/patch-ab +++ /dev/null @@ -1,23 +0,0 @@ -$NetBSD: patch-ab,v 1.4 2002/08/25 21:52:16 jlam Exp $ - ---- src/LYCurses.c.orig Tue Aug 20 22:33:51 2002 -+++ src/LYCurses.c -@@ -548,9 +548,7 @@ PUBLIC void curses_style ARGS2( - } - #endif /* USE_COLOR_STYLE */ - --#ifndef USE_SLANG - PRIVATE BOOL lynx_called_initscr = FALSE; --#endif - - #if HAVE_USE_DEFAULT_COLORS && USE_DEFAULT_COLORS - /* -@@ -1250,7 +1248,7 @@ PUBLIC void stop_curses NOARGS - lynx_nl2crlf(TRUE); - lynx_enable_mouse (0); - #if (!defined(WIN_EX) || defined(__CYGWIN__)) /* @@@ */ -- if(LYscreen) { -+ if(LYscreen || lynx_called_initscr) { - endwin(); /* stop curses */ - LYDELSCR(); - } |