1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

- Convert to USES=tk

- STAGE-clean
- Fix build

MFH:		2014Q1
This commit is contained in:
Pietro Cerutti 2014-01-14 14:22:55 +00:00
parent 8e584a521a
commit 115233d891
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=339688

View File

@ -11,15 +11,13 @@ MASTER_SITES= http://www.jp.nishida.org/tcpillust/
MAINTAINER= nishida@sfc.wide.ad.jp
COMMENT= Graphical TCP connection analysis tool
USES= motif
USE_TCL= yes
USE_TK= yes
USES= motif tk
USE_XORG= xt
MAN1= tcpillust.1
PORTDOCS= tcpclient.log tcpserver.log
PLIST_DIRS= share/tcpillust
PLIST_FILES= bin/tcpillust \
man/man1/tcpillust.1.gz \
share/tcpillust/tcpillust.tcl \
share/tcpillust/back.xbm \
share/tcpillust/forward.xbm \
@ -28,24 +26,21 @@ PLIST_FILES= bin/tcpillust \
WRKSRC= ${WRKDIR}/${PORTNAME}
NO_STAGE= yes
do-build:
.for file in binread.c button.c draw.c parser.c tcpillust.c tcpdump/print-tcp.c
${CC} ${CFLAGS} -I/usr/include -I/usr/include/pcap -I${LOCALBASE}/include/ -I${TCL_INCLUDEDIR} -I${TK_INCLUDEDIR} \
${CC} ${CFLAGS} -DHAVE_BPF_DUMP -I/usr/include -I/usr/include/pcap -I${LOCALBASE}/include/ -I${TCL_INCLUDEDIR} -I${TK_INCLUDEDIR} \
-I${LOCALBASE}/include -DILTDIR=\"${DATADIR}\" -c ${WRKSRC}/${file} -o ${WRKSRC}/${file:S/.c/.o/}
.endfor
${CC} ${CFLAGS} -L/lib -L/usr/lib -L${TCL_LIBDIR} -L${TK_LIBDIR} -L${LOCALBASE}/lib \
-lm -ltcl${TCL_VER:S/.//} -ltk${TK_VER:S/.//} ${WRKSRC}/*.o ${WRKSRC}/tcpdump/*.o -o ${WRKSRC}/tcpillust -lpcap -lX11
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/tcpillust ${PREFIX}/bin
${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/tcpillust.tcl ${DATADIR}/
${INSTALL_DATA} ${WRKSRC}/*.xbm ${DATADIR}/
${INSTALL_MAN} ${WRKSRC}/tcpillust.man ${PREFIX}/man/man1/tcpillust.1
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/sample/* ${DOCSDIR}
.endif
${INSTALL_PROGRAM} ${WRKSRC}/tcpillust ${STAGEDIR}${PREFIX}/bin
${MKDIR} ${STAGEDIR}${DATADIR}
${INSTALL_DATA} ${WRKSRC}/tcpillust.tcl ${STAGEDIR}${DATADIR}/
${INSTALL_DATA} ${WRKSRC}/*.xbm ${STAGEDIR}${DATADIR}/
${INSTALL_MAN} ${WRKSRC}/tcpillust.man ${STAGEDIR}${PREFIX}/man/man1/tcpillust.1
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/sample/* ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>