summaryrefslogtreecommitdiff
path: root/cad/geda-symbols
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2004-03-05 13:03:47 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2004-03-05 13:03:47 +0000
commitc050018ba716ef5468cdf335b7e5edcec7ef195b (patch)
tree8a60e80db4565f9a09706bb5c90b03e504ff599a /cad/geda-symbols
parente5dafb3ff3b98fc771fea5bd405f93e311d17865 (diff)
downloadpkgsrc-c050018ba716ef5468cdf335b7e5edcec7ef195b.tar.gz
update to 20040111.
Release notes for the gEDA/gaf 20040111 snapshot Changes _________________________________________________________________________________________________________ General / Summary * Lots of changes in most areas. This release contains the largest amount of changes in quite a while. Expect bugs, crashes, and general instability. If you tell me about them, I might be able to fix them. * Probably the biggest set of changes were the addition of multi-line text support. The bulk of the work was done by Carlos. The text add dialog box and the multi attribute add/change dialog box both support the adding and editing of multi line text items, however, I am going to change these dialog boxes in a subsequent release to be a little like the old behavior, but still support multi-line text support. Full multi-line text support requires that you use gtk+ 2.2.x. * Also part of the above changes was to get rid of some fixed sized buffers within libgeda and gschem. Hopefully I have hashed out all the bugs in these changes, but I wouldn't be surprised if I missed something. Please report all crashes. Thanks. * Changed the file format a little. Changed the way sch/sym files are versioned and added a field to the text item to support the multi-line text feature addition. I recommend everybody run gsymupdate and gschupdate (and verify the resulting files!) to get rid of the log warning message. gEDA/gaf will always write the new file format for all saved schematic/symbols. * The v flag (the version of the sym/sch file), in the past, was keyed off of a version date, such as 20030901. Starting with 20040111, I am no longer using this date as the version of the sch/sym file, but rather I added a new field (number) which is the file format version. The new version line looks like: v 20040111 1 This is nice that I don't have to update all the symbols, schematics, etc... to get rid of a log warning message. The current version of the file format is 1. All past files are versioned as 0. As an experiment, I left all the symbol files at v 20031231 1 and nobody should care/notice. I am planning more changes to the file format in subsequent releases and this version field will make changing it easier. * The text object has an additional field which is the number of lines (N) the text item contains. The text item is then followed by N number of lines of text. Example: T 48400 59900 9 10 1 0 0 0 3 Line1 Line2 Line3 * The component libraries: vhdl, verilog, new asic, and the new gnetman are commented OUT in the system-commonrc file. I did this because there are significant symbol name clashes between these libraries. If you want to use one of these libraries, please place the appropriate (component-library "...") string in some rc file. This commenting out is temporary, till I fix the component name clashing bug (jitterbug#9). * The component-library-search keyword in the system-commonrc file was commented out. If a directory is specified for the component-library-search keyword, then libgeda/gschem/gnetlist will automatically find any directories in the specified directory and add them to the component search path. By having this keyword in place, this would have undone the above commenting out. If gschem/gnetlist cannot find your custom component libraries after upgrading to 20040111, then either comment in the component-library-search keyword back into the system-commonrc file or explicitly add the custom component libraries to an rc file. The latter action is prefered. This info was added on 02/08/2004. * Upgraded all packages to use gettext (GNU gettext) 0.12.1. I don't think that anybody who downloads the source tarballs will need this particular version, but you will certainly need it if you build the CVS version. * Partially applied Carlos' UTF-8 patch for gtk+ 2.2.x. I couldn't test the complete patch, so I will keep working on this. Moving libgeda to use UTF-8 internally is going to be a bit of work, but the sooner it happens, the better. * The gEDA Suite setup program has been improved considerably. It now supports the download of the tarballs automatically using wget. All you need to get from the gEDA website is the toplevel Makefile and type: make xinstall and the setup program will do the rest. See below in the build section for more information on using xinstall. Please report any problems with gEDA Suite setup so it can be further improved. * Much more documentation that gets installed now (almost all of it). I included Bill Wilson's gsch2pcb tutorial and Russ Dill's tragesym tutorial. I also am installing all READMEs, so please see the gedadocs.html file for almost all available documentation on gEDA/gaf. You can access this file via Help/Manual... in gschem (make sure you have a web browser installed). libgeda * Shared library version number now at 20. * In 20030901, libgeda was accidentally being built without optimization. Fixed in this version. * Applied Carlos Nieves Onega's multi-line text patch. See below in the gschem for more info. This patch changed and fixed a lot of things in libgeda, so expect some instability. * Applied a few more patches by Carlos to perfect the multi-line text support in libgeda (mainly dealing with support for tabs in multi-line text items). * Added postscript output for mutli-line text items. This support is really new and not 100% perfect. Expect some problems here, mainly when you start rotating and changing the alignment of many line text items. Putting tabs into the text strings is not yet supported. * Fixed a really nasty bug in o_attrib_get_name_value() which was caused by g_strsplit() not behaving the same between glib 1.2.x and glib 2.2.x. Be careful when using g_strsplit, especially if you use both versions of glib. Bug caught by Stuart. gschem * Added the --with-stroke command line to specify where ./configure can find the libstroke files. * Changed the behavior of the print dialog box to close when the user presses the Print button. * Added the ability to generate PNGs from the command line. Look at gschem/scripts/image.scm for the scheme script. Command line looks like: gschem -o test.png -s image.scm filename.sch * Added a schem rc keyword: image-size which lets you set the size of the PNG image generated using the above guile script. * Applied Carlos Nieves Onega's multi-line text patch. This patch adds multi-line text support to gschem/libgeda. This patch made some very deep changes to internals which haven't changed in years, so expect some instability. Multi-line text is properly supported only when using gtk+ 2.2.x. You will be able to load schematics and edit multi-line text (in a limited fashion) if you use gtk+ 1.2.x * Part of the above patch was the removal of a bunch of fixed sized buffers. Hopefully Carlos and I have fixed all issues surrounding these changes, but expect some instability here as well as we work out the kinks. * Applied a patch by Carlos to highlight the proper alignment value in the pull down menu in the Edit Text... dialog box. * Fixed the visual alignment of the menu items and hotkeys when using gtk+ 2.2.x. * Improved the appearance of a few of the dialog box, by mainly adding whitespace. A few dialog box got a few more touch ups, but nothing too drastic. * Applied a patch by Carlos to add multi-line attribute editing to the multi attribute dialog box. The changes for this are not complete and will change in the next release. * Updated the pt_BR.po with Antonio's UTF-8 version. * Applied Stuart's multi-select open patch. Now you can select multiple schematics to open using the File/Open... dialog box. Hold down the shift or control key as you click on filenames. * Part of Carlos' multi-line text patch was to change the quick rendering of text from a line to a rectangle. Refined and refactored this code a little to properly display attributes. * Fixed a long standing bug in the File/Open... and File/Close... mechanisms when dealing with multiple windows. Bug identified by Karel Kulhav. * Fixed a long standing bug in the preview window (for schematics and components) where there would be garbage data in the bottom of the window. The bug only manifested itself under very specific conditions and only when using gtk+ 1.2.x. I'm quite surprised nobody else complained about it (or rather recently). * Applied a patch by Carlos to support the new Spanish characters. * Fixed the invalid scrollbars on startup bug. * Updated the man page a little bit. Added code to the build mechanism to generate an html version of the man page, which is installed into the documentation directory. * Bunch of other improvements and bug fixes. gnetlist * Upgraded Bill Wilson's gsch2pcb gnetlist backend to the latest (1.4) * Applied all of Carlos' DRC2 patches. * Applied all of Stuart's spice-sdb patches. The included spice-sdb backend should be Stuart's absolute latest version. A bunch of improvements to various parts of gnetlist were included in these patches. * Applied of Stuart's patch to the partlist backends. * Updated the man page a little bit. Added code to the build mechanism to generate an html version of the man page, which is installed into the documentation directory. * Added the scheme rc keyword: unnamed-netname which lets you control what the unnamed nets should be called. * Add the necessary rules to the Makefiles to install all the backend READMEs into the documentation directory. * Applied a patch by Christopher K Eveland to fix a condition where gschem2pcb was picking up a pin when it should not. If somebody could test gschem2pcb on an existing project and make sure it still works as expect, it would be greatly appreciated. * Added the Racal Redac format backend by W. Kazubski. * Added the new RF Cascade and futurenet2 backends by Dan McMahill. * Applied a bunch of patches by Dan for doing net aliasing/renaming. These patches touched the C files as well as various backends. * Applied a few more patches by Dan to fix some m4 quoting issues with the PCB backends. * Bunch of other minor bug fixes. gsymcheck * No significant changes (lots of pending work though). * Updated the man page a little bit. Added code to the build mechanism to generate an html version of the man page, which is installed into the documentation directory. symbols * Werner Hoch has fixed a whole slew of symbols in various component libraries. Thanks Werner! * Added a whole bunch of contributed symbols from various people. Thanks. * Added a bunch of new Spanish characters by Carlos. * Removed vhdl, verilog, asic, and gnetman from the system-commonrc file. geda (gManager) * Piotr Miarecki added a bunch of features and fixed a few bugs in gManager. Give it a try and let him how gManager works for you. gManager is looking really nice. * Integrated Antonio's pt_BR translation. This should work now. * Added a strategic sleep to the mainloop of gManager to reduce the CPU load. utils * Updated Bill Wilson's gsch2pcb to version 1.4 * Add the necessary rules to the Makefiles to install all the backend READMEs into the documentation directory. * Integrated Stuart's garchive script. docs * Applied a whole bunch of patches from Dan McMahill to the symbol creation guide. These patches added/fixed information related to the footprint= attribute. * Started using hyperref.sty for all LaTeX generated documentation, which adds hyperlinks to the pdf files. * Added a bunch of converted txt -> tex documents. The conversions were done by Dan McMahill. * Added the Dan McMahill's documentation for the RF Cascade gnetlist backend. * Rewrote the toplevel gedadocs.html index file to link all the new documentation, readmes, man pages, and tutorials. The gedadocs.html now file contains almost all existing documentation on gEDA/gaf that I'm aware of. * Added a couple of tutorials that people have written. Namely Bill Wilson's gsch2pcb and Russ Dill's tragesym tutorials. Both of these tutorials are accessible from the gedadocs.html file. * Explicitly stated in the file formats document that all the file formats associated with gEDA/gaf are covered by the GPL version 2.0. * Lots of improvements and fixes to various docs. examples * No significant changes. For more a detailed changes, please look in the appropriate ChangeLogs in the source tarballs.
Diffstat (limited to 'cad/geda-symbols')
-rw-r--r--cad/geda-symbols/PLIST104
-rw-r--r--cad/geda-symbols/distinfo6
2 files changed, 103 insertions, 7 deletions
diff --git a/cad/geda-symbols/PLIST b/cad/geda-symbols/PLIST
index 2113e0d9e3d..11d981687b7 100644
--- a/cad/geda-symbols/PLIST
+++ b/cad/geda-symbols/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2003/09/10 23:43:34 dmcmahill Exp $
+@comment $NetBSD: PLIST,v 1.10 2004/03/05 13:03:47 dmcmahill Exp $
share/doc/geda-doc/nc.pdf
share/gEDA/sym/4000/4000-1.sym
share/gEDA/sym/4000/4000-2.sym
@@ -227,6 +227,7 @@ share/gEDA/sym/74/74125-1.sym
share/gEDA/sym/74/74126-1.sym
share/gEDA/sym/74/74131-1.sym
share/gEDA/sym/74/74132-1.sym
+share/gEDA/sym/74/74133-1.sym
share/gEDA/sym/74/74137-1.sym
share/gEDA/sym/74/74138-1.sym
share/gEDA/sym/74/74138-2.sym
@@ -290,6 +291,7 @@ share/gEDA/sym/74/74244-1.sym
share/gEDA/sym/74/74244-2.sym
share/gEDA/sym/74/74245-1.sym
share/gEDA/sym/74/74257-1.sym
+share/gEDA/sym/74/74259-1.sym
share/gEDA/sym/74/74265-1.sym
share/gEDA/sym/74/74265-2.sym
share/gEDA/sym/74/74266-1.sym
@@ -485,6 +487,7 @@ share/gEDA/sym/analog/coil-1.sym
share/gEDA/sym/analog/coil-2.sym
share/gEDA/sym/analog/crystal-1.sym
share/gEDA/sym/analog/current-1.sym
+share/gEDA/sym/analog/darlington_NPN-1.sym
share/gEDA/sym/analog/dual-opamp-1.sym
share/gEDA/sym/analog/fuse-1.sym
share/gEDA/sym/analog/fuse-2.sym
@@ -507,6 +510,7 @@ share/gEDA/sym/analog/ntc-1.sym
share/gEDA/sym/analog/opamp-1.sym
share/gEDA/sym/analog/opamp-2.sym
share/gEDA/sym/analog/photo-resistor-1.sym
+share/gEDA/sym/analog/photo-transistor-1.sym
share/gEDA/sym/analog/photodiode-1.sym
share/gEDA/sym/analog/pmos-1.sym
share/gEDA/sym/analog/pmos-2.sym
@@ -514,6 +518,8 @@ share/gEDA/sym/analog/pmos-3.sym
share/gEDA/sym/analog/pnp-1.sym
share/gEDA/sym/analog/pnp-2.sym
share/gEDA/sym/analog/pnp-3.sym
+share/gEDA/sym/analog/pot-1.sym
+share/gEDA/sym/analog/pot-2.sym
share/gEDA/sym/analog/pot-bourns.sym
share/gEDA/sym/analog/pwrxfmr-1.sym
share/gEDA/sym/analog/quad_opamp-1.sym
@@ -529,12 +535,14 @@ share/gEDA/sym/analog/resistorpack4-1.sym
share/gEDA/sym/analog/resistorpack5-1.sym
share/gEDA/sym/analog/resistorpack6-1.sym
share/gEDA/sym/analog/resistorpack7-1.sym
+share/gEDA/sym/analog/resistorpack7-2.sym
share/gEDA/sym/analog/resistorpack8-1.sym
share/gEDA/sym/analog/resistorpack8-2.sym
share/gEDA/sym/analog/resistorpack9-1.sym
share/gEDA/sym/analog/rpack-1.sym
share/gEDA/sym/analog/speaker-1.sym
share/gEDA/sym/analog/speaker-2.sym
+share/gEDA/sym/analog/testpt-1.sym
share/gEDA/sym/analog/transformer-1.sym
share/gEDA/sym/analog/transformer-2.sym
share/gEDA/sym/analog/transformer-3.sym
@@ -545,8 +553,26 @@ share/gEDA/sym/analog/voltage-1.sym
share/gEDA/sym/analog/voltage-2.sym
share/gEDA/sym/analog/voltage-3.sym
share/gEDA/sym/analog/voltmeter-1.sym
+share/gEDA/sym/asic/cap-0.sym
+share/gEDA/sym/asic/cap-1.sym
+share/gEDA/sym/asic/cap-2.sym
+share/gEDA/sym/asic/cap-3.sym
+share/gEDA/sym/asic/diode.sym
+share/gEDA/sym/asic/nmos.sym
+share/gEDA/sym/asic/pmos.sym
+share/gEDA/sym/asic/res-0.sym
+share/gEDA/sym/asic/res-1.sym
+share/gEDA/sym/asic/res-2.sym
share/gEDA/sym/bus/pc104A-1.sym
share/gEDA/sym/bus/pc104B-1.sym
+share/gEDA/sym/cascade/cascade-amp-1.sym
+share/gEDA/sym/cascade/cascade-defaults-1.sym
+share/gEDA/sym/cascade/cascade-defaults-2.sym
+share/gEDA/sym/cascade/cascade-filter-1.sym
+share/gEDA/sym/cascade/cascade-mixer-1.sym
+share/gEDA/sym/cascade/cascade-source-1.sym
+share/gEDA/sym/cascade/cascade-source-2.sym
+share/gEDA/sym/cascade/cascade-transformer-1.sym
share/gEDA/sym/connector/BNC-1.sym
share/gEDA/sym/connector/DB15-1.sym
share/gEDA/sym/connector/DB25-1.sym
@@ -600,12 +626,15 @@ share/gEDA/sym/connector/header34-1.sym
share/gEDA/sym/connector/header40-2.sym
share/gEDA/sym/connector/header50-1.sym
share/gEDA/sym/connector/header50-2.sym
+share/gEDA/sym/connector/header50-3.sym
+share/gEDA/sym/connector/header50r-1.sym
share/gEDA/sym/connector/header8-1.sym
share/gEDA/sym/connector/header8-2.sym
share/gEDA/sym/connector/jumper-1.sym
share/gEDA/sym/connector/mains-plug-1.sym
share/gEDA/sym/connector/mains-plug-2.sym
share/gEDA/sym/connector/pwrjack-1.sym
+share/gEDA/sym/connector/rj45-1.sym
share/gEDA/sym/connector/rs232-idc10.sym
share/gEDA/sym/connector/smart-media-1.sym
share/gEDA/sym/dec/DC003C-1.sym
@@ -651,33 +680,37 @@ share/gEDA/sym/font/6.sym
share/gEDA/sym/font/7.sym
share/gEDA/sym/font/8.sym
share/gEDA/sym/font/9.sym
+share/gEDA/sym/font/A-acute-accent.sym
share/gEDA/sym/font/A-diaeresis.sym
share/gEDA/sym/font/A-ring.sym
share/gEDA/sym/font/A.sym
share/gEDA/sym/font/AE-lig.sym
share/gEDA/sym/font/B.sym
share/gEDA/sym/font/C.sym
-share/gEDA/sym/font/ChangeLog
share/gEDA/sym/font/D.sym
+share/gEDA/sym/font/E-acute-accent.sym
share/gEDA/sym/font/E.sym
share/gEDA/sym/font/F.sym
share/gEDA/sym/font/G.sym
share/gEDA/sym/font/H.sym
+share/gEDA/sym/font/I-acute-accent.sym
share/gEDA/sym/font/I.sym
share/gEDA/sym/font/J.sym
share/gEDA/sym/font/K.sym
share/gEDA/sym/font/L.sym
share/gEDA/sym/font/M.sym
+share/gEDA/sym/font/N-tilde.sym
share/gEDA/sym/font/N.sym
+share/gEDA/sym/font/O-acute-accent.sym
share/gEDA/sym/font/O-diaeresis.sym
share/gEDA/sym/font/O-slash.sym
share/gEDA/sym/font/O.sym
share/gEDA/sym/font/P.sym
share/gEDA/sym/font/Q.sym
share/gEDA/sym/font/R.sym
-share/gEDA/sym/font/README
share/gEDA/sym/font/S.sym
share/gEDA/sym/font/T.sym
+share/gEDA/sym/font/U-acute-accent.sym
share/gEDA/sym/font/U-diaeresis.sym
share/gEDA/sym/font/U.sym
share/gEDA/sym/font/V.sym
@@ -685,6 +718,7 @@ share/gEDA/sym/font/W.sym
share/gEDA/sym/font/X.sym
share/gEDA/sym/font/Y.sym
share/gEDA/sym/font/Z.sym
+share/gEDA/sym/font/a_-acute-accent.sym
share/gEDA/sym/font/a_-diaeresis.sym
share/gEDA/sym/font/a_-ring.sym
share/gEDA/sym/font/a_.sym
@@ -703,12 +737,15 @@ share/gEDA/sym/font/colon.sym
share/gEDA/sym/font/comma.sym
share/gEDA/sym/font/d_.sym
share/gEDA/sym/font/dollar.sym
+share/gEDA/sym/font/e_-acute-accent.sym
share/gEDA/sym/font/e_.sym
share/gEDA/sym/font/equal.sym
+share/gEDA/sym/font/excl-open.sym
share/gEDA/sym/font/excl.sym
share/gEDA/sym/font/f_.sym
share/gEDA/sym/font/g_.sym
share/gEDA/sym/font/h_.sym
+share/gEDA/sym/font/i_-acute-accent.sym
share/gEDA/sym/font/i_.sym
share/gEDA/sym/font/j_.sym
share/gEDA/sym/font/k_.sym
@@ -720,7 +757,10 @@ share/gEDA/sym/font/lparen.sym
share/gEDA/sym/font/m_.sym
share/gEDA/sym/font/minus.sym
share/gEDA/sym/font/more.sym
+share/gEDA/sym/font/n_-tilde.sym
share/gEDA/sym/font/n_.sym
+share/gEDA/sym/font/newline.sym
+share/gEDA/sym/font/o_-acute-accent.sym
share/gEDA/sym/font/o_-diaeresis.sym
share/gEDA/sym/font/o_-slash.sym
share/gEDA/sym/font/o_.sym
@@ -730,6 +770,7 @@ share/gEDA/sym/font/period.sym
share/gEDA/sym/font/plus.sym
share/gEDA/sym/font/pound.sym
share/gEDA/sym/font/q_.sym
+share/gEDA/sym/font/quest-open.sym
share/gEDA/sym/font/quest.sym
share/gEDA/sym/font/quote.sym
share/gEDA/sym/font/r_.sym
@@ -742,6 +783,7 @@ share/gEDA/sym/font/slash.sym
share/gEDA/sym/font/space.sym
share/gEDA/sym/font/t_.sym
share/gEDA/sym/font/tilde.sym
+share/gEDA/sym/font/u_-acute-accent.sym
share/gEDA/sym/font/u_-diaeresis.sym
share/gEDA/sym/font/u_.sym
share/gEDA/sym/font/under.sym
@@ -751,6 +793,35 @@ share/gEDA/sym/font/w_.sym
share/gEDA/sym/font/x_.sym
share/gEDA/sym/font/y_.sym
share/gEDA/sym/font/z_.sym
+share/gEDA/sym/gnetman/capacitor-1.sym
+share/gEDA/sym/gnetman/ccvs-1.sym
+share/gEDA/sym/gnetman/clkinv.sym
+share/gEDA/sym/gnetman/cvstitle.sym
+share/gEDA/sym/gnetman/dffr.sym
+share/gEDA/sym/gnetman/idc-1.sym
+share/gEDA/sym/gnetman/in.sym
+share/gEDA/sym/gnetman/inductor-1.sym
+share/gEDA/sym/gnetman/inv.sym
+share/gEDA/sym/gnetman/io.sym
+share/gEDA/sym/gnetman/lat.sym
+share/gEDA/sym/gnetman/latr.sym
+share/gEDA/sym/gnetman/nand2.sym
+share/gEDA/sym/gnetman/nand3.sym
+share/gEDA/sym/gnetman/nmos.sym
+share/gEDA/sym/gnetman/nmos4.sym
+share/gEDA/sym/gnetman/nor2.sym
+share/gEDA/sym/gnetman/out.sym
+share/gEDA/sym/gnetman/passtrans.sym
+share/gEDA/sym/gnetman/pmos.sym
+share/gEDA/sym/gnetman/pmos4.sym
+share/gEDA/sym/gnetman/resistor-1.sym
+share/gEDA/sym/gnetman/vccs-1.sym
+share/gEDA/sym/gnetman/vcvs-1.sym
+share/gEDA/sym/gnetman/vdc-1.sym
+share/gEDA/sym/gnetman/vdd.sym
+share/gEDA/sym/gnetman/vpulse-1.sym
+share/gEDA/sym/gnetman/vpwl-1.sym
+share/gEDA/sym/gnetman/vss.sym
share/gEDA/sym/idt/idt7204-1.sym
share/gEDA/sym/io/in-1.sym
share/gEDA/sym/io/input-1.sym
@@ -777,6 +848,7 @@ share/gEDA/sym/linear/lm2941-1.sym
share/gEDA/sym/linear/lm311-1.sym
share/gEDA/sym/linear/lm317-1.sym
share/gEDA/sym/linear/lm324-1.sym
+share/gEDA/sym/linear/lm337-1.sym
share/gEDA/sym/linear/lm339-1.sym
share/gEDA/sym/linear/lm339-2.sym
share/gEDA/sym/linear/lm358-1.sym
@@ -809,6 +881,8 @@ share/gEDA/sym/linear/ltc1799-1.sym
share/gEDA/sym/linear/ltc2400-1.sym
share/gEDA/sym/linear/volt_reg_adj-1.sym
share/gEDA/sym/maxim/adc0820-1.sym
+share/gEDA/sym/maxim/adm202-1.sym
+share/gEDA/sym/maxim/adm202-2.sym
share/gEDA/sym/maxim/max038-1.sym
share/gEDA/sym/maxim/max038-2.sym
share/gEDA/sym/maxim/max100-1.sym
@@ -888,6 +962,7 @@ share/gEDA/sym/memory/4164-1.sym
share/gEDA/sym/memory/581000-1.sym
share/gEDA/sym/memory/62256-1.sym
share/gEDA/sym/memory/62256-2.sym
+share/gEDA/sym/memory/628512-1.sym
share/gEDA/sym/memory/93Cx6-1.sym
share/gEDA/sym/memory/HM6264P15-1.sym
share/gEDA/sym/memory/N82S23N-1.sym
@@ -980,9 +1055,12 @@ share/gEDA/sym/misc/AN82527.sym
share/gEDA/sym/misc/DM9368.sym
share/gEDA/sym/misc/FND5148-1.sym
share/gEDA/sym/misc/HFA1100-1.sym
+share/gEDA/sym/misc/HIP4080A-1.sym
+share/gEDA/sym/misc/HIP4081A-1.sym
share/gEDA/sym/misc/L293.sym
share/gEDA/sym/misc/MAC160-1.sym
share/gEDA/sym/misc/NE-592-1.sym
+share/gEDA/sym/misc/PCF8563-1.sym
share/gEDA/sym/misc/PCF8591.sym
share/gEDA/sym/misc/PCM2702E-1.sym
share/gEDA/sym/misc/QT60040-1.sym
@@ -1003,6 +1081,8 @@ share/gEDA/sym/misc/interpage_bidir-1.sym
share/gEDA/sym/misc/interpage_from-1.sym
share/gEDA/sym/misc/interpage_to-1.sym
share/gEDA/sym/misc/mc1496-1.sym
+share/gEDA/sym/misc/mc3479-1.sym
+share/gEDA/sym/misc/mc3487-1.sym
share/gEDA/sym/misc/mt8870-1.sym
share/gEDA/sym/misc/nc-bottom-1.sym
share/gEDA/sym/misc/nc-left-1.sym
@@ -1011,12 +1091,20 @@ share/gEDA/sym/misc/nc-top-1.sym
share/gEDA/sym/misc/osc-1.sym
share/gEDA/sym/misc/osc-2.sym
share/gEDA/sym/misc/si9200-1.sym
+share/gEDA/sym/misc/tl062-1.sym
+share/gEDA/sym/misc/tl072-1.sym
+share/gEDA/sym/misc/tl082-1.sym
share/gEDA/sym/misc/tl16c554afn-1.sym
share/gEDA/sym/misc/vicor_gen1.sym
share/gEDA/sym/national/ADC0804-1.sym
share/gEDA/sym/national/DAC0808-1.sym
+share/gEDA/sym/national/DS2405-1.sym
+share/gEDA/sym/national/DS26C31-1.sym
share/gEDA/sym/national/DS26C32-1.sym
+share/gEDA/sym/national/DS26C32-2.sym
share/gEDA/sym/national/DS26C61-1.sym
+share/gEDA/sym/national/DS26LS31-1.sym
+share/gEDA/sym/national/DS2890_TO92-1.sym
share/gEDA/sym/national/lm4871m-1.sym
share/gEDA/sym/national/pc16500d-1.sym
share/gEDA/sym/opto/4N25-1.sym
@@ -1025,11 +1113,14 @@ share/gEDA/sym/opto/6N135-1.sym
share/gEDA/sym/opto/6N136-1.sym
share/gEDA/sym/opto/6n137-1.sym
share/gEDA/sym/opto/810-1.sym
+share/gEDA/sym/opto/CNY17-1.sym
share/gEDA/sym/opto/HCPL4502-1.sym
share/gEDA/sym/opto/HCPL4701-1.sym
share/gEDA/sym/opto/HCTL-2000-1.sym
share/gEDA/sym/opto/HCTL-2016-1.sym
share/gEDA/sym/opto/HSDL7000-1.sym
+share/gEDA/sym/opto/K3020P-1.sym
+share/gEDA/sym/opto/hcnr201-1.sym
share/gEDA/sym/opto/hcpl-2630-1.sym
share/gEDA/sym/opto/hcpl-2631-1.sym
share/gEDA/sym/opto/hcpl-4534-1.sym
@@ -1062,7 +1153,6 @@ share/gEDA/sym/power/vcc-orcad-circle-1.sym
share/gEDA/sym/power/vdd-1.sym
share/gEDA/sym/power/vee-1.sym
share/gEDA/sym/power/vss-1.sym
-share/gEDA/sym/radio/README
share/gEDA/sym/radio/af_output_transformer-1.sym
share/gEDA/sym/radio/if_trans_aircore-1.sym
share/gEDA/sym/radio/loop_antenna-1.sym
@@ -1143,6 +1233,7 @@ share/gEDA/sym/switch/switch-pushbutton-nc-2.sym
share/gEDA/sym/switch/switch-pushbutton-no-1.sym
share/gEDA/sym/switch/switch-pushbutton-spdt-1.sym
share/gEDA/sym/switch/switch-spdt-1.sym
+share/gEDA/sym/switch/switch-spdt-2.sym
share/gEDA/sym/switch/switch-spst-1.sym
share/gEDA/sym/titleblock/cvstitleblock-1.sym
share/gEDA/sym/titleblock/title-A.sym
@@ -1170,6 +1261,8 @@ share/gEDA/sym/transistor/2N3904-1.sym
share/gEDA/sym/transistor/2N5245-1.sym
share/gEDA/sym/transistor/2N5911-1.sym
share/gEDA/sym/transistor/2S2K3-1.sym
+share/gEDA/sym/transistor/BC547-1.sym
+share/gEDA/sym/transistor/BC557-1.sym
share/gEDA/sym/transistor/IRF1010N-1.sym
share/gEDA/sym/transistor/IRLZ24N-1.sym
share/gEDA/sym/transistor/ULN2003-1.sym
@@ -1377,12 +1470,15 @@ share/gEDA/system-commonrc
@dirrm share/gEDA/sym/lattice
@dirrm share/gEDA/sym/io
@dirrm share/gEDA/sym/idt
+@dirrm share/gEDA/sym/gnetman
@dirrm share/gEDA/sym/font
@dirrm share/gEDA/sym/ecl
@dirrm share/gEDA/sym/diode
@dirrm share/gEDA/sym/dec
@dirrm share/gEDA/sym/connector
+@dirrm share/gEDA/sym/cascade
@dirrm share/gEDA/sym/bus
+@dirrm share/gEDA/sym/asic
@dirrm share/gEDA/sym/analog
@dirrm share/gEDA/sym/altera
@dirrm share/gEDA/sym/IEC417
diff --git a/cad/geda-symbols/distinfo b/cad/geda-symbols/distinfo
index 4250c86a9df..4a5651159e9 100644
--- a/cad/geda-symbols/distinfo
+++ b/cad/geda-symbols/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.8 2003/09/10 23:43:34 dmcmahill Exp $
+$NetBSD: distinfo,v 1.9 2004/03/05 13:03:47 dmcmahill Exp $
-SHA1 (geda/geda-symbols-20030901.tar.gz) = 61e2122978421f62672eaa10adb182e4beb9f354
-Size (geda/geda-symbols-20030901.tar.gz) = 514174 bytes
+SHA1 (geda/geda-symbols-20040111.tar.gz) = 780d6c7f8c7a1da608b7fdc61a3e73d1615ff70a
+Size (geda/geda-symbols-20040111.tar.gz) = 576541 bytes