freebsd-ports/misc/display/Makefile
Peter Pentchev 92b591f201 Fix a long-standing problem with displaying characters with the 8th
bit set: the return value of fgets() should NOT be kept in a signed
char variable, since passing that to addch() would sign-extend it,
setting a whole lot of attribute bits and resulting in a bold, blinking,
alt-charset display of e.g. all Cyrillic characters.  Instead, keep
fgets()'s result in an int variable, as $DEITY (dmr? :) intended.

Bump PORTREVISION for the functionality change.
2004-08-27 12:45:45 +00:00

30 lines
617 B
Makefile

# New ports collection makefile for: display
# Date created: 25 August 1997
# Whom: Stephen J. Roznowski <sjr@home.net>
#
# $FreeBSD$
#
PORTNAME= display
PORTVERSION= 1.2
PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= http://www.ipsmart.com/src/
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Runs command repeatedly; shows output
CONFLICTS= ImageMagick-[0-9]* goblin-*
GNU_CONFIGURE= yes
MAN1= display.1
PLIST_FILES= bin/display
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/display ${PREFIX}/bin/display
${INSTALL_MAN} ${WRKSRC}/display.man ${MANPREFIX}/man/man1/display.1
.include <bsd.port.mk>