Sat Feb 2 04:50:21 2008 UTC ()
update to pcb-20080202

========================================================================
Release Notes for PCB snapshot 20080202
========================================================================
This release represents over 180 commits and as such this summary
clearly is not complete.  See the ChangeLog file for the complete list
of changes.

- Added a footprin preview in the library window
- Added gnome/kde desktop integration files (app and mime icons, and
  .desktop file)
- Added i18n support
- Updated dbus support
- Fix a number of GCC 4 compiler warnings
- Make the gtk gui more robust against malformed menu resource files
- Added checking for duplicate hot key definitions in the menu resource
  file in the gtk gui.
- Improved support for building on win32.
- Removed automake/autoconf generated files from cvs
- Fixed some parallel make bugs
- Fixed some scrolling/panning bugs in the gtk gui.
- Added the ability to load edif netlists
- Closed a number of bugs in the sourceforge tracker
- Fix a bg in the x-y output files where the y values were mirrored and offset
- Add XRENDER support to the lesstif HID to support layer transparency
- Fix some polygon dicer bugs
- Fix a handful of bugs in the png export HID
- Avoid vias snapping to pins and moving elements snapping to their own
  pins/pads
- Fix a number of undo bugs
- Fix printer calibration
- Add global puller
- Various improvements to the postscript export HID
- Improve all the GetXY prompts in the menu resource files
- Improved the pin/via report
- Improved pin/pad vs grid snapping
- Various footprint improvements
  o fixed some drill sizes
  o fixed some silk sizes
  o Added a handful of QFP family footprints
  o Converted the QFP family to the hi-res format
- Several other bug fixes


(dmcmahill)
diff -r1.41 -r1.42 pkgsrc/cad/pcb/Makefile
diff -r1.11 -r1.12 pkgsrc/cad/pcb/PLIST
diff -r1.14 -r1.15 pkgsrc/cad/pcb/distinfo

cvs diff -r1.41 -r1.42 pkgsrc/cad/pcb/Makefile (expand / switch to unified diff)

--- pkgsrc/cad/pcb/Makefile 2007/10/09 19:19:08 1.41
+++ pkgsrc/cad/pcb/Makefile 2008/02/02 04:50:20 1.42
@@ -1,39 +1,44 @@ @@ -1,39 +1,44 @@
1# $NetBSD: Makefile,v 1.41 2007/10/09 19:19:08 martti Exp $ 1# $NetBSD: Makefile,v 1.42 2008/02/02 04:50:20 dmcmahill Exp $
2# 2#
3 3
4DISTNAME= pcb-20070912 4DISTNAME= pcb-20080202
5CATEGORIES= cad 5CATEGORIES= cad
6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pcb/} 6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pcb/}
7 7
8MAINTAINER= dmcmahill@NetBSD.org 8MAINTAINER= dmcmahill@NetBSD.org
9HOMEPAGE= http://pcb.sourceforge.net/ 9HOMEPAGE= http://pcb.sourceforge.net/
10COMMENT= Printed circuit board layout system 10COMMENT= Printed circuit board layout system
11 11
12PKG_INSTALLATION_TYPES= overwrite pkgviews 12PKG_INSTALLATION_TYPES= overwrite pkgviews
13 13
 14DEPENDS+= gettext-tools>=0.14.6:../../devel/gettext-tools
 15
14CONFLICTS+= pcb-current-[0-9]* 16CONFLICTS+= pcb-current-[0-9]*
15 17
16GNU_CONFIGURE= yes 18GNU_CONFIGURE= yes
17CONFIGURE_ENV+= WISH=${TOOLS_PATH.wish} 19CONFIGURE_ENV+= WISH=${TOOLS_PATH.wish}
18# work around a problem where the configure script uses 20# work around a problem where the configure script uses
19# AM_PROG_LEX and follows it with an AC_PATH_PROG to try 21# AM_PROG_LEX and follows it with an AC_PATH_PROG to try
20# and make sure that lex really does exist. Unfortunately 22# and make sure that lex really does exist. Unfortunately
21# that test is thrown off by pkgsrc giving a full path for LEX. 23# that test is thrown off by pkgsrc giving a full path for LEX.
22# so, bypass the test and put our desired result directly into the 24# so, bypass the test and put our desired result directly into the
23# configure cache. Same for YACC. 25# configure cache. Same for YACC.
24CONFIGURE_ENV+= ac_cv_path_LEX_PATH=${TOOLS_PATH.lex} 26CONFIGURE_ENV+= ac_cv_path_LEX_PATH=${TOOLS_PATH.lex}
25CONFIGURE_ENV+= ac_cv_path_YACC_PATH=${TOOLS_PATH.bison} 27CONFIGURE_ENV+= ac_cv_path_YACC_PATH=${TOOLS_PATH.bison}
26USE_TOOLS+= bison gm4:run gmake lex wish:run pkg-config 28CONFIGURE_ARGS+= --disable-update-desktop-database
 29CONFIGURE_ARGS+= --disable-update-mime-database
 30USE_TOOLS+= bison gm4:run gmake intltool lex wish:run pkg-config
 31USE_PKGLOCALEDIR= yes
