1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

zmtx and zmrz impliement the ZMODEM error correcting protocol used to

send/receive files over a dial-in serial port.  And they do one thing
and only one thing -- transmit files.  They don't do file conversions,
they don't do remote commands, or any of that other stuff.
This commit is contained in:
David E. O'Brien 1996-12-08 23:39:32 +00:00
parent bf43dca9fd
commit a4af109a79
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=4900
8 changed files with 117 additions and 0 deletions

41
comms/zmtx-zmrx/Makefile Normal file
View File

@ -0,0 +1,41 @@
# ex:ts=8
# Ports collection makefile for: zmtx-zmrx
# Version required: 1.02
# Date created: 29 July 1996
# Whom: David O'Brien <obrien@cs.ucdavis.edu>
#
# $Id: Makefile,v 1.1.1.1 1996/03/05 07:46:57 asami Exp $
#
DISTNAME= zmtx-zmrx
PKGNAME= zmtx-zmrx-1.02
CATEGORIES= comms
MASTER_SITES= ftp://ftp.inria.fr/network/modem/ \
ftp://freefall.FreeBSD.ORG/pub/FreeBSD/LOCAL_PORTS/
# see also comp.unix.sources for version 1.0
# ftp://ftp.lth.se/pub/usenet/comp.sources.unix/volume28/zm/part01.gz
EXTRACT_SUFX= .shar.gz
MAINTAINER= obrien@cs.ucdavis.edu
NO_CDROM= "can't use use this software for commercial purposes"
NO_PACKAGE= "can't use use this software for commercial purposes"
EXTRACT_CMD= zcat
EXTRACT_BEFORE_ARGS=
EXTRACT_AFTER_ARGS= |sh
NO_WRKSUBDIR= yes
MAKEFILE= makefile
MAN1= zmrx.1 zmtx.1
do-install:
.for f in zmrx zmtx
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${f}.1 ${PREFIX}/man/man1
.endfor
post-install:
@${ECHO} ""
@${CAT} ${PKGDIR}/licence
@${ECHO} ""
.include <bsd.port.mk>

1
comms/zmtx-zmrx/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (zmtx-zmrx.shar.gz) = 91b76af80839af697b22417be8165d0e

View File

@ -0,0 +1,29 @@
--- zmrx.c.orig Sun Oct 13 12:25:53 1996
+++ zmrx.c Mon Oct 14 20:17:03 1996
@@ -70,7 +70,7 @@
cps = ftell(fp) / duration;
- fprintf(stderr,"zmrx: receiving file \"%s\" %8ld bytes (%3d %%/%5d cps) \r",
+ fprintf(stderr,"receiving file \"%s\" %8ld bytes (%3d %%/%5d cps)\r",
name,ftell(fp),percentage,cps);
}
@@ -223,7 +223,7 @@
}
if (opt_v) {
- fprintf(stderr,"zmrx: receiving file \"%s\"\r",name);
+ fprintf(stderr,"receiving file \"%s\"\r",name);
}
sscanf(rx_data_subpacket + strlen(rx_data_subpacket) + 1,
@@ -342,7 +342,7 @@
*/
if (opt_v) {
- fprintf(stderr,"zmrx: received file \"%s\" \n",name);
+ fprintf(stderr,"zmrx: received file \"%s\"\n",name);
}
}

View File

@ -0,0 +1,11 @@
--- zmtx.c.orig Sat Oct 19 08:53:36 1996
+++ zmtx.c Sat Oct 19 08:53:14 1996
@@ -65,7 +65,7 @@
cps = ftell(fp) / duration;
- fprintf(stderr,"zmtx: sending file \"%s\" %8ld bytes (%3d %%/%5d cps) \r",
+ fprintf(stderr,"sending file \"%s\" %8ld bytes (%3d %%/%5d cps)\r",
name,ftell(fp),percentage,cps);
}

View File

@ -0,0 +1 @@
Receive/Send files via ZMODEM protocol. (unrestrictive)

View File

@ -0,0 +1,9 @@
zmtx and zmrz impliement the ZMODEM error correcting protocol used to
send/receive files over a dial-in serial port. And they do one thing
and only one thing -- transmit files. They don't do file conversions,
they don't do remote commands, or any of that other stuff.
Note, zmtx-zmrx is not derived from Chuck Forsberg's rzsz package.
The only restriction is that you will not use this software for
commercial purposes. (commercial licenses are available contact the
author for info)

View File

@ -0,0 +1,21 @@
MCS allows you to use and copy/modify this source under the following
conditions:
- MCS or Jacques Mattheij shall not be liable for any damages arising
from the use of this code
- the archive must be distributed as a whole leaving version numbers intact.
please do not distribute modifications; mail them back to us for inclusion
in the next release which should follow each other fairly quickly in
the beginning
- you will not use this software for commercial purposes.
(commercial licenses are available contact us for info)
/* contact us through (in order of preference) */
/* */
/* email: jacquesm@hacktic.nl */
/* mail: MCS */
/* Prinses Beatrixlaan 535 */
/* 2284 AT RIJSWIJK */
/* The Netherlands */
/* voice phone: 31+070-3936926 */

View File

@ -0,0 +1,4 @@
bin/zmrx
bin/zmtx
man/man1/zmrx.1.gz
man/man1/zmtx.1.gz