diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-07-24 19:10:37 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-07-24 19:10:37 +0000 |
commit | f30800ded7381c855717f366ae4191acba957f39 (patch) | |
tree | 4b8070e05fcdb68feca7e69476c73db4d2c98d38 | |
parent | a72b87a1cff92c6f30cc28258412f1eda0997234 (diff) | |
download | ports-f30800ded7381c855717f366ae4191acba957f39.tar.gz ports-f30800ded7381c855717f366ae4191acba957f39.zip |
Add ncp, a utility for copying files in a LAN. It has absolutely
no security or integrity checking, no throttling, no features, except
one: you don't have to type the coordinates of your peer.
PR: 48994
Submitted by: Matthias Teege <matthias@mteege.de>
Notes
Notes:
svn path=/head/; revision=85542
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/ncp/Makefile | 27 | ||||
-rw-r--r-- | net/ncp/distinfo | 1 | ||||
-rw-r--r-- | net/ncp/pkg-descr | 8 | ||||
-rw-r--r-- | net/ncp/pkg-plist | 3 |
5 files changed, 40 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index c542cda5a232..9d5f621437e9 100644 --- a/net/Makefile +++ b/net/Makefile @@ -350,6 +350,7 @@ SUBDIR += nbtscan SUBDIR += nc SUBDIR += nc6 + SUBDIR += ncp SUBDIR += ncplib SUBDIR += nemesis SUBDIR += net-http diff --git a/net/ncp/Makefile b/net/ncp/Makefile new file mode 100644 index 000000000000..6ccf87cca0bf --- /dev/null +++ b/net/ncp/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: ncp +# Date created: 2003-03-06 +# Whom: Matthias Teege <matthias@mteege.de> +# +# $FreeBSD$ + +PORTNAME= ncp +PORTVERSION= 1.2.3 +CATEGORIES= net +MASTER_SITES= ftp://ftp.fu-berlin.de/unix/network/ncp/ + +MAINTAINER= matthias@mteege.de +COMMENT= "A fast file copy tool for LANs." + +MAN1= ncp.1 npush.1 +MANCOMPRESSED= no + +WRKSRC= ${WRKDIR}/${PORTNAME} +USE_BZIP2= yes + +do-install: + cd ${WRKSRC}; ${INSTALL_PROGRAM} ncp ${PREFIX}/bin + cd ${WRKSRC}; ${INSTALL_MAN} ncp.1 npush.1 ${PREFIX}/man/man1 + ${LN} -s ${PREFIX}/bin/ncp ${PREFIX}/bin/npush + ${LN} -s ${PREFIX}/bin/ncp ${PREFIX}/bin/npoll + +.include <bsd.port.mk> diff --git a/net/ncp/distinfo b/net/ncp/distinfo new file mode 100644 index 000000000000..5a4157111958 --- /dev/null +++ b/net/ncp/distinfo @@ -0,0 +1 @@ +MD5 (ncp-1.2.3.tar.bz2) = 4486819b63f2493d788f4a516d660b74 diff --git a/net/ncp/pkg-descr b/net/ncp/pkg-descr new file mode 100644 index 000000000000..9c87b7659f0b --- /dev/null +++ b/net/ncp/pkg-descr @@ -0,0 +1,8 @@ +"ncp" is a utility for copying files in a LAN. It has absolutely no +security or integrity checking, no throttling, no features, except +one: you don't have to type the coordinates of your peer. + +WWW: http://www.fefe.de/ncp/ + +- Matthias +matthias@mteege.de diff --git a/net/ncp/pkg-plist b/net/ncp/pkg-plist new file mode 100644 index 000000000000..f8f86c567c97 --- /dev/null +++ b/net/ncp/pkg-plist @@ -0,0 +1,3 @@ +bin/ncp +bin/npush +bin/npoll |