7b31020cb6
PR: 66502 Submitted by: Gea-Suan Lin <gslin@netnews.NCTU.edu.tw> (maintainer)
30 lines
673 B
Makefile
30 lines
673 B
Makefile
# New ports collection makefile for: ntalk
|
|
# Date created: 26 August 2001
|
|
# Whom: Gea-Suan Lin (gslin@ccca.nctu.edu.tw)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ntalk
|
|
PORTVERSION= 0.6.3
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://network.terramail.pl/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A console chat application written with ncurse
|
|
|
|
do-build:
|
|
cd ${WRKSRC}; \
|
|
${CXX} ${CXXFLAGS} -o ntalk ntalk.cpp -lncurses ${PTHREAD_LIBS}
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for FILE in AUTHORS COPYING ChangeLog INSTALL README
|
|
@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|