mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
a5909018cc
libstash - Algorithms and data structures library. libsock - TCP/IP networking library ncat - Like cat(1), but with sockets. proxy - Transparent logging proxy. All of these ports are part of a single source distribution, but they fit better into the ports scheme as separate ports.
34 lines
603 B
Makefile
34 lines
603 B
Makefile
# New ports collection Makefile for: ncat
|
|
# Date created: 22 August 2000
|
|
# Whom: jasone
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ncat
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= net
|
|
DISTNAME= canonware-1.0.0
|
|
MASTER_SITES= http://www.canonware.com/download/canonware/
|
|
|
|
MAINTAINER= jasone@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= cook:${PORTSDIR}/devel/cook
|
|
|
|
USE_AUTOCONF= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAN1= ncat.1
|
|
MANCOMPRESSED= no
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook bin/ncat/src/ncat)
|
|
|
|
do-install:
|
|
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook ncat_install_a)
|
|
|
|
post-install:
|
|
@strip ${PREFIX}/bin/ncat
|
|
|
|
.include <bsd.port.mk>
|