27INFO_FILES= yes 32INFO_FILES= yes
28 33
29PKG_OPTIONS_VAR= PKG_OPTIONS.pcb 34PKG_OPTIONS_VAR= PKG_OPTIONS.pcb
30PKG_SUPPORTED_OPTIONS= png 35PKG_SUPPORTED_OPTIONS= png
31PKG_OPTIONS_REQUIRED_GROUPS= gui 36PKG_OPTIONS_REQUIRED_GROUPS= gui
32PKG_OPTIONS_GROUP.gui= batch gtk motif 37PKG_OPTIONS_GROUP.gui= batch gtk motif
33PKG_SUGGESTED_OPTIONS= gtk png 38PKG_SUGGESTED_OPTIONS= gtk png
34 39
35.include "../../mk/bsd.prefs.mk" 40.include "../../mk/bsd.prefs.mk"
36.include "../../mk/bsd.options.mk" 41.include "../../mk/bsd.options.mk"
37 42
38.if !empty(PKG_OPTIONS:Mmotif) 43.if !empty(PKG_OPTIONS:Mmotif)
39.include "../../mk/motif.buildlink3.mk" 44.include "../../mk/motif.buildlink3.mk"
@@ -46,14 +51,21 @@ CONFIGURE_ARGS+= --with-gui=gtk @@ -46,14 +51,21 @@ CONFIGURE_ARGS+= --with-gui=gtk
46CONFIGURE_ARGS+= --with-gui=none 51CONFIGURE_ARGS+= --with-gui=none
47.else 52.else
48PKG_FAIL_REASON= Invalid options 53PKG_FAIL_REASON= Invalid options
49.endif 54.endif
50 55
51EXPORTERS= bom gerber ps 56EXPORTERS= bom gerber ps
52.if !empty(PKG_OPTIONS:Mpng) 57.if !empty(PKG_OPTIONS:Mpng)
53EXPORTERS+= png 58EXPORTERS+= png
54.include "../../graphics/gd/buildlink3.mk" 59.include "../../graphics/gd/buildlink3.mk"
55.endif 60.endif
56 61
57CONFIGURE_ARGS+= --with-exporters=${EXPORTERS:Q} 62CONFIGURE_ARGS+= --with-exporters=${EXPORTERS:Q}
58 63
 64# remove some stuff that is either broken or unmaintained
 65# and would require another runtime depends
 66post-install:
 67 ${RM} ${PREFIX}/share/pcb/tools/PCB2HPGL ${PREFIX}/share/pcb/tools/tgo2pcb.tcl
 68
 69.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
 70.include "../../sysutils/desktop-file-utils/desktopdb.mk"
59.include "../../mk/bsd.pkg.mk" 71.include "../../mk/bsd.pkg.mk"

cvs diff -r1.11 -r1.12 pkgsrc/cad/pcb/PLIST (expand / switch to unified diff)

