6f6fbe4bdf
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
33 lines
691 B
Makefile
33 lines
691 B
Makefile
# New ports collection makefile for: nc6
|
|
# Date created: 30 May 2002
|
|
# Whom: Filippo Natali <filippo@widestore.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nc6
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= net ipv6
|
|
MASTER_SITES= ftp://ftp.deepspace6.net/pub/ds6/sources/nc6/ \
|
|
http://ftp.deepspace6.net/pub/ds6/sources/nc6/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Netcat clone with IPv6 support
|
|
|
|
MAN1= nc6.1
|
|
USE_ICONV= yes
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.if !defined(WITHOUT_NLS)
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|