Update to 0.5.2.
This commit is contained in:
parent
01790521d1
commit
0ea7a2c7bc
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=193077
4 changed files with 9 additions and 48 deletions
|
@ -7,7 +7,6 @@
|
|||
|
||||
PORTNAME= w3m
|
||||
PORTVERSION= ${W3M_VERSION}
|
||||
PORTREVISION= 6
|
||||
CATEGORIES+= www ipv6
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
|
@ -22,11 +21,11 @@ COMMENT?= A pager/text-based WWW browser
|
|||
|
||||
LIB_DEPENDS= gc.1:${PORTSDIR}/devel/boehm-gc
|
||||
|
||||
W3M_VERSION= 0.5.1
|
||||
W3M_VERSION= 0.5.2
|
||||
|
||||
CONFLICTS?= ja-w3m-0.5.* ja-w3m-img-0.5.* w3m-m17n-0.5.* w3m-img-0.5.* w3m-m17n-img-0.5.*
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-gc=${LOCALBASE}
|
||||
CONFIGURE_ARGS= --with-gc=${LOCALBASE} --mandir=${PREFIX}/man
|
||||
|
||||
MAN1= w3m.1 w3mman.1
|
||||
MANLANG= "" ja
|
||||
|
@ -64,8 +63,8 @@ PLIST_SUB+= JAPANESE="@comment "
|
|||
.endif
|
||||
|
||||
.if defined(INLINE_IMAGE)
|
||||
USE_GNOME= gdkpixbuf
|
||||
CONFIGURE_ARGS+= --with-imagelib=gdk-pixbuf
|
||||
USE_GNOME= gtk20
|
||||
CONFIGURE_ARGS+= --with-imagelib=gtk2
|
||||
|
||||
DOCS+= README.img
|
||||
DOCS_JP+= README.img
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
MD5 (w3m-0.5.1.tar.gz) = 0678b72e07e69c41709d71ef0fe5da13
|
||||
SHA256 (w3m-0.5.1.tar.gz) = e40c7e3a2c2d5fdc7d92369e77d69256f061493f38c91d699e4436e949802c1d
|
||||
SIZE (w3m-0.5.1.tar.gz) = 1892121
|
||||
MD5 (w3m-0.5.2.tar.gz) = ba06992d3207666ed1bf2dcf7c72bf58
|
||||
SHA256 (w3m-0.5.2.tar.gz) = 5ff3e5a1f50a4a8e6ddbfdeefbe13d3a7f63538595a8e29f5da504ea46eda646
|
||||
SIZE (w3m-0.5.2.tar.gz) = 1906812
|
||||
MD5 (w3m-0.5-version-xhtml.patch) = 16211698ec5d7f7258b70f0baf2d9c81
|
||||
SHA256 (w3m-0.5-version-xhtml.patch) = 3cc144a233f566a4b718eec480f3008bb67b8155ecf10663bb98b0aa47a33796
|
||||
SIZE (w3m-0.5-version-xhtml.patch) = 8965
|
||||
|
|
|
@ -1,20 +0,0 @@
|
|||
--- configure.orig Sat Jul 16 01:39:30 2005
|
||||
+++ configure Sat Jul 16 01:39:38 2005
|
||||
@@ -6443,7 +6443,7 @@
|
||||
cat confdefs.h >>conftest.$ac_ext
|
||||
cat >>conftest.$ac_ext <<_ACEOF
|
||||
/* end confdefs.h. */
|
||||
-#include <machine/console.h>
|
||||
+#include <sys/consio.h>
|
||||
MOUSE_GETINFO
|
||||
_ACEOF
|
||||
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
||||
@@ -10223,7 +10223,7 @@
|
||||
}'
|
||||
fi
|
||||
|
||||
-DEFS=-DHAVE_CONFIG_H
|
||||
+DEFS="$DEFS -DHAVE_CONFIG_H"
|
||||
|
||||
ac_libobjs=
|
||||
ac_ltlibobjs=
|
|
@ -1,5 +1,5 @@
|
|||
--- file.c.orig Tue Jan 2 22:11:50 2007
|
||||
+++ file.c Tue Jan 2 22:14:11 2007
|
||||
--- file.c.orig Thu May 24 00:06:05 2007
|
||||
+++ file.c Sat Jun 9 12:44:09 2007
|
||||
@@ -262,7 +262,8 @@
|
||||
{
|
||||
return (type == NULL || type[0] == '\0' ||
|
||||
|
@ -10,21 +10,3 @@
|
|||
}
|
||||
|
||||
static int
|
||||
@@ -7799,7 +7800,7 @@
|
||||
ans = inputChar(prompt);
|
||||
}
|
||||
else {
|
||||
- printf(prompt);
|
||||
+ printf("%s", prompt);
|
||||
fflush(stdout);
|
||||
ans = Strfgets(stdin)->ptr;
|
||||
}
|
||||
@@ -7891,7 +7892,7 @@
|
||||
uf->scheme = SCM_LOCAL;
|
||||
}
|
||||
UFhalfclose(uf);
|
||||
- uf->stream = newFileStream(f1, (void (*)())pclose);
|
||||
+ uf->stream = newFileStream(f1, (void (*)())fclose);
|
||||
}
|
||||
|
||||
static FILE *
|
||||
|
|
Loading…
Reference in a new issue