Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Jul 2013 17:28:38 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r323482 - in head/editors/chexedit: . files
Message-ID:  <201307221728.r6MHSc6D051705@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Mon Jul 22 17:28:38 2013
New Revision: 323482
URL: http://svnweb.freebsd.org/changeset/ports/323482

Log:
  - Fix timestamp display in file view
  - Fix colors on some terminals
  - Add LICENSE
  
  PR:		180623
  Submitted by:	"r4721@tormail.org" <r4721@tormail.org>

Modified:
  head/editors/chexedit/Makefile
  head/editors/chexedit/files/patch-src-file.c
  head/editors/chexedit/files/patch-src-init.c

Modified: head/editors/chexedit/Makefile
==============================================================================
--- head/editors/chexedit/Makefile	Mon Jul 22 17:24:50 2013	(r323481)
+++ head/editors/chexedit/Makefile	Mon Jul 22 17:28:38 2013	(r323482)
@@ -12,6 +12,9 @@ DISTNAME=	hexedit-${PORTVERSION}
 MAINTAINER=	amdmi3@FreeBSD.org
 COMMENT=	Full screen text mode Hex editor using the [n]curses library
 
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/COPYING
+
 GNU_CONFIGURE=	yes
 PLIST_FILES=	bin/chexedit
 

Modified: head/editors/chexedit/files/patch-src-file.c
==============================================================================
--- head/editors/chexedit/files/patch-src-file.c	Mon Jul 22 17:24:50 2013	(r323481)
+++ head/editors/chexedit/files/patch-src-file.c	Mon Jul 22 17:28:38 2013	(r323482)
@@ -8,14 +8,3 @@
  #include <grp.h>
  #include <pwd.h>
  
-@@ -618,8 +619,8 @@
- 
-          wprintw (Globals.wmain,
-    /* why does it seem like on OpenBSD this is broken? */
--#if defined(__OpenBSD__) || defined(BROKEN)
--            "%s %-8s %-8s %10ld %1d\b2d-%02d-%02d %02d:%02d ",
-+#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(BROKEN)
-+            "%s %-8s %-8s %10ld %1d\b%04d-%02d-%02d %02d:%02d ",
- #else
-             "%s %-8s %-8s %10ld %d-%02d-%02d %02d:%02d ",
- #endif

Modified: head/editors/chexedit/files/patch-src-init.c
==============================================================================
--- head/editors/chexedit/files/patch-src-init.c	Mon Jul 22 17:24:50 2013	(r323481)
+++ head/editors/chexedit/files/patch-src-init.c	Mon Jul 22 17:28:38 2013	(r323482)
@@ -12,7 +12,15 @@
  extern char **environ;
  
  
-@@ -463,7 +468,7 @@
+@@ -250,6 +255,7 @@
+    if (color_term != -1)
+    {
+       start_color ();
++      use_default_colors();
+       if ((color_term = has_colors ()))
+       {
+          color_term = 1;
+@@ -463,7 +469,7 @@
        filestat.st_size = DEFAULT_BUFFER_SIZE;
     }
  



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307221728.r6MHSc6D051705>