--- pkgsrc/cad/pcb/PLIST 2007/09/13 02:24:51 1.11
+++ pkgsrc/cad/pcb/PLIST 2008/02/02 04:50:20 1.12
@@ -1,19 +1,59 @@ @@ -1,19 +1,59 @@
1@comment $NetBSD: PLIST,v 1.11 2007/09/13 02:24:51 dmcmahill Exp $ 1@comment $NetBSD: PLIST,v 1.12 2008/02/02 04:50:20 dmcmahill Exp $
2bin/MergePCBPS 2bin/MergePCBPS
3bin/Merge_dimPCBPS 3bin/Merge_dimPCBPS
4bin/pcb 4bin/pcb
5info/pcb.info 5info/pcb.info
6man/man1/pcb.1 6man/man1/pcb.1
 7share/applications/pcb.desktop
 8share/icons/hicolor/16x16/mimetypes/application-x-excellon-16.png
 9share/icons/hicolor/16x16/mimetypes/application-x-gerber-16.png
 10share/icons/hicolor/16x16/mimetypes/application-x-pcb-footprint-16.png
 11share/icons/hicolor/16x16/mimetypes/application-x-pcb-layout-16.png
 12share/icons/hicolor/16x16/mimetypes/application-x-pcb-netlist-16.png
 13share/icons/hicolor/22x22/mimetypes/application-x-excellon-22.png
 14share/icons/hicolor/22x22/mimetypes/application-x-gerber-22.png
 15share/icons/hicolor/22x22/mimetypes/application-x-pcb-footprint-22.png
 16share/icons/hicolor/22x22/mimetypes/application-x-pcb-layout-22.png
 17share/icons/hicolor/22x22/mimetypes/application-x-pcb-netlist-22.png
 18share/icons/hicolor/24x24/mimetypes/application-x-excellon-24.png
 19share/icons/hicolor/24x24/mimetypes/application-x-gerber-24.png
 20share/icons/hicolor/24x24/mimetypes/application-x-pcb-footprint-24.png
 21share/icons/hicolor/24x24/mimetypes/application-x-pcb-layout-24.png
 22share/icons/hicolor/24x24/mimetypes/application-x-pcb-netlist-24.png
 23share/icons/hicolor/32x32/mimetypes/application-x-excellon-32.png
 24share/icons/hicolor/32x32/mimetypes/application-x-gerber-32.png
 25share/icons/hicolor/32x32/mimetypes/application-x-pcb-footprint-32.png
 26share/icons/hicolor/32x32/mimetypes/application-x-pcb-layout-32.png
 27share/icons/hicolor/32x32/mimetypes/application-x-pcb-netlist-32.png
 28share/icons/hicolor/48x48/apps/pcb-48.png
 29share/icons/hicolor/48x48/mimetypes/application-x-excellon-48.png
 30share/icons/hicolor/48x48/mimetypes/application-x-gerber-48.png
 31share/icons/hicolor/48x48/mimetypes/application-x-pcb-footprint-48.png
 32share/icons/hicolor/48x48/mimetypes/application-x-pcb-layout-48.png
 33share/icons/hicolor/48x48/mimetypes/application-x-pcb-netlist-48.png
 34share/icons/hicolor/scalable/apps/pcb.svg
 35share/icons/hicolor/scalable/mimetypes/application-x-excellon.svg
 36share/icons/hicolor/scalable/mimetypes/application-x-gerber.svg
 37share/icons/hicolor/scalable/mimetypes/application-x-pcb-footprint.svg
 38share/icons/hicolor/scalable/mimetypes/application-x-pcb-layout.svg
 39share/icons/hicolor/scalable/mimetypes/application-x-pcb-netlist.svg
 40${PKGLOCALEDIR}/locale/fr_FR/LC_MESSAGES/pcb.mo
 41share/mime/packages/pcb.xml
 42share/mimelnk/application/x-excellon.desktop
 43share/mimelnk/application/x-gerber.desktop
 44share/mimelnk/application/x-pcb-footprint.desktop
 45share/mimelnk/application/x-pcb-layout.desktop
 46share/mimelnk/application/x-pcb-netlist.desktop
