Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Dec 2020 19:53:29 +0000 (UTC)
From:      Joerg Wunsch <joerg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r557387 - in head/emulators: . tnylpo
Message-ID:  <202012091953.0B9JrTN1070280@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: joerg
Date: Wed Dec  9 19:53:29 2020
New Revision: 557387
URL: https://svnweb.freebsd.org/changeset/ports/557387

Log:
  Add tnylpo, an elegant CP/M emulator
  
  Unlike other emulators, it does not only emulate a Z80 CPU, but
  essentially all the CP/M 2.2 BDOS services straight at the Unix
  level. Thus, one can run any CP/M command straight from the Unix
  command prompt.

Added:
  head/emulators/tnylpo/
  head/emulators/tnylpo/Makefile   (contents, props changed)
  head/emulators/tnylpo/distinfo   (contents, props changed)
  head/emulators/tnylpo/pkg-descr   (contents, props changed)
  head/emulators/tnylpo/pkg-plist   (contents, props changed)
Modified:
  head/emulators/Makefile

Modified: head/emulators/Makefile
==============================================================================
--- head/emulators/Makefile	Wed Dec  9 19:33:39 2020	(r557386)
+++ head/emulators/Makefile	Wed Dec  9 19:53:29 2020	(r557387)
@@ -142,6 +142,7 @@
     SUBDIR += tme
     SUBDIR += tpm-emulator
     SUBDIR += tuxnes
+    SUBDIR += tnylpo
     SUBDIR += uae
     SUBDIR += ucon64
     SUBDIR += ukncbtl

Added: head/emulators/tnylpo/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/tnylpo/Makefile	Wed Dec  9 19:53:29 2020	(r557387)
@@ -0,0 +1,31 @@
+# Created by: Joerg Wunsch <joerg@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	tnylpo
+DISTVERSION=	1.1.2
+CATEGORIES=	emulators
+MASTER_SITES=	https://gitlab.com/gbrein/${PORTNAME}/-/archive/${DISTVERSION}/
+
+MAINTAINER=	joerg@FreeBSD.org
+COMMENT=	CP/M emulator
+
+LICENSE=	BSD3CLAUSE
+
+USES=		tar:bzip2 gmake
+
+MAKEFILE=	makefile
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/tnylpo ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_PROGRAM} ${WRKSRC}/tnylpo-convert ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/tnylpo.1 \
+		${STAGEDIR}${MANPREFIX}/man/man1
+	${INSTALL_MAN} ${WRKSRC}/tnylpo-convert.1 \
+		${STAGEDIR}${MANPREFIX}/man/man1
+	${MKDIR} ${STAGEDIR}${PREFIX}/share/${PORTNAME}
+	${INSTALL_DATA} ${WRKSRC}/mine/mine.com \
+		${STAGEDIR}${PREFIX}/share/${PORTNAME}
+	${INSTALL_DATA} ${WRKSRC}/mine/README.md \
+		${STAGEDIR}${PREFIX}/share/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/emulators/tnylpo/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/tnylpo/distinfo	Wed Dec  9 19:53:29 2020	(r557387)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1607526134
+SHA256 (tnylpo-1.1.2.tar.bz2) = 2d151ad957a8d076f78399ef14e2a308e9f3df4f491152886f8bd93cfcb6b236
+SIZE (tnylpo-1.1.2.tar.bz2) = 82899

Added: head/emulators/tnylpo/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/tnylpo/pkg-descr	Wed Dec  9 19:53:29 2020	(r557387)
@@ -0,0 +1,12 @@
+tnylpo allows the execution of programs written for CP/M-80 version
+2.2 under Unixy operating systems. It has been tested under Linux
+(Debian 8 i386; Debian 9 amd64; Debian 10 amd64, i386; Ubuntu 18.04.1
+LTS amd64; CentOS 7; Slackware 14.2 i386), FreeBSD (12.0 amd64),
+NetBSD (9.0 amd64; 8.0 i386, sparc, vax), OpenBSD (6.4, 6.7 i386),
+Solaris (10 x86, 32 and 64 bit; 9 sparc, 32 bit; 9 x86; 7 sparc, 32
+bit), and Mac OS X (10.5 ppc, 10.6, 10.9, 10.11, 10.13), but should
+need little to no modifications to run under any other reasonably
+recent system. The companion program tnylpo-convert converts text
+files to and from the CP/M format.
+
+WWW: https://gitlab.com/gbrein/tnylpo

Added: head/emulators/tnylpo/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/tnylpo/pkg-plist	Wed Dec  9 19:53:29 2020	(r557387)
@@ -0,0 +1,6 @@
+bin/tnylpo
+bin/tnylpo-convert
+man/man1/tnylpo-convert.1.gz
+man/man1/tnylpo.1.gz
+share/tnylpo/mine.com
+share/tnylpo/README.md



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012091953.0B9JrTN1070280>