mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
Fixup MASTER_SITES, one diff per patch, and install example data.
PR: 15381 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
This commit is contained in:
parent
fd1fff83b2
commit
dff20603bf
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=23753
@ -6,13 +6,19 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= xgraph-11.3.2
|
||||
DISTNAME= xgraph-11
|
||||
PKGNAME= xgraph-11.3.2
|
||||
CATEGORIES= math print
|
||||
MASTER_SITES= ${MASTER_SITE_PORTS_JP}
|
||||
MASTER_SITES= ftp://ftp.cs.utoronto.ca/pub/radford/
|
||||
EXTRACT_SUFX= .tar.Z
|
||||
|
||||
MAINTAINER= sanpei@sanpei.org
|
||||
|
||||
USE_IMAKE= yes
|
||||
MAN1= xgraph.1
|
||||
|
||||
post-install:
|
||||
@${MKDIR} ${PREFIX}/share/examples/xgraph
|
||||
${INSTALL_DATA} ${WRKSRC}/examples/*.xg ${PREFIX}/share/examples/xgraph
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1 +1 @@
|
||||
MD5 (xgraph-11.3.2.tar.gz) = d717ff190e967465a3785f86fb2b8007
|
||||
MD5 (xgraph-11.tar.Z) = 15d78d243f007da88e1732474711e8b9
|
||||
|
11
math/xgraph/files/patch-ac
Normal file
11
math/xgraph/files/patch-ac
Normal file
@ -0,0 +1,11 @@
|
||||
--- xtb.c.orig Thu Jul 17 04:26:41 1997
|
||||
+++ xtb.c Fri Dec 10 03:06:26 1999
|
||||
@@ -196,7 +196,7 @@
|
||||
{
|
||||
xtb_data data;
|
||||
|
||||
- if (!XFindContext(t_disp, win, h_context, &data)) {
|
||||
+ if (!XFindContext(t_disp, win, h_context, (XPointer*)&data)) {
|
||||
return ((struct h_info *) data)->info;
|
||||
} else {
|
||||
return (xtb_data) 0;
|
14
math/xgraph/files/patch-ad
Normal file
14
math/xgraph/files/patch-ad
Normal file
@ -0,0 +1,14 @@
|
||||
--- hpgl.c.orig Thu Jul 17 03:40:40 1997
|
||||
+++ hpgl.c Fri Dec 10 03:07:38 1999
|
||||
@@ -11,10 +11,8 @@
|
||||
#include "xgout.h"
|
||||
#include "plotter.h"
|
||||
#include <stdio.h>
|
||||
+#include <stdlib.h>
|
||||
#include <math.h>
|
||||
-#define MAX(a,b) ( ((a)>(b)) ? (a) : (b) )
|
||||
-#define MIN(a,b) ( ((a)<(b)) ? (a) : (b) )
|
||||
-char *malloc();
|
||||
|
||||
static void hpglText();
|
||||
static void hpglSeg();
|
39
math/xgraph/files/patch-ae
Normal file
39
math/xgraph/files/patch-ae
Normal file
@ -0,0 +1,39 @@
|
||||
--- xgraph.h.orig Thu Jul 17 03:40:41 1997
|
||||
+++ xgraph.h Fri Dec 10 03:10:48 1999
|
||||
@@ -5,7 +5,12 @@
|
||||
#ifndef _XGRAPH_H_
|
||||
#define _XGRAPH_H_
|
||||
|
||||
+#include <stdio.h>
|
||||
+#include <stdlib.h>
|
||||
+#include <string.h>
|
||||
#include <X11/Xos.h>
|
||||
+#undef index
|
||||
+#undef rindex
|
||||
#include <X11/Xlib.h>
|
||||
#include <X11/Xutil.h>
|
||||
#include <X11/cursorfont.h>
|
||||
@@ -33,20 +38,9 @@
|
||||
extern void ho_dialog(); /* Hardcopy dialog */
|
||||
extern void set_X(); /* Initializes X device */
|
||||
|
||||
-#if 0
|
||||
-/* To make lint happy */
|
||||
-extern char *malloc();
|
||||
-extern char *realloc();
|
||||
-extern char *sprintf();
|
||||
-extern char *strcpy();
|
||||
-extern char *strcat();
|
||||
-extern char *rindex();
|
||||
-extern char *index();
|
||||
-extern void exit();
|
||||
-extern void free();
|
||||
-extern double atof();
|
||||
+#ifndef MAX
|
||||
+#define MAX(a,b) ((a) > (b) ? (a) : (b))
|
||||
+#define MIN(a,b) ((a) < (b) ? (a) : (b))
|
||||
#endif
|
||||
-
|
||||
-extern void abort();
|
||||
|
||||
#endif /* _XGRAPH_H_ */
|
10
math/xgraph/files/patch-ag
Normal file
10
math/xgraph/files/patch-ag
Normal file
@ -0,0 +1,10 @@
|
||||
--- ps.c.orig Thu Jul 17 03:40:40 1997
|
||||
+++ ps.c Fri Dec 10 03:11:36 1999
|
||||
@@ -57,7 +57,6 @@
|
||||
#define PS(str) OUT(psFile, str)
|
||||
#define PSU(str) OUT(ui->psFile, str)
|
||||
#define IY(val) (ui->height_devs - val)
|
||||
-#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
||||
|
||||
/*
|
||||
* Globals
|
@ -1 +1,7 @@
|
||||
bin/xgraph
|
||||
share/examples/xgraph/bar.xg
|
||||
share/examples/xgraph/surface.xg
|
||||
share/examples/xgraph/surface2.xg
|
||||
share/examples/xgraph/surface3.xg
|
||||
share/examples/xgraph/xgtest.xg
|
||||
@dirrm share/examples/xgraph
|
||||
|
Loading…
Reference in New Issue
Block a user