summaryrefslogtreecommitdiff
path: root/www/links
diff options
context:
space:
mode:
authorwiz <wiz>2003-05-21 10:10:19 +0000
committerwiz <wiz>2003-05-21 10:10:19 +0000
commit0f9d4e8bbdd692da7f3ff5bb4af1d59717b02f82 (patch)
tree33531fd4a0e8a724dc16b7dd2da9245b6e242cac /www/links
parent10325c0adfd66b31a9317f818e6ef78dd2a8e549 (diff)
downloadpkgsrc-0f9d4e8bbdd692da7f3ff5bb4af1d59717b02f82.tar.gz
Update to 2.1pre10:
HTML entities in bookmark file ["<>&=" only] Manual/automatic javascript action confirmation Cookies can contain whitespace (fixes bugzilla) Fixed cookie not used when parsing of expiration date fails Fixed image alt displayed in incorrect codepage Links icons Submit/clean form in link menu of form elements
Diffstat (limited to 'www/links')
-rw-r--r--www/links/Makefile4
-rw-r--r--www/links/Makefile.common4
-rw-r--r--www/links/distinfo7
-rw-r--r--www/links/patches/patch-af15
4 files changed, 7 insertions, 23 deletions
diff --git a/www/links/Makefile b/www/links/Makefile
index b484c476463..838c32adcba 100644
--- a/www/links/Makefile
+++ b/www/links/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.24 2003/03/03 12:01:15 wiz Exp $
+# $NetBSD: Makefile,v 1.25 2003/05/21 10:10:19 wiz Exp $
#
-PKGNAME= links-2.1.0.9
+PKGNAME= links-2.1.0.10
COMMENT= Lynx-like text WWW browser
CONFLICTS+= links-gui-[0-9]* elinks-0.3*
diff --git a/www/links/Makefile.common b/www/links/Makefile.common
index 6b31796ee4c..682b316663e 100644
--- a/www/links/Makefile.common
+++ b/www/links/Makefile.common
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile.common,v 1.13 2003/03/03 12:01:15 wiz Exp $
+# $NetBSD: Makefile.common,v 1.14 2003/05/21 10:10:19 wiz Exp $
-DISTNAME= links-2.1pre9
+DISTNAME= links-2.1pre10
CATEGORIES= www
MASTER_SITES= \
http://atrey.karlin.mff.cuni.cz/~clock/twibright/links/download/ \
diff --git a/www/links/distinfo b/www/links/distinfo
index 78159bc6f03..9034a084a0b 100644
--- a/www/links/distinfo
+++ b/www/links/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.21 2003/03/03 12:01:15 wiz Exp $
+$NetBSD: distinfo,v 1.22 2003/05/21 10:10:19 wiz Exp $
-SHA1 (links-2.1pre9.tar.bz2) = 70579d49eaeb4de3fb78789e9b5b3e0b56ac44f8
-Size (links-2.1pre9.tar.bz2) = 3549984 bytes
+SHA1 (links-2.1pre10.tar.bz2) = 415e939be55be8fe5fd8738cd9c97b7570a0b75c
+Size (links-2.1pre10.tar.bz2) = 3747153 bytes
SHA1 (patch-aa) = 47fab20748fc660517ebc2d2ef8a6b9c7c0dd1e4
SHA1 (patch-ab) = 159c06569c42ea2d3eb4ec1a25a958621f11f793
SHA1 (patch-ac) = 0d0bb5000ef8511aa6783cfb97ea03c2b2b32803
-SHA1 (patch-af) = 7715d770dfbb248487b5f31384f104079d961715
diff --git a/www/links/patches/patch-af b/www/links/patches/patch-af
deleted file mode 100644
index e4e7a019b4d..00000000000
--- a/www/links/patches/patch-af
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-af,v 1.1 2003/02/27 21:42:34 is Exp $
-
---- html_gr.c_ Thu Feb 27 18:24:52 2003
-+++ html_gr.c Thu Feb 27 18:24:55 2003
-@@ -532,6 +532,10 @@
- while (*p && (*p < '0' || *p > '9')) p++;
- if (!*p) goto noc;
- while (*p >= '0' && *p <= '9' && num < 10000000) num = num * 10 + *p - '0', p++;
-+ if (*p == '.') {
-+ p++;
-+ while (*p >= '0' && *p <= '9') p++;
-+ }
- if (*p == '%' && num < 1000) {
- int m = io->xw < io->yw ? io->xw : io->yw;
- num = num * m / 100;