aboutsummaryrefslogtreecommitdiff
path: root/cad/spice
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2007-12-15 19:42:35 +0000
committerPav Lucistnik <pav@FreeBSD.org>2007-12-15 19:42:35 +0000
commit535d6cba83724da4ac8ce25f2a71cd7cd00d6d82 (patch)
tree58c56cbf4d50b2fd83f00046cfc03d6316e53b1a /cad/spice
parent55ca5470695b5efe20bd0204d655d54fff12bda0 (diff)
downloadports-535d6cba83724da4ac8ce25f2a71cd7cd00d6d82.tar.gz
ports-535d6cba83724da4ac8ce25f2a71cd7cd00d6d82.zip
- Distfile rerolled, changes limited to including a copy of BSDL
- Sync patches with NetBSD. No functional changes PR: ports/117997 Submitted by: Pedro F. Giffuni <giffunip@tutopia.com>
Notes
Notes: svn path=/head/; revision=203780
Diffstat (limited to 'cad/spice')
-rw-r--r--cad/spice/distinfo6
-rw-r--r--cad/spice/files/patch-src_include_os_bsd_h31
-rw-r--r--cad/spice/files/patch-src_lib_cp_cshpar_c10
-rw-r--r--cad/spice/files/patch-src_lib_fte_grid_c131
4 files changed, 97 insertions, 81 deletions
diff --git a/cad/spice/distinfo b/cad/spice/distinfo
index e109852b3a46..a72904fd2b4a 100644
--- a/cad/spice/distinfo
+++ b/cad/spice/distinfo
@@ -1,6 +1,6 @@
-MD5 (spice/spice3f5.tar.gz) = 14d901bda437d4edda91c929b87eff51
-SHA256 (spice/spice3f5.tar.gz) = 233fe76233dc4071f43c902819a24050d3011fe6ece4c2fe2ac41f32b0e33bfb
-SIZE (spice/spice3f5.tar.gz) = 1226208
+MD5 (spice/spice3f5.tar.gz) = 2b6d1c346bea4b9914147bc30937f9e5
+SHA256 (spice/spice3f5.tar.gz) = cac11fe2a761241e6b6c9eaa31b938c7ffa76aeaecac09809609d3a4125cd269
+SIZE (spice/spice3f5.tar.gz) = 1226185
MD5 (spice/cp.ps) = ee9065de6e11e82fa3fe34318c2373fc
SHA256 (spice/cp.ps) = 3bab6c3487def4ce2e817bf7ef3c1a7d199ea8e790da3a786f936872b35d0920
SIZE (spice/cp.ps) = 10297
diff --git a/cad/spice/files/patch-src_include_os_bsd_h b/cad/spice/files/patch-src_include_os_bsd_h
index f34c75b3bd6f..bb30f55ce85c 100644
--- a/cad/spice/files/patch-src_include_os_bsd_h
+++ b/cad/spice/files/patch-src_include_os_bsd_h
@@ -1,43 +1,44 @@
--- src/include/os_bsd.h.orig Sat Apr 24 18:09:46 1993
-+++ src/include/os_bsd.h Mon Apr 3 21:27:21 2006
-@@ -8,18 +8,36 @@
++++ src/include/os_bsd.h Mon Nov 12 03:14:36 2007
+@@ -8,18 +8,35 @@
#include "os_unix.h"
-+#ifdef __FreeBSD__
++#ifdef __FreeBSD__ /* BSD4_3 */
+#define HAS_STDLIB /* #include <stdlib.h> for libc defs */
+#define HAS_SYSVDIRS /* <sys/dirent.h> */
-+#define HAS_INTWAITSTATUS /* wait(3) takes an int *, not a union */
++#define HAS_INTWAITSTATUS /* wait(2) takes an int *, not a union */
+#define HAS_STRINGS /* use <strings.h> instead of <string.h> */
-+#define HAS_STRCHR /* strchr( ) instead of index( ) */
++#define HAS_STRCHR /* strchr(3) instead of index(3) */
++#define HAS_ATRIGH /* acosh(3), asinh(3), atanh(3) */
++#define HAS_FLOAT_H /* float.h */
++#define HAS_BSDSOCKETS /* <net/inet.h>, socket(2), etc. */
++#define HAS_BSDTIME /* gettimeofday(2) return time */
+#else
#define HAS_NO_ATRIGH_DECL /* if asinh( ) is not in math.h */
-#define HAS_ATRIGH /* acosh( ), asinh( ), atanh( ) */
- #define HAS_FTIME /* ftime( ), <times.h> */
+-#define HAS_FTIME /* ftime( ), <times.h> */
++#define HAS_FTIME /* ftime(3), <times.h> */
+#define HAS_INDEX /* index( ) instead of strchr( ) */
+#define HAS_BSDDIRS /* <sys/dir.h> */
+#endif
+
-+#define HAS_ATRIGH /* acosh( ), asinh( ), atanh( ) */
#define HAS_TERMCAP /* tgetxxx( ) */
#define HAS_VFORK /* BSD-ism, should not be necessary */
-#define HAS_INDEX /* index( ) instead of strchr( ) */
#define HAS_BCOPY /* bcopy( ), bzero( ) */
#define HAS_BSDRANDOM /* srandom( ) and random( ) */
-+#ifdef __FreeBSD__
++#ifdef __FreeBSD__ /* BSD4_4 */
+#define HAS_POSIXTTY /* <termios.h> */
++#define HAS_GETCWD /* getcwd(buf,size) */
+#else
#define HAS_BSDTTY /* <sgtty.h> */
-#define HAS_BSDDIRS /* <sys/dir.h> */
++#define HAS_GETWD /* getwd(buf) */
+#endif
++
#define HAS_BSDRUSAGE /* getrusage( ) */
#define HAS_BSDRLIMIT /* getrlimit( ) */
#define HAS_DUP2
- #define HAS_GETWD /* getwd(buf) */
+-#define HAS_GETWD /* getwd(buf) */
-#define HAS_STRINGS /* use <strings.h> instead of <string.h> */
-+
-+#ifdef __FreeBSD__
-+#define HAS_BSDSOCKETS /* <net/inet.h>, socket( ), etc. */
-+#define HAS_BSDTIME /* gettimeofday( ) return time */
-+#define HAS_FLOAT_H /* float.h */
-+#endif
diff --git a/cad/spice/files/patch-src_lib_cp_cshpar_c b/cad/spice/files/patch-src_lib_cp_cshpar_c
new file mode 100644
index 000000000000..14b8a93d4d65
--- /dev/null
+++ b/cad/spice/files/patch-src_lib_cp_cshpar_c
@@ -0,0 +1,10 @@
+--- src/lib/cp/cshpar.c.orig Mon Nov 12 02:26:08 2007
++++ src/lib/cp/cshpar.c Mon Nov 12 02:30:46 2007
+@@ -6,6 +6,7 @@
+ /*
+ * The main entry point for cshpar.
+ */
++#include <unistd.h>
+
+ #include "spice.h"
+ #include "misc.h"
diff --git a/cad/spice/files/patch-src_lib_fte_grid_c b/cad/spice/files/patch-src_lib_fte_grid_c
index 2429c48c10f8..53a3d4852e02 100644
--- a/cad/spice/files/patch-src_lib_fte_grid_c
+++ b/cad/spice/files/patch-src_lib_fte_grid_c
@@ -1,71 +1,76 @@
---- src/lib/fte/grid.c.orig Sun Apr 25 23:53:11 1993
-+++ src/lib/fte/grid.c Sat Oct 7 16:00:37 2006
-@@ -26,6 +26,8 @@
+--- src/lib/fte/grid.c.orig 1993-04-25 23:53:11.000000000 +0200
++++ src/lib/fte/grid.c
+@@ -17,11 +17,14 @@ Copyright 1990 Regents of the University
+ #include "suffix.h"
+
+ #define RAD_TO_DEG (180.0 / M_PI)
++#define LABEL_CHARS 20
+
+ static double *lingrid(), *loggrid();
+ static void polargrid(), smithgrid();
+ static void drawpolargrid( );
+ static void drawsmithgrid( );
++static void drawlingrid( );
++static void drawloggrid( );
+
static void arcset();
static double cliparc();
- static void adddeglabel(), addradlabel();
-+static drawloggrid();
-+static drawlingrid();
+@@ -225,7 +228,7 @@ lingrid(graph, lo, hi, delta, type, axis
+ int max;
+ static double dd[2];
+ int mult = 1;
+- char buf[16], *s;
++ char buf[LABEL_CHARS], *s;
+ int slim, digits;
+
+ if (axis == y_axis && graph->grid.ysized) {
+@@ -473,11 +476,11 @@ lingrid(graph, lo, hi, delta, type, axis
+ return (dd);
+ }
+
+-static
++static void
+ drawlingrid(graph, units, spacing, nsp, dst, lmt, hmt, onedec, mult, mag,
+ digits, axis)
+ GRAPH *graph;
+- char units[16];
++ char *units;
+ bool onedec;
+ int nsp, spacing, mult;
+ double hmt, lmt, dst;
+@@ -488,7 +491,7 @@ drawlingrid(graph, units, spacing, nsp,
- typedef enum { x_axis, y_axis } Axis;
+ int i, j;
+ double m, step;
+- char buf[16];
++ char buf[LABEL_CHARS];
-@@ -1230,7 +1232,10 @@
+ /* i counts how many pixels we have drawn, and j counts which unit
+ * we are at.
+@@ -567,7 +570,7 @@ loggrid(graph, lo, hi, type, axis)
+ double k;
+ double decs;
+ double mag, gain;
+- char buf[32], *s;
++ char buf[LABEL_CHARS], *s;
- /* SetLinestyle(1); takes too long */
- /* Problems with Suns on very large radii && linestyle */
-- SetLinestyle(0);
-+ /* SetLinestyle(0); */
-+ /* linestyle 1 looks better
-+ Guenther Roehrich 22-Jan-99 */
-+ SetLinestyle(1);
+ if (axis == x_axis && graph->grid.xsized) {
+ lmt = graph->grid.xaxis.log.lmt;
+@@ -661,7 +664,7 @@ loggrid(graph, lo, hi, type, axis)
- /* Now plot all the arc sets. Go as high as 5 times the radius that
- * will fit on the screen. The base magnitude is one more than
-@@ -1409,7 +1414,10 @@
- /* Let's be lazy and just draw everything -- we won't get called too
- * much and the circles get clipped anyway...
- */
-- SetColor(18);
-+ /* SetColor(18); */
-+ /* draw everything in black
-+ Guenther Roehrich 22-Jan-99 */
-+ SetColor(1);
+ }
- cliparc((double) (centx + xoffset + radoff - rad),
- (double) (centy + yoffset), rad, 2*angle,
-@@ -1424,7 +1432,10 @@
- M_PI - 2 * angle, centx, centy, maxrad, 0);
+-static
++static void
+ drawloggrid(graph, units, hmt, lmt, decsp, subs, pp, axis)
+ GRAPH *graph;
+ char *units;
+@@ -671,7 +674,7 @@ drawloggrid(graph, units, hmt, lmt, decs
+ {
+ int i, j, k, l, m;
+ double t;
+- char buf[16];
++ char buf[LABEL_CHARS];
- /* Draw the upper and lower circles. */
-- SetColor(19);
-+ /* SetColor(19); */
-+ /* draw everything in black
-+ Guenther Roehrich 22-Jan-99 */
-+ SetColor(1);
- aclip = cliparc((double) (centx + xoffset + radoff),
- (double) (centy + yoffset + irad), irad,
- (double) (M_PI * 1.5 + 2 * iangle),
-@@ -1441,7 +1452,10 @@
- adddeglabel(graph, ndeg, xlab, ylab,
- gr_xcenter, gr_ycenter, gr_xcenter, gr_ycenter);
- */
-- SetColor(19);
-+ /* SetColor(19); */
-+ /* draw everything in black
-+ Guenther Roehrich 22-Jan-99 */
-+ SetColor(1);
- }
- }
- aclip = cliparc((double) (centx + xoffset + radoff),
-@@ -1455,7 +1469,10 @@
- SetColor(1);
- adddeglabel(graph, ndeg, xlab, ylab,
- gr_xcenter, gr_ycenter, gr_xcenter, gr_ycenter);
-- SetColor(19);
-+ /* SetColor(19); */
-+ /* draw everything in black
-+ Guenther Roehrich 22-Jan-99 */
-+ SetColor(1);
- }
-
- /* Now toss the labels on... */
+ /* Now plot every pp'th decade line, with subs lines between them. */
+ if (subs > 1)