diff options
author | dmcmahill <dmcmahill> | 2003-03-21 03:43:21 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2003-03-21 03:43:21 +0000 |
commit | 882f05bc97c26a5f34825c95834b4a3daf79b526 (patch) | |
tree | 25c6510519c59c03783d07bf0a9104f6c9c01dc3 /cad | |
parent | 674ed5261657a2cabd97765f6591b823e8313060 (diff) | |
download | pkgsrc-882f05bc97c26a5f34825c95834b4a3daf79b526.tar.gz |
update to gerbv-0.13
* You cannot compile with backend anymore, switch is removed. In last
release this caused compilation error due to bit rot.
* Drawing of arcs is a constant headache. Mark Whitis found another
case that I had missed out. Clockwise arcs all of a sudden started
to be drawn as counter-clockwise.
* Arcs with very small angle differences could either be a complete
circle or a very small part of an arc. Calculating the angles with
integers wasn't sufficient, anyhow. They are now doubles all the way.
* Aperture macro primitive 1 was a _filled_ circle.
* Image rotate used to cause warnings that it wasn't implemented. Now
if the file has an image rotate on zero degrees there is no warning
(yes I've seen it).
* Dan McMahill discovered that if you tried to swap with an unused layer
gerbv segfaulted.
* Peter Monta submitted patch for incremental coordinates.
* No traces of Guile left...
Diffstat (limited to 'cad')
-rw-r--r-- | cad/gerbv/Makefile | 7 | ||||
-rw-r--r-- | cad/gerbv/PLIST | 6 | ||||
-rw-r--r-- | cad/gerbv/distinfo | 7 | ||||
-rw-r--r-- | cad/gerbv/patches/patch-aa | 17 |
4 files changed, 6 insertions, 31 deletions
diff --git a/cad/gerbv/Makefile b/cad/gerbv/Makefile index eb25037098e..15d553badeb 100644 --- a/cad/gerbv/Makefile +++ b/cad/gerbv/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.10 2003/02/05 19:19:27 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.11 2003/03/21 03:43:21 dmcmahill Exp $ # -DISTNAME= gerbv-0.11 -PKGREVISION= 1 +DISTNAME= gerbv-0.13 CATEGORIES= cad MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gerbv/} @@ -11,13 +10,11 @@ HOMEPAGE= http://gerbv.sourceforge.net COMMENT= Gerber file viewer CONFIGURE_ARGS+= --enable-exportpng -CONFIGURE_ARGS+= --enable-batch GNU_CONFIGURE= YES USE_BUILDLINK2= YES USE_GMAKE= YES .include "../../graphics/gdk-pixbuf/buildlink2.mk" .include "../../graphics/png/buildlink2.mk" -.include "../../lang/guile14/buildlink2.mk" .include "../../x11/gtk/buildlink2.mk" .include "../../mk/bsd.pkg.mk" diff --git a/cad/gerbv/PLIST b/cad/gerbv/PLIST index 429d306154f..279227006a4 100644 --- a/cad/gerbv/PLIST +++ b/cad/gerbv/PLIST @@ -1,7 +1,3 @@ -@comment $NetBSD: PLIST,v 1.2 2001/12/15 22:04:18 dmcmahill Exp $ +@comment $NetBSD: PLIST,v 1.3 2003/03/21 03:43:22 dmcmahill Exp $ bin/gerbv man/man1/gerbv.1 -share/gerbv/scheme/gerb-debug.scm -share/gerbv/scheme/gerb-ps.scm -@dirrm share/gerbv/scheme -@dirrm share/gerbv diff --git a/cad/gerbv/distinfo b/cad/gerbv/distinfo index 4d2fad486e6..db38c537d96 100644 --- a/cad/gerbv/distinfo +++ b/cad/gerbv/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.8 2003/02/05 19:19:27 dmcmahill Exp $ +$NetBSD: distinfo,v 1.9 2003/03/21 03:43:22 dmcmahill Exp $ -SHA1 (gerbv-0.11.tar.gz) = d2caf38d0bc18fb87be218254c8ab0cd191c72eb -Size (gerbv-0.11.tar.gz) = 961551 bytes -SHA1 (patch-aa) = b754f8eb900ea3e03b2e1bf7b5e5263d6e449152 +SHA1 (gerbv-0.13.tar.gz) = 9781eea861adaebed292e12df35edceedc5073d8 +Size (gerbv-0.13.tar.gz) = 957070 bytes diff --git a/cad/gerbv/patches/patch-aa b/cad/gerbv/patches/patch-aa deleted file mode 100644 index 24812abe83b..00000000000 --- a/cad/gerbv/patches/patch-aa +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-aa,v 1.3 2003/02/05 19:19:28 dmcmahill Exp $ - -fix reading drill files when the coordinates have +/- prefixes - ---- src/drill.c.orig Fri Nov 15 16:55:55 2002 -+++ src/drill.c Fri Jan 31 12:07:52 2003 -@@ -341,6 +341,8 @@ - int local_state = 0; - while ((read = gerb_fgetc(fd)) != EOF && -- (isdigit(read) || read == ',' || read == '.')) { -- if(read != ',' && read != '.') length ++; -+ (isdigit(read) || read == '+' || read == '-' -+ || read == ',' || read == '.')) { -+ if(read != '+' && read != '-' -+ && read != ',' && read != '.') length ++; - switch (local_state) { - case 0: |