2003-12-17 18:24:58 +01:00
|
|
|
# New ports collection makefile for: tcping
|
|
|
|
# Date created: 2003-12-16
|
|
|
|
# Whom: Dryice Liu
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= tcping
|
2004-11-11 07:58:32 +01:00
|
|
|
PORTVERSION= 1.3.4
|
2003-12-17 18:24:58 +01:00
|
|
|
CATEGORIES= net
|
2005-01-13 01:20:28 +01:00
|
|
|
MASTER_SITES= http://www.linuxco.de/tcping/ \
|
2006-03-15 19:21:26 +01:00
|
|
|
http://dryice.name/computer/FreeBSD/distfiles/
|
2003-12-17 18:24:58 +01:00
|
|
|
|
2006-01-11 05:01:50 +01:00
|
|
|
MAINTAINER= dryice@dryice.name
|
2004-02-23 14:31:19 +01:00
|
|
|
COMMENT= Do a TCP connect to the given IP/port combination
|
2004-02-21 21:07:54 +01:00
|
|
|
|
2003-12-17 18:24:58 +01:00
|
|
|
DOCS= README
|
|
|
|
|
|
|
|
do-build:
|
|
|
|
cd ${WRKSRC} && \
|
|
|
|
${CC} ${CFLAGS} -DHAVE_HSTRERROR -o tcping tcping.c
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tcping ${PREFIX}/bin/tcping
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@${MKDIR} ${DOCSDIR}
|
|
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|