Files
ports/misc/viz/Makefile
Brooks Davis b8e225422d misc/viz: include errno.h for errno
errno must be accessed by a macro from errno.h.  This program was
partially converted in it's initial commit, but the removal of errno
declerations was incomplete.
2024-09-30 23:13:43 +01:00

26 lines
569 B
Makefile

PORTNAME= viz
PORTVERSION= 1.1.1
PORTREVISION= 3
CATEGORIES= misc
MASTER_SITES= LOCAL/fenner
MAINTAINER= ports@FreeBSD.org
COMMENT= Convert invisible (binary) characters to a visible form
LICENSE= GPLv1
LICENSE_FILE= ${WRKSRC}/Copying
USES= tar:tgz
MAKE_ARGS= CC="${CC}" DEFS="${CFLAGS}"
PLIST_FILES= bin/viz bin/inviz share/man/man1/viz.1.gz share/man/man1/inviz.1.gz
do-install:
.for f in viz inviz
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${f}.1 ${STAGEDIR}${PREFIX}/share/man/man1
.endfor
.include <bsd.port.mk>