summaryrefslogtreecommitdiff
path: root/www/w3m
diff options
context:
space:
mode:
authorcjep <cjep@pkgsrc.org>2004-06-24 09:17:34 +0000
committercjep <cjep@pkgsrc.org>2004-06-24 09:17:34 +0000
commit39413756548464b6b671282412d53cf19fb8baf8 (patch)
treef41d5270ad1fc2c84e1f807b1adc6e7854e1676e /www/w3m
parent777fb552f512387482bbdf7f7e9200abb93ece10 (diff)
downloadpkgsrc-39413756548464b6b671282412d53cf19fb8baf8.tar.gz
Update of www/w3m to 0.5.1. From PR#25995.
Changes from 0.5 include (please see the ChangeLog for full details): * configuration changes; * build errors fixes when using --enable-m17n and --disable-unicode; * HTTP basic authentication bugs fixed; * Fix IPv6 FQDN resolution failure; * bug fixes and source cleanup.
Diffstat (limited to 'www/w3m')
-rw-r--r--www/w3m/Makefile.common6
-rw-r--r--www/w3m/distinfo7
-rw-r--r--www/w3m/patches/patch-ac14
3 files changed, 6 insertions, 21 deletions
diff --git a/www/w3m/Makefile.common b/www/w3m/Makefile.common
index 147ef91251b..2e0e796c60a 100644
--- a/www/w3m/Makefile.common
+++ b/www/w3m/Makefile.common
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile.common,v 1.29 2004/05/14 08:46:05 xtraeme Exp $
+# $NetBSD: Makefile.common,v 1.30 2004/06/24 09:17:34 cjep Exp $
#
DISTNAME= w3m-${W3M_VERS}
-PKGREVISION= 3
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=w3m/}
@@ -15,7 +14,7 @@ USE_BUILDLINK3= yes
GNU_CONFIGURE= # defined
USE_GNU_TOOLS+= make # Needed for some combinations of options...
-W3M_VERS= 0.5
+W3M_VERS= 0.5.1
# For w3mman, xface2xpm, cgi scripts.
USE_PERL5= run
@@ -64,6 +63,7 @@ CONFIGURE_ARGS+= --enable-keymap=w3m
_W3M_USE_IMAGE?= NO
.if ${_W3M_USE_IMAGE} == YES
+USE_X11= YES
CONFIGURE_ARGS+= --enable-image=x11
.else
CONFIGURE_ARGS+= --disable-image
diff --git a/www/w3m/distinfo b/www/w3m/distinfo
index 85d9ce959d8..dfbf445052e 100644
--- a/www/w3m/distinfo
+++ b/www/w3m/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.13 2004/04/21 01:31:49 snj Exp $
+$NetBSD: distinfo,v 1.14 2004/06/24 09:17:34 cjep Exp $
-SHA1 (w3m-0.5.tar.gz) = d8d5439fe4777eabf3313f76ef5a71e8e8554fd5
-Size (w3m-0.5.tar.gz) = 1889076 bytes
+SHA1 (w3m-0.5.1.tar.gz) = 7da299648c236772bcde9b0e92e23346c8af0aca
+Size (w3m-0.5.1.tar.gz) = 1892121 bytes
SHA1 (patch-ab) = c0c21616d1d3557453648107eca26eaa91af4741
-SHA1 (patch-ac) = 652e2f900b94702543d7e7cdec82787f87e0810f
diff --git a/www/w3m/patches/patch-ac b/www/w3m/patches/patch-ac
deleted file mode 100644
index 88acb0e3eea..00000000000
--- a/www/w3m/patches/patch-ac
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ac,v 1.10 2004/04/20 14:21:19 uebayasi Exp $
-
---- libwc/detect.c.orig Tue Sep 23 06:02:23 2003
-+++ libwc/detect.c
-@@ -63,7 +63,9 @@ wc_create_detect_map(wc_ces ces, wc_bool
- for (i = 0; i < 0x20; i++)
- WC_DETECT_MAP[i] = 0;
- WC_DETECT_MAP[WC_C_HZ_TILDA] = (ces == WC_CES_HZ_GB_2312) ? 1 : 0;
-+#ifdef USE_UNICODE
- WC_DETECT_MAP[WC_C_UTF7_PLUS] = (ces == WC_CES_UTF_7) ? 1 : 0;
-+#endif
- }
- detect_ces = ces;
- }