7share/pcb/CreateLibrary.sh 47share/pcb/CreateLibrary.sh
8share/pcb/CreateLibraryContents.sh 48share/pcb/CreateLibraryContents.sh
9share/pcb/ListLibraryContents.sh 49share/pcb/ListLibraryContents.sh
10share/pcb/QueryLibrary.sh 50share/pcb/QueryLibrary.sh
11share/pcb/default_font 51share/pcb/default_font
12share/pcb/examples/LED 52share/pcb/examples/LED
13share/pcb/examples/LED.NET 53share/pcb/examples/LED.NET
14share/pcb/examples/LED2 54share/pcb/examples/LED2
15share/pcb/examples/libraries/example.inc 55share/pcb/examples/libraries/example.inc
16share/pcb/examples/libraries/example.list 56share/pcb/examples/libraries/example.list
17share/pcb/examples/libraries/example.m4 57share/pcb/examples/libraries/example.m4
18share/pcb/gpcb-menu.res 58share/pcb/gpcb-menu.res
19share/pcb/m4/TTL_74xx_DIL.m4 59share/pcb/m4/TTL_74xx_DIL.m4
@@ -1460,66 +1500,96 @@ share/pcb/pcblib-newlib/geda/TQFN44_7_EP @@ -1460,66 +1500,96 @@ share/pcb/pcblib-newlib/geda/TQFN44_7_EP
1460share/pcb/pcblib-newlib/geda/TQFN44_7_EP.png 1500share/pcb/pcblib-newlib/geda/TQFN44_7_EP.png
1461share/pcb/pcblib-newlib/geda/TQFN48_7.fp 1501share/pcb/pcblib-newlib/geda/TQFN48_7.fp
1462share/pcb/pcblib-newlib/geda/TQFN48_7.png 1502share/pcb/pcblib-newlib/geda/TQFN48_7.png
1463share/pcb/pcblib-newlib/geda/TQFN48_7_EP.fp 1503share/pcb/pcblib-newlib/geda/TQFN48_7_EP.fp
1464share/pcb/pcblib-newlib/geda/TQFN48_7_EP.png 1504share/pcb/pcblib-newlib/geda/TQFN48_7_EP.png
1465share/pcb/pcblib-newlib/geda/TQFN56_8.fp 1505share/pcb/pcblib-newlib/geda/TQFN56_8.fp
1466share/pcb/pcblib-newlib/geda/TQFN56_8.png 1506share/pcb/pcblib-newlib/geda/TQFN56_8.png
1467share/pcb/pcblib-newlib/geda/TQFN56_8_EP.fp 1507share/pcb/pcblib-newlib/geda/TQFN56_8_EP.fp
1468share/pcb/pcblib-newlib/geda/TQFN56_8_EP.png 1508share/pcb/pcblib-newlib/geda/TQFN56_8_EP.png
1469share/pcb/pcblib-newlib/geda/TQFN68_10.fp 1509share/pcb/pcblib-newlib/geda/TQFN68_10.fp
1470share/pcb/pcblib-newlib/geda/TQFN68_10.png 1510share/pcb/pcblib-newlib/geda/TQFN68_10.png
1471share/pcb/pcblib-newlib/geda/TQFN68_10_EP.fp 1511share/pcb/pcblib-newlib/geda/TQFN68_10_EP.fp
1472share/pcb/pcblib-newlib/geda/TQFN68_10_EP.png 1512share/pcb/pcblib-newlib/geda/TQFN68_10_EP.png
 1513share/pcb/pcblib-newlib/geda/TQFP100_12.fp
 1514share/pcb/pcblib-newlib/geda/TQFP100_12.png
