mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
a4af109a79
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.
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
# 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>
|