1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/net/datapipe/Makefile
Daniel Baker 978d020c95 properly (i hope) import datapipe port
datapipe is a simple program that allows a listening TCP/IP port to be
constructed on the machine it is running on.  Any connections to that port
will then be forwarded to the specified remote host and remote port.
2000-01-04 08:13:52 +00:00

25 lines
577 B
Makefile

# New ports collection makefile for: datapipe
# Version required: 1.0
# Date created: 04 January 2000
# Whom: Daniel Baker <dbaker@FreeBSD.org> <dbaker@cuckoo.com>
#
# $FreeBSD$
#
DISTNAME= datapipe-1.0
CATEGORIES= net
MASTER_SITES= ftp://ftp.distributed.net/pub/dcti/unsupported/ \
http://http.distributed.net/pub/dcti/unsupported/
DISTFILE= datapipe-1.0.tar.gz
MAINTAINER= dbaker@FreeBSD.org
do-build:
${CC} -o ${WRKDIR}/${DISTNAME}/datapipe ${WRKDIR}/${DISTNAME}/datapipe.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/datapipe ${PREFIX}/bin
.include <bsd.port.mk>