1473share/pcb/pcblib-newlib/geda/TQFP100_14.fp 1515share/pcb/pcblib-newlib/geda/TQFP100_14.fp
1474share/pcb/pcblib-newlib/geda/TQFP100_14.png 1516share/pcb/pcblib-newlib/geda/TQFP100_14.png
1475share/pcb/pcblib-newlib/geda/TQFP120_28.fp 1517share/pcb/pcblib-newlib/geda/TQFP120_28.fp
1476share/pcb/pcblib-newlib/geda/TQFP120_28.png 1518share/pcb/pcblib-newlib/geda/TQFP120_28.png
1477share/pcb/pcblib-newlib/geda/TQFP128_28.fp 1519share/pcb/pcblib-newlib/geda/TQFP128_28.fp
1478share/pcb/pcblib-newlib/geda/TQFP128_28.png 1520share/pcb/pcblib-newlib/geda/TQFP128_28.png
1479share/pcb/pcblib-newlib/geda/TQFP144_28.fp 1521share/pcb/pcblib-newlib/geda/TQFP144_28.fp
1480share/pcb/pcblib-newlib/geda/TQFP144_28.png 1522share/pcb/pcblib-newlib/geda/TQFP144_28.png
1481share/pcb/pcblib-newlib/geda/TQFP160_28.fp 1523share/pcb/pcblib-newlib/geda/TQFP160_28.fp
1482share/pcb/pcblib-newlib/geda/TQFP160_28.png 1524share/pcb/pcblib-newlib/geda/TQFP160_28.png
1483share/pcb/pcblib-newlib/geda/TQFP208_28.fp 1525share/pcb/pcblib-newlib/geda/TQFP208_28.fp
1484share/pcb/pcblib-newlib/geda/TQFP208_28.png 1526share/pcb/pcblib-newlib/geda/TQFP208_28.png
1485share/pcb/pcblib-newlib/geda/TQFP240_32.fp 1527share/pcb/pcblib-newlib/geda/TQFP240_32.fp
1486share/pcb/pcblib-newlib/geda/TQFP240_32.png 1528share/pcb/pcblib-newlib/geda/TQFP240_32.png
1487share/pcb/pcblib-newlib/geda/TQFP304_40.fp 1529share/pcb/pcblib-newlib/geda/TQFP304_40.fp
1488share/pcb/pcblib-newlib/geda/TQFP304_40.png 1530share/pcb/pcblib-newlib/geda/TQFP304_40.png
1489share/pcb/pcblib-newlib/geda/TQFP32_7.fp 1531share/pcb/pcblib-newlib/geda/TQFP32_7.fp
1490share/pcb/pcblib-newlib/geda/TQFP32_7.png 1532share/pcb/pcblib-newlib/geda/TQFP32_7.png
1491share/pcb/pcblib-newlib/geda/TQFP44_10.fp 1533share/pcb/pcblib-newlib/geda/TQFP44_10.fp
1492share/pcb/pcblib-newlib/geda/TQFP44_10.png 1534share/pcb/pcblib-newlib/geda/TQFP44_10.png
1493share/pcb/pcblib-newlib/geda/TQFP52_10.fp 1535share/pcb/pcblib-newlib/geda/TQFP52_10.fp
1494share/pcb/pcblib-newlib/geda/TQFP52_10.png 1536share/pcb/pcblib-newlib/geda/TQFP52_10.png
 1537share/pcb/pcblib-newlib/geda/TQFP64_10.fp
 1538share/pcb/pcblib-newlib/geda/TQFP64_10.png
1495share/pcb/pcblib-newlib/geda/TQFP64_14.fp 1539share/pcb/pcblib-newlib/geda/TQFP64_14.fp
1496share/pcb/pcblib-newlib/geda/TQFP64_14.png 1540share/pcb/pcblib-newlib/geda/TQFP64_14.png
 1541share/pcb/pcblib-newlib/geda/TQFP80_12.fp
 1542share/pcb/pcblib-newlib/geda/TQFP80_12.png
1497share/pcb/pcblib-newlib/geda/TQFP80_14.fp 1543share/pcb/pcblib-newlib/geda/TQFP80_14.fp
1498share/pcb/pcblib-newlib/geda/TQFP80_14.png 1544share/pcb/pcblib-newlib/geda/TQFP80_14.png
1499share/pcb/pcblib-newlib/geda/TSOP28.fp 1545share/pcb/pcblib-newlib/geda/TSOP28.fp
1500share/pcb/pcblib-newlib/geda/TSOP28.png 1546share/pcb/pcblib-newlib/geda/TSOP28.png
1501share/pcb/pcblib-newlib/geda/TSOP32A.fp 1547share/pcb/pcblib-newlib/geda/TSOP32A.fp
1502share/pcb/pcblib-newlib/geda/TSOP32A.png 1548share/pcb/pcblib-newlib/geda/TSOP32A.png
1503share/pcb/pcblib-newlib/geda/TSOP32B.fp 1549share/pcb/pcblib-newlib/geda/TSOP32B.fp
1504share/pcb/pcblib-newlib/geda/TSOP32B.png 1550share/pcb/pcblib-newlib/geda/TSOP32B.png
 1551share/pcb/pcblib-newlib/geda/TSSOP10.fp
 1552share/pcb/pcblib-newlib/geda/TSSOP10.png
 1553share/pcb/pcblib-newlib/geda/TSSOP14.fp
 1554share/pcb/pcblib-newlib/geda/TSSOP14.png
 1555share/pcb/pcblib-newlib/geda/TSSOP16.fp
 1556share/pcb/pcblib-newlib/geda/TSSOP16.png
 1557share/pcb/pcblib-newlib/geda/TSSOP20.fp
 1558share/pcb/pcblib-newlib/geda/TSSOP20.png
 1559share/pcb/pcblib-newlib/geda/TSSOP24.fp
 1560share/pcb/pcblib-newlib/geda/TSSOP24.png
 1561share/pcb/pcblib-newlib/geda/TSSOP28.fp
 1562share/pcb/pcblib-newlib/geda/TSSOP28.png
 1563share/pcb/pcblib-newlib/geda/TSSOP32.fp
 1564share/pcb/pcblib-newlib/geda/TSSOP32.png
 1565share/pcb/pcblib-newlib/geda/TSSOP38N.fp
 1566share/pcb/pcblib-newlib/geda/TSSOP38N.png
