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

(-)converters/showkey/Makefile (-1 / +4 lines)
Lines 6-19 Link Here
6
#
6
#
7
7
8
PORTNAME=	showkey
8
PORTNAME=	showkey
9
PORTVERSION=	1.3
9
PORTVERSION=	1.4
10
CATEGORIES=	converters
10
CATEGORIES=	converters
11
MASTER_SITES=	http://catb.org/~esr/showkey/
11
MASTER_SITES=	http://catb.org/~esr/showkey/
12
12
13
MAINTAINER=	ports@FreeBSD.org
13
MAINTAINER=	ports@FreeBSD.org
14
COMMENT=	Prints its input, with escapes such as "<NUL>"
14
COMMENT=	Prints its input, with escapes such as "<NUL>"
15
15
16
USE_GMAKE=	yes
17
MAKE_ARGS=	CC="${CC} ${CFLAGS}"
16
ALL_TARGET=	showkey
18
ALL_TARGET=	showkey
19
17
MAN1=		showkey.1
20
MAN1=		showkey.1
18
PLIST_FILES=	bin/showkey
21
PLIST_FILES=	bin/showkey
19
22
(-)converters/showkey/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (showkey-1.3.tar.gz) = 5727fd241bd0cf5e4e27694bdb2d3bb3
1
MD5 (showkey-1.4.tar.gz) = fae2e9e94e93109e810876c163d7c385
2
SIZE (showkey-1.3.tar.gz) = 3680
2
SIZE (showkey-1.4.tar.gz) = 3795
(-)converters/showkey/files/patch-showkey.c (-13 lines)
Lines 1-13 Link Here
1
$FreeBSD: ports/converters/showkey/files/patch-showkey.c,v 1.1 2003/10/24 01:18:37 trevor Exp $
2
3
--- showkey.c.orig	Tue Aug 27 03:12:48 2002
4
+++ showkey.c	Fri Oct 24 01:02:04 2003
5
@@ -58,7 +58,7 @@
6
     unsigned char	c;
7
     unsigned int	i, timeouts;
8
 
9
-    for (i = SIGHUP; i <= SIGPOLL; i++)
10
+    for (i = SIGHUP; i <= SIGIO; i++)
11
 	(void) signal(c, catcher);
12
 
13
     // Get the state of the tty 
(-)converters/showkey/pkg-descr (-8 / +6 lines)
Lines 1-10 Link Here
1
from the man page:
1
This program puts your terminal in raw mode, eats keystrokes, and prints
2
them back it you in a recognizable printed form (using <>-surrounded
3
ASCII mnemonics for non-printables).
2
4
3
       This  program  puts  your  terminal  in  raw mode, eats keystrokes, and
5
This may be useful, for example, if you're not certain what your keyboard
4
       prints them back it you in a recognizable printed form  (using  <>-sur-
6
keys are sending.
5
       rounded ASCII mnemonics for non-printables).
6
7
7
       This  may  be useful, for example, if you're not certain what your key-
8
WWW: http://catb.org/~esr/showkey/
8
       board keys are sending.
9
10
WWW:  http://catb.org/~esr/showkey/

Return to bug 69578