diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2004-05-31 12:42:43 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2004-05-31 12:42:43 +0000 |
commit | 2af806cc3003cc3d245514832ac9d3300469ab14 (patch) | |
tree | f2847437ff630427c7b42ea2ba48dbeec2d4ab81 /cad/pcb-current/Makefile | |
parent | 3ad5b136c13a9670196c3f1ffef28ca88990662b (diff) | |
download | pkgsrc-2af806cc3003cc3d245514832ac9d3300469ab14.tar.gz |
update to pcb-current-20040530. Changes since last snapshot are:
========================================================================
Release Notes for PCB snapshot 20040530
========================================================================
This has been an exciting 3 months for PCB. Many improvements have
been made in the program as well as additions and improvements to the
footprint library. Thanks to everyone who has provided feedback,
patches, etc.
----------------------
Additions/Improvements
----------------------
- Expanded DRC checking
- "Realtime" DRC checking
- DRC settings are now stored in the board fle
- Centroid (X-Y) and bill of materials output
- Dynamic menus. Users can now customize the menus via a
site-wide, per-user, or per-project menu resource file.
- Significant improvements to autorouting of congested designs.
- Autorouter can now use power planes.
- Improved appearance in autorouter output.
- Silk on pads/pins is clipped in RS-274-X output
- Ordering is preserved when writing output files so that diff
may be effectively used on pcb files.
- The autoplace feature now actually works
- Added ToggleVisibility action
- Most of the database is now kept in rtrees which avoids linear
searches. This speeds up operation significantly.
- Added SetFlag, ClrFlag, ChangeFlag actions
---------
Bug Fixes
---------
- pin/pad bounding box calculation fixed. Components can
now be placed closer to the edge of the board.
- miter trace optimization bug.
- Fix bug with pins which are enclosed by multiple polygons.
- Shorts to unnamed elements and pins are handled correctly.
- Various memory leaks fixed.
- Fixed some bugs with a really high zoom.
- Fixed default media selection in postscript print dialog
- Fix some DRC bugs with square pins.
------------------
Footprint Library:
------------------
- Added SOJ footprint family (~geda library)
- Added CTS series 742/3/4/5/6 resistor pack footprints (~cts library)
- Added PKG_CONNECTOR_DIL macro to let the HEADER*_1 footprints work
(~geda library)
- Correct the SDIP footprints (~geda library)
- Correct some Minicircuits footprints (~minicircuits library)
- Correct some panasonic footprints (~panasonic library)
- Change refdes silk size for sockets (~johnstech library)
- Increase soldermask relief on some mounting holes
(~johnstech library)
- Convert the COMMON_SMT_DIL_MIL and COMMON_SMT_DIL_MM macros
used by several other libraries to the hi-res format.
- Correct pin count on 100 pin QFP packages (100 not 72)
(~geda library)
- Correct pin count on HEADER60_2 (60 not 50) (~geda library)
Diffstat (limited to 'cad/pcb-current/Makefile')
-rw-r--r-- | cad/pcb-current/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/cad/pcb-current/Makefile b/cad/pcb-current/Makefile index 861628a309d..8601155a281 100644 --- a/cad/pcb-current/Makefile +++ b/cad/pcb-current/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2004/05/04 02:14:44 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.8 2004/05/31 12:42:43 dmcmahill Exp $ # DISTNAME= pcb-${SNAPDATE} @@ -18,22 +18,21 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews CONFLICTS+= pcb-[0-9]* -SNAPDATE= 20040215 +SNAPDATE= 20040530 GNU_CONFIGURE= yes USE_GNU_TOOLS+= lex make USE_X11= yes USE_BUILDLINK3= yes -EVAL_PREFIX+= BISONDIR=bison -YACC= ${BISONDIR}/bin/bison - INFO_FILES= pcb.info .include "../../mk/bsd.prefs.mk" -EVAL_PREFIX+= TKDIR=tk +EVAL_PREFIX+= BISONDIR=bison EVAL_PREFIX+= M4DIR=m4 +EVAL_PREFIX+= TKDIR=tk M4=${M4DIR}/bin/${GNU_PROGRAM_PREFIX}m4 +YACC= ${BISONDIR}/bin/bison CONFIGURE_ENV+= WISH=${TKDIR}/bin/wish .if ${XAW_TYPE} == "xpm" |