aboutsummaryrefslogtreecommitdiff
path: root/net/tcpillust/Makefile
blob: 91199308460ab87e8bd9a509691f6bcf6d76a989 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Created by: nishida@sfc.wide.ad.jp
# $FreeBSD$

PORTNAME=	tcpillust
PORTVERSION=	2.01
PORTREVISION=	2
PORTEPOCH=	1
CATEGORIES=	net tcl tk
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
USE_XORG=	xt

MAN1=		tcpillust.1
PORTDOCS=	tcpclient.log tcpserver.log
PLIST_DIRS=	share/tcpillust
PLIST_FILES=	bin/tcpillust \
		share/tcpillust/tcpillust.tcl \
		share/tcpillust/back.xbm \
		share/tcpillust/forward.xbm \
		share/tcpillust/zoomin.xbm \
		share/tcpillust/zoomout.xbm

WRKSRC=		${WRKDIR}/${PORTNAME}

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} \
	-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

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

.include <bsd.port.mk>