Import cgterm-1.7b2 as wip/cgterm.
GTerm is a C/G telnet client that lets you connect to C64 telnet BBS's with the correct colours and the correct font. Also included is a client for 64CHAT called CGChat. Features * Open source - runs on Windows, MacOS X, and unix compatibles. * Full C64 screen and keyboard emulation. * File download with Xmodem, Xmodem/CRC, Xmodem-1k, and Punter protocols. * Screen capture to SEQ file, and SEQ file playback. * Keyboard macros. * Fullscreen mode. * and more...
This commit is contained in:
parent
b1295745de
commit
eac86ff76e
5 changed files with 75 additions and 0 deletions
13
cgterm/DESCR
Normal file
13
cgterm/DESCR
Normal file
|
@ -0,0 +1,13 @@
|
|||
GTerm is a C/G telnet client that lets you connect to C64 telnet BBS's with
|
||||
the correct colours and the correct font. Also included is a client for 64CHAT
|
||||
called CGChat.
|
||||
|
||||
Features
|
||||
|
||||
* Open source - runs on Windows, MacOS X, and unix compatibles.
|
||||
* Full C64 screen and keyboard emulation.
|
||||
* File download with Xmodem, Xmodem/CRC, Xmodem-1k, and Punter protocols.
|
||||
* Screen capture to SEQ file, and SEQ file playback.
|
||||
* Keyboard macros.
|
||||
* Fullscreen mode.
|
||||
* and more...
|
28
cgterm/Makefile
Normal file
28
cgterm/Makefile
Normal file
|
@ -0,0 +1,28 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2011/02/18 11:39:11 rodo6510 Exp $
|
||||
#
|
||||
|
||||
DISTNAME= cgterm-1.7b2
|
||||
CATEGORIES= wip
|
||||
MASTER_SITES= http://www.paradroid.net/cgterm/
|
||||
|
||||
MAINTAINER= rodo@zlug.org
|
||||
HOMEPAGE= http://www.paradroid.net/cgterm/
|
||||
COMMENT= Commodore Graphics Telnet Client
|
||||
#LICENSE= # TODO: (see mk/license.mk)
|
||||
|
||||
LICENSE= 2-clause-bsd
|
||||
|
||||
PKG_DESTDIR_SUPPORT= user-destdir
|
||||
|
||||
NO_CONFIGURE= yes
|
||||
|
||||
USE_TOOLS+= gmake
|
||||
|
||||
SUBST_CLASSES+= fix-paths
|
||||
SUBST_STAGE.fix-paths= post-patch
|
||||
SUBST_MESSAGE.fix-paths= Fixing absolute paths.
|
||||
SUBST_FILES.fix-paths= Makefile
|
||||
SUBST_SED.fix-paths= -e 's,/usr/local,${PREFIX},g'
|
||||
|
||||
.include "../../devel/SDL/buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
13
cgterm/PLIST
Normal file
13
cgterm/PLIST
Normal file
|
@ -0,0 +1,13 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2011/02/18 11:39:11 rodo6510 Exp $
|
||||
bin/cgchat
|
||||
bin/cgedit
|
||||
bin/cgterm
|
||||
share/cgterm/10x12white.bmp
|
||||
share/cgterm/10x12yellow.bmp
|
||||
share/cgterm/bell.wav
|
||||
share/cgterm/german.kbd
|
||||
share/cgterm/lower.bmp
|
||||
share/cgterm/swedish.kbd
|
||||
share/cgterm/upper.bmp
|
||||
share/cgterm/us.kbd
|
||||
share/cgterm/windows.kbd
|
6
cgterm/distinfo
Normal file
6
cgterm/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2011/02/18 11:39:11 rodo6510 Exp $
|
||||
|
||||
SHA1 (cgterm-1.7b2.tar.gz) = e4177031b95ed88316e43be89ede1735b18c462f
|
||||
RMD160 (cgterm-1.7b2.tar.gz) = 5d819786598c93c4839e00378ef8d2e44de66e6e
|
||||
Size (cgterm-1.7b2.tar.gz) = 91883 bytes
|
||||
SHA1 (patch-aa) = a4fbdfc04aa5fce46791eb39938a163db5064cf5
|
15
cgterm/patches/patch-aa
Normal file
15
cgterm/patches/patch-aa
Normal file
|
@ -0,0 +1,15 @@
|
|||
$NetBSD: patch-aa,v 1.1.1.1 2011/02/18 11:39:11 rodo6510 Exp $
|
||||
|
||||
--- Makefile.orig 2011-02-18 14:27:22.000000000 +0000
|
||||
+++ Makefile
|
||||
@@ -9,8 +9,8 @@ SOCKETLIBS=
|
||||
#SOCKETLIBS = -lsocket -lnsl
|
||||
|
||||
CC=gcc
|
||||
-CFLAGS=-O3 -Wall `sdl-config --cflags` -DPREFIX=\"$(PREFIX)\"
|
||||
-LDFLAGS=`sdl-config --libs` $(SOCKETLIBS)
|
||||
+CFLAGS+=-Wall `sdl-config --cflags` -DPREFIX=\"$(PREFIX)\"
|
||||
+LDFLAGS+=`sdl-config --libs` $(SOCKETLIBS)
|
||||
|
||||
|
||||
OBJS= \
|
Loading…
Reference in a new issue