diff options
Diffstat (limited to 'cad/gerbv')
-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: |