summaryrefslogtreecommitdiff
path: root/www/links
diff options
context:
space:
mode:
authoris <is>2008-08-20 09:26:44 +0000
committeris <is>2008-08-20 09:26:44 +0000
commit089ac1216d772773aa68237a04c7b116bf21c9d9 (patch)
treee124861090884df2115dfb58e77584fa974805d1 /www/links
parent13d481e8fa396a668438bcfbae378c2fdcb2c05c (diff)
downloadpkgsrc-089ac1216d772773aa68237a04c7b116bf21c9d9.tar.gz
Patch no longer needed, besides failing for some boundary conditions.
Feature request/code had been submitted upstream "back then", and apparently a different solution has been implemented upstream in the meantime, but our package was upgraded without removing our patch.
Diffstat (limited to 'www/links')
-rw-r--r--www/links/Makefile3
-rw-r--r--www/links/distinfo4
-rw-r--r--www/links/patches/patch-aa19
3 files changed, 6 insertions, 20 deletions
diff --git a/www/links/Makefile b/www/links/Makefile
index 6784e224769..76271e5708b 100644
--- a/www/links/Makefile
+++ b/www/links/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.54 2008/07/24 01:38:13 bjs Exp $
+# $NetBSD: Makefile,v 1.55 2008/08/20 09:26:44 is Exp $
#
PKGNAME= ${DISTNAME:S/pre/.0./}
+PKGREVISION= 1
COMMENT= Lynx-like text WWW browser
CONFLICTS+= links-gui-[0-9]* elinks-0.3*
diff --git a/www/links/distinfo b/www/links/distinfo
index 4f2b35b3edb..db9fe6c5d2c 100644
--- a/www/links/distinfo
+++ b/www/links/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.49 2008/08/09 19:59:10 bjs Exp $
+$NetBSD: distinfo,v 1.50 2008/08/20 09:26:44 is Exp $
SHA1 (links-2.2.tar.bz2) = 7588c151e98057f83a2e0b81b3f467e7eee9f824
RMD160 (links-2.2.tar.bz2) = fe051b2655a67e004fdf682045349664611a3101
Size (links-2.2.tar.bz2) = 3832115 bytes
-SHA1 (patch-aa) = 0ef14390247d67b6d36f33a2fe916321110aad57
+SHA1 (patch-aa) = aff3ac1b292b5aaf4f2f6beb94a07957a189b752
SHA1 (patch-ab) = a2d461c9d8b6300469ab6195886830fdd63be837
diff --git a/www/links/patches/patch-aa b/www/links/patches/patch-aa
index 2c7bf4a1a00..6d8891fd7fd 100644
--- a/www/links/patches/patch-aa
+++ b/www/links/patches/patch-aa
@@ -1,18 +1,3 @@
-$NetBSD: patch-aa,v 1.3 2008/07/24 01:38:13 bjs Exp $
+$NetBSD: patch-aa,v 1.4 2008/08/20 09:26:45 is Exp $
---- session.c.orig 2008-06-21 12:12:07.000000000 -0400
-+++ session.c
-@@ -2631,6 +2631,13 @@ void goto_url_f(struct session *ses, voi
- /* this doesn't send referer */
- void goto_url(struct session *ses, unsigned char *url)
- {
-+ char *p;
-+ p = url + strlen(url);
-+ do {
-+ --p;
-+ } while (isspace(*p));
-+ *++p = 0;
-+
- goto_url_f(ses, NULL, url, NULL, NULL, -1, 0, 1, 0);
- }
-
+(Kept here to allow for pulling up to 8Q2).