summaryrefslogtreecommitdiff
path: root/www/links1
diff options
context:
space:
mode:
authorDmitry Sivachenko <demon@FreeBSD.org>2002-07-03 21:12:30 +0000
committerDmitry Sivachenko <demon@FreeBSD.org>2002-07-03 21:12:30 +0000
commite07aa1886896c5dc53be3dd38bc33d82eddff2e2 (patch)
tree1db591969f575939cd3ebeaf3553da0bd9c62f1d /www/links1
parentPut links-0.97 back as links1. This corresponds to www/links port as of (diff)
Update to 0.98.
Notes
Notes: svn path=/head/; revision=62395
Diffstat (limited to 'www/links1')
-rw-r--r--www/links1/Makefile5
-rw-r--r--www/links1/distinfo2
-rw-r--r--www/links1/files/patch-width63
3 files changed, 3 insertions, 67 deletions
diff --git a/www/links1/Makefile b/www/links1/Makefile
index d6a95872a179..f6bd07bc469c 100644
--- a/www/links1/Makefile
+++ b/www/links1/Makefile
@@ -6,11 +6,10 @@
#
PORTNAME= links
-PORTVERSION= 0.97
-PORTREVISION= 1
+PORTVERSION= 0.98
PORTEPOCH= 1
CATEGORIES= www
-MASTER_SITES= http://atrey.karlin.mff.cuni.cz/~clock/twibright/links/download/ \
+MASTER_SITES= http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/links/download/ \
http://ice.dammit.lt/links/download/ \
http://links.sourceforge.net/download/ \
ftp://ftp.fu-berlin.de/unix/network/www/links/
diff --git a/www/links1/distinfo b/www/links1/distinfo
index 38fa1daa4f21..8121ac8291d8 100644
--- a/www/links1/distinfo
+++ b/www/links1/distinfo
@@ -1 +1 @@
-MD5 (links-0.97.tar.gz) = 57d4ade86c49038b3d4bab66ad24c066
+MD5 (links-0.98.tar.gz) = c411e8f85e959408d6c0182045bd7b62
diff --git a/www/links1/files/patch-width b/www/links1/files/patch-width
deleted file mode 100644
index ebaf38fffe06..000000000000
--- a/www/links1/files/patch-width
+++ /dev/null
@@ -1,63 +0,0 @@
---- default.c Tue Mar 5 11:31:44 2002
-+++ default.c Tue Mar 5 11:26:50 2002
-@@ -773,6 +773,9 @@
- Write a plain-text version of the given HTML document to\n\
- stdout.\n\
- \n\
-+ -width <size>\n\
-+ Size of screen in characters, used in combination with -dump\n\
-+\n\
- -no-connect\n\
- Runs links as a separate instance - instead of connecting to\n\
- existing instance.\n\
-@@ -831,6 +834,7 @@
- int download_utime = 0;
- int max_connections = 10;
- int max_connections_to_host = 2;
-+int screen_width = 80;
- int max_tries = 3;
- int receive_timeout = 120;
- int unrestartable_receive_timeout = 600;
-@@ -884,6 +888,7 @@
- 1, gen_cmd, num_rd, num_wr, 1, 16, &max_connections, "max_connections", "max-connections",
- 1, gen_cmd, num_rd, num_wr, 1, 8, &max_connections_to_host, "max_connections_to_host", "max-connections-to-host",
- 1, gen_cmd, num_rd, num_wr, 1, 16, &max_tries, "retries", "retries",
-+ 1, gen_cmd, num_rd, num_wr, 40, 512, &screen_width, "screen_width", "width",
- 1, gen_cmd, num_rd, num_wr, 1, 1800, &receive_timeout, "receive_timeout", "receive-timeout",
- 1, gen_cmd, num_rd, num_wr, 1, 1800, &unrestartable_receive_timeout, "unrestartable_receive_timeout", "unrestartable-receive-timeout",
- 1, gen_cmd, num_rd, num_wr, 0, 256, &max_format_cache_entries, "format_cache_size", "format-cache-size",
---- links.1 Mon Jan 1 09:26:52 2001
-+++ links.1 Tue Mar 5 11:34:37 2002
-@@ -94,6 +94,11 @@
- Write a plain-text version of the given HTML document to stdout.
-
- .TP
-+\f3-width \f2<size>\f1
-+Size of screen in characters, used in combination with -dump.
-+(default: 80)
-+
-+.TP
- \f3-no-connect\f1
- Runs links as a separate instance - instead of connecting to
- existing instance.
---- links.h Mon Jun 11 20:14:25 2001
-+++ links.h Tue Mar 5 11:25:24 2002
-@@ -1975,6 +1975,7 @@
- extern int max_connections;
- extern int max_connections_to_host;
- extern int max_tries;
-+extern int screen_width;
- extern int receive_timeout;
- extern int unrestartable_receive_timeout;
-
---- main.c Mon Apr 9 06:46:06 2001
-+++ main.c Tue Mar 5 11:24:41 2002
-@@ -198,7 +198,7 @@
- memset(&fd, 0, sizeof(struct f_data_c));
- o.xp = 0;
- o.yp = 1;
-- o.xw = 80;
-+ o.xw = screen_width;
- o.yw = 25;
- o.col = 0;
- o.cp = 0;