Oga made me make a port so here it is. New features: * add alias support * make tabs reorderable * :1 goes to top * add half page movement with ctrl-d ctrl-u * make entry green when doing ssl
Bug fixes: * plug some memleaks and use after free * more paranoia when dealing with files * gcc4 warnings fixed * cookies path wasn't always correct * tab ids could get confused breaking keyboard navigation * several others too boring to mention Index: Makefile =================================================================== RCS file: /cvs/ports/www/xxxterm/Makefile,v retrieving revision 1.1 diff -u -p -r1.1 Makefile --- Makefile 25 Mar 2010 09:40:11 -0000 1.1 +++ Makefile 10 Aug 2010 20:40:15 -0000 @@ -2,7 +2,7 @@ COMMENT = vi-like minimalists web browser -DISTNAME = xxxterm-1.79 +DISTNAME = xxxterm-1.97 CATEGORIES = www Index: distinfo =================================================================== RCS file: /cvs/ports/www/xxxterm/distinfo,v retrieving revision 1.1 diff -u -p -r1.1 distinfo --- distinfo 25 Mar 2010 09:40:11 -0000 1.1 +++ distinfo 10 Aug 2010 20:40:30 -0000 @@ -1,5 +1,5 @@ -MD5 (xxxterm-1.79.tgz) = 7e9JxAruIQwtOCQJEXmosA== -RMD160 (xxxterm-1.79.tgz) = MT7RbKpmDKFAEyhXf0/1+JS75MQ= -SHA1 (xxxterm-1.79.tgz) = R7+a9cVM+IU5ZkCOwyQLI0tpgKE= -SHA256 (xxxterm-1.79.tgz) = fnEAB3O9me03wbJFzRZye0rgcsBwiA16cmzd/dDmXus= -SIZE (xxxterm-1.79.tgz) = 19321 +MD5 (xxxterm-1.97.tgz) = KgvO6cyoJCkibEaNZ5/ClA== +RMD160 (xxxterm-1.97.tgz) = aXP1ZDVacJbKz6dEVxeydnC00qI= +SHA1 (xxxterm-1.97.tgz) = /zx1r4oNGpiDy1akLYmHKbrJ2Wo= +SHA256 (xxxterm-1.97.tgz) = wH6t56YDO25sIpIncGey32KkI/9fGQw8nlS+qRwme6A= +SIZE (xxxterm-1.97.tgz) = 21383 Index: patches/patch-Makefile =================================================================== RCS file: patches/patch-Makefile diff -N patches/patch-Makefile --- patches/patch-Makefile 25 Mar 2010 09:40:11 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,16 +0,0 @@ -$OpenBSD: patch-Makefile,v 1.1 2010/03/25 09:40:11 jasper Exp $ ---- Makefile.orig Fri Mar 5 09:40:32 2010 -+++ Makefile Fri Mar 5 09:41:07 2010 -@@ -10,8 +10,9 @@ LDADD= -l util - LIBS+= gtk+-2.0 - LIBS+= webkit-1.0 - LIBS+= libsoup-2.4 --GTK!=pkg-config --cflags --libs $(LIBS) --CFLAGS+=$(GTK) -Wall -pthread --LDFLAGS+=$(GTK) -pthread -+GTK_CF!=pkg-config --cflags $(LIBS) -+GTK_LD!=pkg-config --cflags --libs $(LIBS) -+CFLAGS+=$(GTK_CF) -Wall -pthread -+LDFLAGS+=$(GTK_LD) -pthread - - .include <bsd.prog.mk>
