mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
Another plotting utility. Commonly used to plot TCP traces.
Submitted by: fenner (he had to leave so I'm importing it)
This commit is contained in:
parent
34ca2fd645
commit
039046aefd
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=5861
32
math/xplot/Makefile
Normal file
32
math/xplot/Makefile
Normal file
@ -0,0 +1,32 @@
|
||||
# New ports collection makefile for: xplot
|
||||
# Version required: 0.89
|
||||
# Date created: 3 March 1997
|
||||
# Whom: fenner
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
DISTNAME= xplot-0.89
|
||||
CATEGORIES= math graphics net
|
||||
MASTER_SITES= ftp://mercury.lcs.mit.edu/pub/shep/
|
||||
|
||||
MAINTAINER= fenner@FreeBSD.ORG
|
||||
|
||||
USE_X11= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
XPLOT_DEMOS= demo.0 demo.1 demo.2 demo.3 demo.4 demo.5 demo.6 demo.7
|
||||
|
||||
post-install:
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/tcpdump2xplot.pl ${PREFIX}/bin
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/share/doc/xplot
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xplot
|
||||
${INSTALL_DATA} ${WRKSRC}/README.tcp_plots ${PREFIX}/share/doc/xplot
|
||||
.endif
|
||||
${MKDIR} ${PREFIX}/share/examples/xplot
|
||||
.for i in ${XPLOT_DEMOS}
|
||||
${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/examples/xplot
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
1
math/xplot/distinfo
Normal file
1
math/xplot/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (xplot-0.89.tar.gz) = 4aa3b5b1cf6689abd3cdb5e8f8cfb95d
|
66
math/xplot/files/patch-aa
Normal file
66
math/xplot/files/patch-aa
Normal file
@ -0,0 +1,66 @@
|
||||
--- double.c.orig Fri Dec 6 07:40:20 1996
|
||||
+++ double.c Mon Mar 3 11:41:30 1997
|
||||
@@ -32,7 +32,7 @@
|
||||
*/
|
||||
#include <X11/Xos.h>
|
||||
#include <math.h>
|
||||
-#include <malloc.h>
|
||||
+#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "xplot.h"
|
||||
#include "coord.h"
|
||||
--- dtime.c.orig Fri Dec 6 07:40:21 1996
|
||||
+++ dtime.c Mon Mar 3 11:41:30 1997
|
||||
@@ -32,7 +32,7 @@
|
||||
*/
|
||||
#include <X11/Xos.h>
|
||||
#include <math.h>
|
||||
-#include <malloc.h>
|
||||
+#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "xplot.h"
|
||||
#include "coord.h"
|
||||
--- signed.c.orig Thu Mar 23 18:17:51 1995
|
||||
+++ signed.c Mon Mar 3 11:41:30 1997
|
||||
@@ -32,7 +32,7 @@
|
||||
*/
|
||||
#include <X11/Xos.h>
|
||||
#include <math.h>
|
||||
-#include <malloc.h>
|
||||
+#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "xplot.h"
|
||||
#include "coord.h"
|
||||
--- timeval.c.orig Fri Jun 28 12:41:21 1996
|
||||
+++ timeval.c Mon Mar 3 11:41:31 1997
|
||||
@@ -32,7 +32,7 @@
|
||||
*/
|
||||
#include <X11/Xos.h>
|
||||
#include <math.h>
|
||||
-#include <malloc.h>
|
||||
+#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
#include "xplot.h"
|
||||
--- unsigned.c.orig Wed Dec 4 13:35:14 1996
|
||||
+++ unsigned.c Mon Mar 3 11:41:31 1997
|
||||
@@ -32,7 +32,7 @@
|
||||
*/
|
||||
#include <X11/Xos.h>
|
||||
#include <math.h>
|
||||
-#include <malloc.h>
|
||||
+#include <stdlib.h>
|
||||
#include "xplot.h"
|
||||
#include "coord.h"
|
||||
#include <stdio.h>
|
||||
--- xplot.c.orig Wed Jan 22 09:38:48 1997
|
||||
+++ xplot.c Mon Mar 3 11:41:31 1997
|
||||
@@ -46,7 +46,7 @@
|
||||
#include <X11/cursorfont.h>
|
||||
#include <math.h>
|
||||
#include <ctype.h>
|
||||
-#include <malloc.h>
|
||||
+#include <stdlib.h>
|
||||
#include "xplot.h"
|
||||
#include "coord.h"
|
||||
|
1
math/xplot/pkg-comment
Normal file
1
math/xplot/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
X-windows plotting package
|
2
math/xplot/pkg-descr
Normal file
2
math/xplot/pkg-descr
Normal file
@ -0,0 +1,2 @@
|
||||
An X-Windows graphing utility. Commonly used to display TCP
|
||||
traces.
|
12
math/xplot/pkg-plist
Normal file
12
math/xplot/pkg-plist
Normal file
@ -0,0 +1,12 @@
|
||||
bin/xplot
|
||||
bin/tcpdump2xplot.pl
|
||||
share/doc/xplot/README
|
||||
share/doc/xplot/README.tcp_plots
|
||||
share/examples/xplot/demo.0
|
||||
share/examples/xplot/demo.1
|
||||
share/examples/xplot/demo.2
|
||||
share/examples/xplot/demo.3
|
||||
share/examples/xplot/demo.4
|
||||
share/examples/xplot/demo.5
|
||||
share/examples/xplot/demo.6
|
||||
share/examples/xplot/demo.7
|
Loading…
Reference in New Issue
Block a user