update to 0.6
OK jung@
This commit is contained in:
parent
9e5060eee4
commit
70bfa52762
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.5 2013/10/19 10:48:28 jung Exp $
|
||||
# $OpenBSD: Makefile,v 1.6 2014/02/04 01:53:04 gsoares Exp $
|
||||
|
||||
COMMENT= simple generic tabbed frontend
|
||||
|
||||
DISTNAME= tabbed-0.5
|
||||
DISTNAME= tabbed-0.6
|
||||
|
||||
CATEGORIES= x11
|
||||
|
||||
|
@ -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
|
||||
|
@ -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 @@
|
||||
$OpenBSD: patch-config_def_h,v 1.3 2014/02/04 01:53:04 gsoares Exp $
|
||||
--- 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;
|
||||
|
@ -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
|
||||
$OpenBSD: patch-config_mk,v 1.4 2014/02/04 01:53:04 gsoares Exp $
|
||||
--- 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/19 10:48:29 jung Exp $
|
||||
# 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}
|
||||
|
Loading…
Reference in New Issue
Block a user