summaryrefslogtreecommitdiff
path: root/comms/zmtx-zmrx/Makefile
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1996-12-08 23:39:32 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1996-12-08 23:39:32 +0000
commita4af109a79023a968afabdd845ac03604858f54e (patch)
tree99547032e1be5517afe49474e6566ddab2607537 /comms/zmtx-zmrx/Makefile
parentUpgrade, 1.3 -> 1.3.1. (diff)
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.
Notes
Notes: svn path=/head/; revision=4900
Diffstat (limited to 'comms/zmtx-zmrx/Makefile')
-rw-r--r--comms/zmtx-zmrx/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/comms/zmtx-zmrx/Makefile b/comms/zmtx-zmrx/Makefile
new file mode 100644
index 000000000000..40d00b44b2da
--- /dev/null
+++ b/comms/zmtx-zmrx/Makefile
@@ -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>