diff options
author | alepulver <alepulver@FreeBSD.org> | 2006-11-02 10:19:21 +0800 |
---|---|---|
committer | alepulver <alepulver@FreeBSD.org> | 2006-11-02 10:19:21 +0800 |
commit | 09db946c638f38f2555109c07dafff1e87baa8a1 (patch) | |
tree | 5f8479692c846e3f82adb1a9e491cc6110cdcb37 | |
parent | b70c2b1ce454875cf4c36e023dd045c5f1565b4a (diff) | |
download | freebsd-ports-gnome-09db946c638f38f2555109c07dafff1e87baa8a1.tar.gz freebsd-ports-gnome-09db946c638f38f2555109c07dafff1e87baa8a1.tar.zst freebsd-ports-gnome-09db946c638f38f2555109c07dafff1e87baa8a1.zip |
An ANSI-BBS terminal designed to connect to remote BBSs via telnet, rlogin, or
SSH. Supports ANSI music and the IBM charset when possible. Will run from a
console, under X11 using XLib, or using SDL.
WWW: http://syncterm.bbsdev.net/
PR: ports/104622
Submitted by: shurd
-rw-r--r-- | comms/Makefile | 1 | ||||
-rw-r--r-- | comms/syncterm/Makefile | 50 | ||||
-rw-r--r-- | comms/syncterm/distinfo | 3 | ||||
-rw-r--r-- | comms/syncterm/pkg-descr | 5 |
4 files changed, 59 insertions, 0 deletions
diff --git a/comms/Makefile b/comms/Makefile index 4862a765a276..039f80a322a1 100644 --- a/comms/Makefile +++ b/comms/Makefile @@ -104,6 +104,7 @@ SUBDIR += spandsp SUBDIR += splat SUBDIR += sredird + SUBDIR += syncterm SUBDIR += thebridge SUBDIR += tilp SUBDIR += tilp2 diff --git a/comms/syncterm/Makefile b/comms/syncterm/Makefile new file mode 100644 index 000000000000..2be5038c15d2 --- /dev/null +++ b/comms/syncterm/Makefile @@ -0,0 +1,50 @@ +# New ports collection makefile for: syncterm +# Date created: 3 October 2006 +# Whom: shurd +# +# $FreeBSD$ +# + +PORTNAME= syncterm +PORTVERSION= 0.8.20061020 +CATEGORIES= comms +MASTER_SITES= http://syncterm.bbsdev.net/ +DISTNAME= syncterm-src-20061020 +EXTRACT_SUFX= .tgz + +MAINTAINER= shurd@sasktel.net +COMMENT= An ANSI-BBS terminal which supports telnet, rlogin, and SSH + +LIB_DEPENDS= cl:${PORTSDIR}/security/cryptlib + +WRKSRC= ${WRKDIR}/syncterm-20061020 +USE_GMAKE= yes +MAKEFILE= GNUmakefile + +OPTIONS= X11 "Build with X11 support" ON \ + SDL "Build with SDL support" ON \ + DEBUG "Build a debug version" OFF + +PLIST_FILES= bin/syncterm + +.include <bsd.port.pre.mk> + +MAKE_ARGS+= -C syncterm +MAKE_ARGS+= PREFIX=${PREFIX} +MAKE_ARGS+= "INSTALL_EXE=${INSTALL_PROGRAM}" +.if defined(WITHOUT_X11) +MAKE_ARGS+= NO_X=1 +.else +USE_XLIB= yes +.endif +.if !defined(WITHOUT_SDL) +USE_SDL= sdl +MAKE_ARGS+= USE_SDL=1 +.endif +.if defined(WITH_DEBUG) +MAKE_ARGS+= DEBUG=1 +.else +MAKE_ARGS+= RELEASE=1 +.endif + +.include <bsd.port.post.mk> diff --git a/comms/syncterm/distinfo b/comms/syncterm/distinfo new file mode 100644 index 000000000000..099aa85acce3 --- /dev/null +++ b/comms/syncterm/distinfo @@ -0,0 +1,3 @@ +MD5 (syncterm-src-20061020.tgz) = a4b98f838e10c8d1af9adbc4aed92c80 +SHA256 (syncterm-src-20061020.tgz) = e04483224a68a5571d62e37de310d79c2de69c283c343825c8abc01eb4cd0b7b +SIZE (syncterm-src-20061020.tgz) = 369046 diff --git a/comms/syncterm/pkg-descr b/comms/syncterm/pkg-descr new file mode 100644 index 000000000000..726a9ccb7aa0 --- /dev/null +++ b/comms/syncterm/pkg-descr @@ -0,0 +1,5 @@ +An ANSI-BBS terminal designed to connect to remote BBSs via telnet, rlogin, or +SSH. Supports ANSI music and the IBM charset when possible. Will run from a +console, under X11 using XLib, or using SDL. + +WWW: http://syncterm.bbsdev.net/ |