diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1996-11-22 08:16:51 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1996-11-22 08:16:51 +0000 |
commit | c14bd1fe166eae4e38a8692c8cd655c07d7b4c3a (patch) | |
tree | e618537ddfcd006b631be5f9cb9c6153bec1795c /net/netcat/Makefile | |
parent | 1.0.93 --> 1.0.94 (diff) |
New port -- netcat is a simple utility which reads and writes data across
network connections.
Obtained from: OpenBSD
Diffstat (limited to 'net/netcat/Makefile')
-rw-r--r-- | net/netcat/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net/netcat/Makefile b/net/netcat/Makefile new file mode 100644 index 000000000000..6c7427a1421d --- /dev/null +++ b/net/netcat/Makefile @@ -0,0 +1,33 @@ +# ex:ts=8 +# New ports collection makefile for: netcat +# Version required: 1.10 +# Date created: Thur Nov 21, 1996 +# Whom: David O'Brien (obrien@cs.ucdavis.edu) +# +# $Id$ +# + +DISTNAME= nc110 +PKGNAME= netcat-1.10 +CATEGORIES= net +MASTER_SITES= ftp://avian.org/src/hacks/ \ + ftp://coast.cs.purdue.edu/pub/mirrors/avian.org/netcat/ \ + ftp://zippy.telcom.arizona.edu:/pub/mirrors/avian.org/hacks/ \ + ftp://ftp.sterling.com:/mirrors/avian.org/src/hacks/ \ + ftp://ftp.rge.com:/pub/security/coast/mirrors/avian.org/netcat/ +EXTRACT_SUFX= .tgz + +MAINTAINER= obrien@cs.ucdavis.edu + +NO_WRKSUBDIR= yes +ALL_TARGET= freebsd + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/nc ${PREFIX}/bin +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/netcat \ + && chmod a+rx ${PREFIX}/share/doc/netcat + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/netcat +.endif + +.include <bsd.port.mk> |