1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-17 03:25:46 +00:00
freebsd-ports/net/recvnet/Makefile
John Marino 624739ba8a x11/xterm: document ncurses requirement (USES+=ncurses)
Also link with libncurses, not libcurses

approved by:	infrastructure blanket
2016-02-05 13:08:59 +00:00

32 lines
718 B
Makefile

# Created by: Emanuel Haupt <ehaupt@critical.ch>
# $FreeBSD$
PORTNAME= recvnet
PORTVERSION= 0.0.1
PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= http://www.vanheusden.com/Linux/ \
LOCAL/ehaupt
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Recvnet (inverse telnet) is a utility for debugging tcp connections
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/license.txt
USES= ncurses tar:tgz
CFLAGS+= -DVERSION=\"${PORTVERSION}\"
LDFLAGS+= -lncurses
PLIST_FILES= bin/recvnet
do-build:
${CC} ${CFLAGS} -c ${WRKSRC}/${PORTNAME}.c -o ${WRKSRC}/${PORTNAME}.o
${CC} ${LDFLAGS} ${WRKSRC}/${PORTNAME}.o -o ${WRKSRC}/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>