View | Details | Raw Unified | Return to bug 211285
Collapse All | Expand All

(-)sysutils/htop/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	htop
4
PORTNAME=	htop
5
PORTVERSION=	2.0.1
5
PORTVERSION=	2.0.2
6
CATEGORIES=	sysutils
6
CATEGORIES=	sysutils
7
7
8
MAINTAINER=	gaod@hychen.org
8
MAINTAINER=	gaod@hychen.org
(-)sysutils/htop/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (hishamhm-htop-2.0.1_GH0.tar.gz) = 636c1e8b703058e793e8d25423af4b74059290ef9e48fa261ba58555069517b5
1
TIMESTAMP = 1469166026
2
SIZE (hishamhm-htop-2.0.1_GH0.tar.gz) = 145463
2
SHA256 (hishamhm-htop-2.0.2_GH0.tar.gz) = 1e93e6743dddad254fac2ad0d83b00a82173c75ecbd6ef6f7d55da690eb64b92
3
SIZE (hishamhm-htop-2.0.2_GH0.tar.gz) = 146391
(-)sysutils/htop/files/patch-CRT.c (-11 lines)
Lines 1-11 Link Here
1
--- CRT.c.orig	2016-03-07 21:32:06 UTC
2
+++ CRT.c
3
@@ -125,7 +125,7 @@ void CRT_fatalError(const char* note) __
4
 
5
 void CRT_handleSIGSEGV(int sgn);
6
 
7
-#define KEY_ALT(x) KEY_F(60) + (x - 'A')
8
+#define KEY_ALT(x) (KEY_F(64 - 26) + (x - 'A'))
9
 
10
 }*/
11
 
(-)sysutils/htop/files/patch-CRT.h (-11 lines)
Lines 1-11 Link Here
1
--- CRT.h.orig	2016-03-07 21:32:06 UTC
2
+++ CRT.h
3
@@ -115,7 +115,7 @@ void CRT_fatalError(const char* note) __
4
 
5
 void CRT_handleSIGSEGV(int sgn);
6
 
7
-#define KEY_ALT(x) KEY_F(60) + (x - 'A')
8
+#define KEY_ALT(x) (KEY_F(64 - 26) + (x - 'A'))
9
 
10
 
11
 extern const char *CRT_treeStrAscii[TREE_STR_COUNT];

Return to bug 211285