On Fri, Jan 31, 2014 at 03:25:26PM -0300, Gleydson Soares wrote:
>
> tabbed 0.6 was released,
> following diff bring tabbed to 0.6,
>
> works here.
>
> OK?
ok jung@
> Index: Makefile
> ===================================================================
> RCS file: /cvs/ports/x11/tabbed/Makefile,v
> retrieving revision 1.5
> diff -u -p -u -p -r1.5 Makefile
> --- Makefile 19 Oct 2013 10:48:28 -0000 1.5
> +++ Makefile 31 Jan 2014 18:18:42 -0000
> @@ -2,7 +2,7 @@
>
> COMMENT= simple generic tabbed frontend
>
> -DISTNAME= tabbed-0.5
> +DISTNAME= tabbed-0.6
>
> CATEGORIES= x11
>
> Index: distinfo
> ===================================================================
> RCS file: /cvs/ports/x11/tabbed/distinfo,v
> retrieving revision 1.3
> diff -u -p -u -p -r1.3 distinfo
> --- distinfo 19 Oct 2013 10:48:28 -0000 1.3
> +++ distinfo 31 Jan 2014 18:18:42 -0000
> @@ -1,2 +1,2 @@
> -SHA256 (tabbed-0.5.tar.gz) = ISJlBnYZCfrevdX64P9RSbmjeINvpRXEXvvL5QQyH7k=
> -SIZE (tabbed-0.5.tar.gz) = 11703
> +SHA256 (tabbed-0.6.tar.gz) = dlHqOsvsXWolRp6GZdp/xwq6K0+mGipqVEnq/f1kHEI=
> +SIZE (tabbed-0.6.tar.gz) = 12926
> Index: patches/patch-config_def_h
> ===================================================================
> RCS file: /cvs/ports/x11/tabbed/patches/patch-config_def_h,v
> retrieving revision 1.2
> diff -u -p -u -p -r1.2 patch-config_def_h
> --- patches/patch-config_def_h 19 Oct 2013 10:48:29 -0000 1.2
> +++ patches/patch-config_def_h 31 Jan 2014 18:18:42 -0000
> @@ -1,21 +1,20 @@
> $OpenBSD: patch-config_def_h,v 1.2 2013/10/19 10:48:29 jung Exp $
> ---- config.def.h.orig Fri Oct 18 18:58:44 2013
> -+++ config.def.h Fri Oct 18 18:59:41 2013
> -@@ -1,11 +1,12 @@
> +--- config.def.h.orig Tue Jan 21 15:22:03 2014
> ++++ config.def.h Fri Jan 31 15:15:05 2014
> +@@ -1,11 +1,11 @@
> /* See LICENSE file for copyright and license details. */
>
> /* appearance */
> -static const char font[] = "-*-*-medium-*-*-*-14-*-*-*-*-*-*-*";
> --static const char normbgcolor[] = "#222222";
> --static const char normfgcolor[] = "#cccccc";
> --static const char selbgcolor[] = "#555555";
> --static const char selfgcolor[] = "#ffffff";
> +-static const char* normbgcolor = "#222222";
> +-static const char* normfgcolor = "#cccccc";
> +-static const char* selbgcolor = "#555555";
> +-static const char* selfgcolor = "#ffffff";
> +static const char font[] =
> "-*-terminus-medium-*-*-*-*-*-*-*-*-*-*-*";
> -+static const char normbgcolor[] = "#202020";
> -+static const char normfgcolor[] = "#c0c0c0";
> -+static const char selbgcolor[] = "#404040";
> -+static const char selfgcolor[] = "#f0f0f0";
> -+
> ++static const char* normbgcolor = "#202020";
> ++static const char* normfgcolor = "#c0c0c0";
> ++static const char* selbgcolor = "#404040";
> ++static const char* selfgcolor = "#f0f0f0";
> static const char before[] = "<";
> static const char after[] = ">";
> static const int tabwidth = 200;
> Index: patches/patch-config_mk
> ===================================================================
> RCS file: /cvs/ports/x11/tabbed/patches/patch-config_mk,v
> retrieving revision 1.3
> diff -u -p -u -p -r1.3 patch-config_mk
> --- patches/patch-config_mk 19 Oct 2013 10:48:29 -0000 1.3
> +++ patches/patch-config_mk 31 Jan 2014 18:18:42 -0000
> @@ -1,7 +1,7 @@
> $OpenBSD: patch-config_mk,v 1.3 2013/10/19 10:48:29 jung Exp $
> ---- config.mk.orig Mon May 6 20:28:25 2013
> -+++ config.mk Fri Oct 18 19:14:02 2013
> -@@ -4,22 +4,25 @@ VERSION = 0.5
> +--- config.mk.orig Tue Jan 21 15:22:03 2014
> ++++ config.mk Fri Jan 31 15:16:20 2014
> +@@ -4,22 +4,25 @@ VERSION = 0.6
> # Customize below to fit your system
>
> # paths
> @@ -16,13 +16,13 @@ $OpenBSD: patch-config_mk,v 1.3 2013/10/
> # includes and libs
> -INCS = -I. -I/usr/include
> -LIBS = -L/usr/lib -lc -lX11
> -+INCS = -I${X11INC}
> ++INCS = -I${X11INC}
> +LIBS = -L${X11LIB} -lX11
>
> # flags
> -CPPFLAGS = -DVERSION=\"${VERSION}\" -D_BSD_SOURCE
> --CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
> --LDFLAGS = -g ${LIBS}
> +-CFLAGS = -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
> +-LDFLAGS = -s ${LIBS}
> +CPPFLAGS += -DVERSION=\"${VERSION}\" -D_BSD_SOURCE
> +CFLAGS += -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
> +LDFLAGS += ${LIBS}