1505share/pcb/pcblib-newlib/geda/TSSOP48.fp 1567share/pcb/pcblib-newlib/geda/TSSOP48.fp
1506share/pcb/pcblib-newlib/geda/TSSOP48.png 1568share/pcb/pcblib-newlib/geda/TSSOP48.png
 1569share/pcb/pcblib-newlib/geda/TSSOP48N.fp
 1570share/pcb/pcblib-newlib/geda/TSSOP48N.png
1507share/pcb/pcblib-newlib/geda/TSSOP56.fp 1571share/pcb/pcblib-newlib/geda/TSSOP56.fp
1508share/pcb/pcblib-newlib/geda/TSSOP56.png 1572share/pcb/pcblib-newlib/geda/TSSOP56.png
 1573share/pcb/pcblib-newlib/geda/TSSOP56N.fp
 1574share/pcb/pcblib-newlib/geda/TSSOP56N.png
1509share/pcb/pcblib-newlib/geda/TSSOP64.fp 1575share/pcb/pcblib-newlib/geda/TSSOP64.fp
1510share/pcb/pcblib-newlib/geda/TSSOP64.png 1576share/pcb/pcblib-newlib/geda/TSSOP64.png
 1577share/pcb/pcblib-newlib/geda/TSSOP80.fp
 1578share/pcb/pcblib-newlib/geda/TSSOP80.png
1511share/pcb/pcblib-newlib/geda/TSSOP8.fp 1579share/pcb/pcblib-newlib/geda/TSSOP8.fp
1512share/pcb/pcblib-newlib/geda/TSSOP8.png 1580share/pcb/pcblib-newlib/geda/TSSOP8.png
 1581share/pcb/pcblib-newlib/geda/TSSOP8W.fp
 1582share/pcb/pcblib-newlib/geda/TSSOP8W.png
