diff options
author | hubertf <hubertf@pkgsrc.org> | 1999-12-10 00:08:23 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1999-12-10 00:08:23 +0000 |
commit | ed0cd3832e2998ff7eab04d5081f79aa8f522b05 (patch) | |
tree | 06eef7b1ec962db4af85c99b97d37975aa4e181d /graphics/gif320/Makefile | |
parent | 4e71f17fc6d29c8a68ce587547dbf38bbdb18c2d (diff) | |
download | pkgsrc-ed0cd3832e2998ff7eab04d5081f79aa8f522b05.tar.gz |
GIF320 3.0 is a gif file viewer for use with VT-320 terminals. It
should be easily portable to any platform as it uses only printf and
several other stdio commands; some signal trapping and tilde-globbing
is also provided, but can be configured out.
Note that GIF320 uses some obscure character-set definition escape
sequences, so if you use a VT-320 emulator or a VT-320 clone, it may
not work. It will not work on a 220 or a 420, although the 420
claims to emulate a 320. Unfortunately, I don't have access to a
420, so I'm looking for someone with a VT-420, a manual, and intricate
knowledge of escape sequences to hack on one for me and find out why
not.
Diffstat (limited to 'graphics/gif320/Makefile')
-rw-r--r-- | graphics/gif320/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/graphics/gif320/Makefile b/graphics/gif320/Makefile new file mode 100644 index 00000000000..30b3da74e86 --- /dev/null +++ b/graphics/gif320/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 1999/12/10 00:08:23 hubertf Exp $ +# + +DISTNAME= gif320-3.3 +CATEGORIES= graphics +MASTER_SITES= ftp://ftp.maths.tcd.ie/pub/sboyle/ +EXTRACT_SUFX= .tar.Z + +MAINTAINER= hubertf@netbsd.org + +WRKSRC= ${WRKDIR}/gif320 +ALL_TARGET= # empty + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/gif320 ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/gif320.1 ${PREFIX}/man/man1 + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/gif320 + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/gif320 + ${INSTALL_DATA} ${WRKSRC}/README.VMS ${PREFIX}/share/doc/gif320 + ${INSTALL_DATA} ${WRKSRC}/CHANGES ${PREFIX}/share/doc/gif320 + ${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/doc/gif320 + +.include "../../mk/bsd.pkg.mk" |