Date: Tue, 14 Jan 2014 14:22:55 +0000 (UTC) From: Pietro Cerutti <gahr@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339688 - head/net/tcpillust Message-ID: <201401141422.s0EEMtmx094849@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gahr Date: Tue Jan 14 14:22:55 2014 New Revision: 339688 URL: http://svnweb.freebsd.org/changeset/ports/339688 Log: - Convert to USES=tk - STAGE-clean - Fix build MFH: 2014Q1 Modified: head/net/tcpillust/Makefile Modified: head/net/tcpillust/Makefile ============================================================================== --- head/net/tcpillust/Makefile Tue Jan 14 14:19:05 2014 (r339687) +++ head/net/tcpillust/Makefile Tue Jan 14 14:22:55 2014 (r339688) @@ -11,15 +11,13 @@ MASTER_SITES= http://www.jp.nishida.org/ 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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401141422.s0EEMtmx094849>