1513share/pcb/pcblib-newlib/geda/US14.fp 1583share/pcb/pcblib-newlib/geda/US14.fp
1514share/pcb/pcblib-newlib/geda/US14.png 1584share/pcb/pcblib-newlib/geda/US14.png
1515share/pcb/pcblib-newlib/geda/US16.fp 1585share/pcb/pcblib-newlib/geda/US16.fp
1516share/pcb/pcblib-newlib/geda/US16.png 1586share/pcb/pcblib-newlib/geda/US16.png
1517share/pcb/pcblib-newlib/geda/US8.fp 1587share/pcb/pcblib-newlib/geda/US8.fp
1518share/pcb/pcblib-newlib/geda/US8.png 1588share/pcb/pcblib-newlib/geda/US8.png
1519share/pcb/pcblib-newlib/geda/ZIP12.fp 1589share/pcb/pcblib-newlib/geda/ZIP12.fp
1520share/pcb/pcblib-newlib/geda/ZIP12.png 1590share/pcb/pcblib-newlib/geda/ZIP12.png
1521share/pcb/pcblib-newlib/geda/ZIP16.fp 1591share/pcb/pcblib-newlib/geda/ZIP16.fp
1522share/pcb/pcblib-newlib/geda/ZIP16.png 1592share/pcb/pcblib-newlib/geda/ZIP16.png
1523share/pcb/pcblib-newlib/geda/ZIP18.fp 1593share/pcb/pcblib-newlib/geda/ZIP18.fp
1524share/pcb/pcblib-newlib/geda/ZIP18.png 1594share/pcb/pcblib-newlib/geda/ZIP18.png
1525share/pcb/pcblib-newlib/geda/ZIP20.fp 1595share/pcb/pcblib-newlib/geda/ZIP20.fp
@@ -1797,31 +1867,29 @@ share/pcb/puller.eps @@ -1797,31 +1867,29 @@ share/pcb/puller.eps
1797share/pcb/puller.gif 1867share/pcb/puller.gif
1798share/pcb/puller.pdf 1868share/pcb/puller.pdf
1799share/pcb/puller.png 1869share/pcb/puller.png
1800share/pcb/qfp-ui 1870share/pcb/qfp-ui
1801share/pcb/qfp.dat 1871share/pcb/qfp.dat
1802share/pcb/refcard.pdf 1872share/pcb/refcard.pdf
1803share/pcb/refcard.ps 1873share/pcb/refcard.ps
1804share/pcb/thermal.eps 1874share/pcb/thermal.eps
1805share/pcb/thermal.gif 1875share/pcb/thermal.gif
1806share/pcb/thermal.pdf 1876share/pcb/thermal.pdf
1807share/pcb/thermal.png 1877share/pcb/thermal.png
1808share/pcb/tools/MergePCBPS 1878share/pcb/tools/MergePCBPS
1809share/pcb/tools/Merge_dimPCBPS 1879share/pcb/tools/Merge_dimPCBPS
1810share/pcb/tools/PCB2HPGL 
1811share/pcb/tools/apctools.zip 1880share/pcb/tools/apctools.zip
1812share/pcb/tools/gerbertotk.c 1881share/pcb/tools/gerbertotk.c
1813share/pcb/tools/pcb2ncap.tgz 1882share/pcb/tools/pcb2ncap.tgz
1814share/pcb/tools/tgo2pcb.tcl 
1815share/pcb/tutorial/tut1.pcb 1883share/pcb/tutorial/tut1.pcb
1816@dirrm share/pcb/tutorial 1884@dirrm share/pcb/tutorial
1817@dirrm share/pcb/tools 1885@dirrm share/pcb/tools
1818@dirrm share/pcb/pcblib-newlib/pci 1886@dirrm share/pcb/pcblib-newlib/pci
1819@dirrm share/pcb/pcblib-newlib/panasonic 1887@dirrm share/pcb/pcblib-newlib/panasonic
1820@dirrm share/pcb/pcblib-newlib/optical 1888@dirrm share/pcb/pcblib-newlib/optical
1821@dirrm share/pcb/pcblib-newlib/optek 1889@dirrm share/pcb/pcblib-newlib/optek
1822@dirrm share/pcb/pcblib-newlib/nichicon 1890@dirrm share/pcb/pcblib-newlib/nichicon
1823@dirrm share/pcb/pcblib-newlib/minicircuits 1891@dirrm share/pcb/pcblib-newlib/minicircuits
1824@dirrm share/pcb/pcblib-newlib/johnstech 1892@dirrm share/pcb/pcblib-newlib/johnstech
1825@dirrm share/pcb/pcblib-newlib/gtag 1893@dirrm share/pcb/pcblib-newlib/gtag
1826@dirrm share/pcb/pcblib-newlib/generic 1894@dirrm share/pcb/pcblib-newlib/generic
1827@dirrm share/pcb/pcblib-newlib/geda 1895@dirrm share/pcb/pcblib-newlib/geda

cvs diff -r1.14 -r1.15 pkgsrc/cad/pcb/distinfo (expand / switch to unified diff)

--- pkgsrc/cad/pcb/distinfo 2007/09/13 02:24:51 1.14
+++ pkgsrc/cad/pcb/distinfo 2008/02/02 04:50:21 1.15
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.14 2007/09/13 02:24:51 dmcmahill Exp $ 1$NetBSD: distinfo,v 1.15 2008/02/02 04:50:21 dmcmahill Exp $
2 2
3SHA1 (pcb-20070912.tar.gz) = 3df27a8c0afaddfef96ef1be4fedd9b5333a8229 3SHA1 (pcb-20080202.tar.gz) = 4eb538db7086ca1b1f29e03450ed6ad28abd5c42
4RMD160 (pcb-20070912.tar.gz) = 63df0117d5cc0d995a530c444c6333d46ad6d815 4RMD160 (pcb-20080202.tar.gz) = ef54294eba3770b40ca19dd4a772c939aa0f74c8
5Size (pcb-20070912.tar.gz) = 3836056 bytes 5Size (pcb-20080202.tar.gz) = 4240472 bytes