mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
9b94a62312
PR: 20240 Submitted by: Peter Pentchev <roam@orbitel.bg>
32 lines
725 B
Makefile
32 lines
725 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: netcat
|
|
# Date created: Thur Nov 21, 1996
|
|
# Whom: David O'Brien (obrien@cs.ucdavis.edu)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= netcat
|
|
PORTVERSION= 1.10
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://avian.org/src/hacks/ \
|
|
http://www.l0pht.com/users/10pht/ \
|
|
ftp://ftp.rge.com/pub/security/coast/mirrors/avian.org/netcat/
|
|
DISTNAME= nc110
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
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>
|