diff options
Diffstat (limited to 'net/ncat/Makefile')
-rw-r--r-- | net/ncat/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net/ncat/Makefile b/net/ncat/Makefile new file mode 100644 index 0000000..0c2d71a --- /dev/null +++ b/net/ncat/Makefile @@ -0,0 +1,33 @@ +# 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> |