diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2004-03-05 13:03:47 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2004-03-05 13:03:47 +0000 |
commit | c050018ba716ef5468cdf335b7e5edcec7ef195b (patch) | |
tree | 8a60e80db4565f9a09706bb5c90b03e504ff599a /cad | |
parent | e5dafb3ff3b98fc771fea5bd405f93e311d17865 (diff) | |
download | pkgsrc-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')
31 files changed, 443 insertions, 88 deletions
diff --git a/cad/geda-docs/PLIST b/cad/geda-docs/PLIST index 3801b414dfe..62cd234c082 100644 --- a/cad/geda-docs/PLIST +++ b/cad/geda-docs/PLIST @@ -1,4 +1,5 @@ -@comment $NetBSD: PLIST,v 1.6 2003/09/10 23:43:33 dmcmahill Exp $ +@comment $NetBSD: PLIST,v 1.7 2004/03/05 13:03:47 dmcmahill Exp $ +share/doc/geda-doc/attributes/WARNINGS share/doc/geda-doc/attributes/attributes.css share/doc/geda-doc/attributes/attributes.dvi share/doc/geda-doc/attributes/attributes.html @@ -49,6 +50,46 @@ share/doc/geda-doc/attributes/prev.png share/doc/geda-doc/attributes/prev_g.png share/doc/geda-doc/attributes/up.png share/doc/geda-doc/attributes/up_g.png +share/doc/geda-doc/cascade/WARNINGS +share/doc/geda-doc/cascade/cascade.css +share/doc/geda-doc/cascade/cascade.dvi +share/doc/geda-doc/cascade/cascade.html +share/doc/geda-doc/cascade/cascade.pdf +share/doc/geda-doc/cascade/cascade.ps +share/doc/geda-doc/cascade/contents.png +share/doc/geda-doc/cascade/images.aux +share/doc/geda-doc/cascade/images.log +share/doc/geda-doc/cascade/images.out +share/doc/geda-doc/cascade/images.pl +share/doc/geda-doc/cascade/images.tex +share/doc/geda-doc/cascade/img1.png +share/doc/geda-doc/cascade/img2.png +share/doc/geda-doc/cascade/index.html +share/doc/geda-doc/cascade/internals.pl +share/doc/geda-doc/cascade/labels.pl +share/doc/geda-doc/cascade/next.png +share/doc/geda-doc/cascade/next_g.png +share/doc/geda-doc/cascade/node1.html +share/doc/geda-doc/cascade/node10.html +share/doc/geda-doc/cascade/node11.html +share/doc/geda-doc/cascade/node12.html +share/doc/geda-doc/cascade/node13.html +share/doc/geda-doc/cascade/node14.html +share/doc/geda-doc/cascade/node15.html +share/doc/geda-doc/cascade/node16.html +share/doc/geda-doc/cascade/node2.html +share/doc/geda-doc/cascade/node3.html +share/doc/geda-doc/cascade/node4.html +share/doc/geda-doc/cascade/node5.html +share/doc/geda-doc/cascade/node6.html +share/doc/geda-doc/cascade/node7.html +share/doc/geda-doc/cascade/node8.html +share/doc/geda-doc/cascade/node9.html +share/doc/geda-doc/cascade/prev.png +share/doc/geda-doc/cascade/prev_g.png +share/doc/geda-doc/cascade/up.png +share/doc/geda-doc/cascade/up_g.png +share/doc/geda-doc/fileformats/WARNINGS share/doc/geda-doc/fileformats/contents.png share/doc/geda-doc/fileformats/fileformats.css share/doc/geda-doc/fileformats/fileformats.dvi @@ -57,6 +98,7 @@ share/doc/geda-doc/fileformats/fileformats.pdf share/doc/geda-doc/fileformats/fileformats.ps share/doc/geda-doc/fileformats/images.aux share/doc/geda-doc/fileformats/images.log +share/doc/geda-doc/fileformats/images.out share/doc/geda-doc/fileformats/images.pl share/doc/geda-doc/fileformats/images.tex share/doc/geda-doc/fileformats/img1.png @@ -91,14 +133,102 @@ share/doc/geda-doc/fileformats/prev_g.png share/doc/geda-doc/fileformats/up.png share/doc/geda-doc/fileformats/up_g.png share/doc/geda-doc/gedadocs.html -share/doc/geda-doc/gnetlist/gnetlist.txt -share/doc/geda-doc/gschem/gschem.txt +share/doc/geda-doc/gnetlist/WARNINGS +share/doc/geda-doc/gnetlist/contents.png +share/doc/geda-doc/gnetlist/gnetlist.css +share/doc/geda-doc/gnetlist/gnetlist.dvi +share/doc/geda-doc/gnetlist/gnetlist.html +share/doc/geda-doc/gnetlist/gnetlist.pdf +share/doc/geda-doc/gnetlist/gnetlist.ps +share/doc/geda-doc/gnetlist/index.html +share/doc/geda-doc/gnetlist/labels.pl +share/doc/geda-doc/gnetlist/next.png +share/doc/geda-doc/gnetlist/next_g.png +share/doc/geda-doc/gnetlist/node1.html +share/doc/geda-doc/gnetlist/node10.html +share/doc/geda-doc/gnetlist/node11.html +share/doc/geda-doc/gnetlist/node12.html +share/doc/geda-doc/gnetlist/node13.html +share/doc/geda-doc/gnetlist/node2.html +share/doc/geda-doc/gnetlist/node3.html +share/doc/geda-doc/gnetlist/node4.html +share/doc/geda-doc/gnetlist/node5.html +share/doc/geda-doc/gnetlist/node6.html +share/doc/geda-doc/gnetlist/node7.html +share/doc/geda-doc/gnetlist/node8.html +share/doc/geda-doc/gnetlist/node9.html +share/doc/geda-doc/gnetlist/prev.png +share/doc/geda-doc/gnetlist/prev_g.png +share/doc/geda-doc/gnetlist/up.png +share/doc/geda-doc/gnetlist/up_g.png +share/doc/geda-doc/gschem/WARNINGS +share/doc/geda-doc/gschem/contents.png +share/doc/geda-doc/gschem/gschem.css +share/doc/geda-doc/gschem/gschem.dvi +share/doc/geda-doc/gschem/gschem.html +share/doc/geda-doc/gschem/gschem.pdf +share/doc/geda-doc/gschem/gschem.ps +share/doc/geda-doc/gschem/index.html +share/doc/geda-doc/gschem/labels.pl +share/doc/geda-doc/gschem/next.png +share/doc/geda-doc/gschem/next_g.png +share/doc/geda-doc/gschem/node1.html +share/doc/geda-doc/gschem/node10.html +share/doc/geda-doc/gschem/node11.html +share/doc/geda-doc/gschem/node12.html +share/doc/geda-doc/gschem/node13.html +share/doc/geda-doc/gschem/node14.html +share/doc/geda-doc/gschem/node15.html +share/doc/geda-doc/gschem/node16.html +share/doc/geda-doc/gschem/node17.html +share/doc/geda-doc/gschem/node18.html +share/doc/geda-doc/gschem/node19.html +share/doc/geda-doc/gschem/node2.html +share/doc/geda-doc/gschem/node20.html +share/doc/geda-doc/gschem/node21.html +share/doc/geda-doc/gschem/node22.html +share/doc/geda-doc/gschem/node23.html +share/doc/geda-doc/gschem/node3.html +share/doc/geda-doc/gschem/node4.html +share/doc/geda-doc/gschem/node5.html +share/doc/geda-doc/gschem/node6.html +share/doc/geda-doc/gschem/node7.html +share/doc/geda-doc/gschem/node8.html +share/doc/geda-doc/gschem/node9.html +share/doc/geda-doc/gschem/prev.png +share/doc/geda-doc/gschem/prev_g.png +share/doc/geda-doc/gschem/up.png +share/doc/geda-doc/gschem/up_g.png share/doc/geda-doc/hooks/hooks_and_scheme.txt share/doc/geda-doc/keymapping/keymapping.html -share/doc/geda-doc/netattrib/netattrib.txt +share/doc/geda-doc/netattrib/WARNINGS +share/doc/geda-doc/netattrib/contents.png +share/doc/geda-doc/netattrib/index.html +share/doc/geda-doc/netattrib/labels.pl +share/doc/geda-doc/netattrib/netattrib.css +share/doc/geda-doc/netattrib/netattrib.dvi +share/doc/geda-doc/netattrib/netattrib.html +share/doc/geda-doc/netattrib/netattrib.pdf +share/doc/geda-doc/netattrib/netattrib.ps +share/doc/geda-doc/netattrib/next.png +share/doc/geda-doc/netattrib/next_g.png +share/doc/geda-doc/netattrib/node1.html +share/doc/geda-doc/netattrib/node2.html +share/doc/geda-doc/netattrib/node3.html +share/doc/geda-doc/netattrib/node4.html +share/doc/geda-doc/netattrib/node5.html +share/doc/geda-doc/netattrib/node6.html +share/doc/geda-doc/netattrib/node7.html +share/doc/geda-doc/netattrib/node8.html +share/doc/geda-doc/netattrib/prev.png +share/doc/geda-doc/netattrib/prev_g.png +share/doc/geda-doc/netattrib/up.png +share/doc/geda-doc/netattrib/up_g.png +share/doc/geda-doc/pads_backannotate/WARNINGS share/doc/geda-doc/pads_backannotate/contents.png share/doc/geda-doc/pads_backannotate/images.aux share/doc/geda-doc/pads_backannotate/images.log +share/doc/geda-doc/pads_backannotate/images.out share/doc/geda-doc/pads_backannotate/images.pl share/doc/geda-doc/pads_backannotate/images.tex share/doc/geda-doc/pads_backannotate/img1.png @@ -127,9 +257,11 @@ share/doc/geda-doc/spice-sdb/appendix.html share/doc/geda-doc/spice-sdb/intro.html share/doc/geda-doc/spice-sdb/netlist.html share/doc/geda-doc/spice-sdb/simulation.html +share/doc/geda-doc/switcap/WARNINGS share/doc/geda-doc/switcap/contents.png share/doc/geda-doc/switcap/images.aux share/doc/geda-doc/switcap/images.log +share/doc/geda-doc/switcap/images.out share/doc/geda-doc/switcap/images.pl share/doc/geda-doc/switcap/images.tex share/doc/geda-doc/switcap/img1.png @@ -181,9 +313,11 @@ share/doc/geda-doc/switcap/switcap.pdf share/doc/geda-doc/switcap/switcap.ps share/doc/geda-doc/switcap/up.png share/doc/geda-doc/switcap/up_g.png +share/doc/geda-doc/symbols/WARNINGS share/doc/geda-doc/symbols/contents.png share/doc/geda-doc/symbols/images.aux share/doc/geda-doc/symbols/images.log +share/doc/geda-doc/symbols/images.out share/doc/geda-doc/symbols/images.pl share/doc/geda-doc/symbols/images.tex share/doc/geda-doc/symbols/img1.png @@ -223,6 +357,53 @@ share/doc/geda-doc/symbols/symbols.pdf share/doc/geda-doc/symbols/symbols.ps share/doc/geda-doc/symbols/up.png share/doc/geda-doc/symbols/up_g.png +share/doc/geda-doc/tutorials/gsch2pcb/gschem-warmup.html +share/doc/geda-doc/tutorials/gsch2pcb/images/board-1.png +share/doc/geda-doc/tutorials/gsch2pcb/images/board-2.png +share/doc/geda-doc/tutorials/gsch2pcb/images/board-3.png +share/doc/geda-doc/tutorials/gsch2pcb/images/board-4.png +share/doc/geda-doc/tutorials/gsch2pcb/images/board-5.png +share/doc/geda-doc/tutorials/gsch2pcb/images/board-6.png +share/doc/geda-doc/tutorials/gsch2pcb/images/gschem-sym-1.png +share/doc/geda-doc/tutorials/gsch2pcb/images/gschem-sym-2.png +share/doc/geda-doc/tutorials/gsch2pcb/images/gschem-sym-3.png +share/doc/geda-doc/tutorials/gsch2pcb/images/one-sch-1.png +share/doc/geda-doc/tutorials/gsch2pcb/images/one-sch-2.png +share/doc/geda-doc/tutorials/gsch2pcb/images/one-sch-3.png +share/doc/geda-doc/tutorials/gsch2pcb/images/paper1.gif +share/doc/geda-doc/tutorials/gsch2pcb/images/pcb-el-1.png +share/doc/geda-doc/tutorials/gsch2pcb/images/pcb-el-2.png +share/doc/geda-doc/tutorials/gsch2pcb/images/two-sch-1.png +share/doc/geda-doc/tutorials/gsch2pcb/images/two-sch-2.png +share/doc/geda-doc/tutorials/gsch2pcb/images/warmup-0.png +share/doc/geda-doc/tutorials/gsch2pcb/images/warmup-1.png +share/doc/geda-doc/tutorials/gsch2pcb/images/warmup-2.png +share/doc/geda-doc/tutorials/gsch2pcb/transistor-guide.html +share/doc/geda-doc/tutorials/gsch2pcb/tutorial.html +share/doc/geda-doc/tutorials/tragesym/gedit_corrected.jpg +share/doc/geda-doc/tutorials/tragesym/gedit_pasted.jpg +share/doc/geda-doc/tutorials/tragesym/gnumeric_dot.jpg +share/doc/geda-doc/tutorials/tragesym/gnumeric_export.jpg +share/doc/geda-doc/tutorials/tragesym/gnumeric_filled.jpg +share/doc/geda-doc/tutorials/tragesym/gnumeric_import.jpg +share/doc/geda-doc/tutorials/tragesym/gnumeric_import2.jpg +share/doc/geda-doc/tutorials/tragesym/gnumeric_moved.jpg +share/doc/geda-doc/tutorials/tragesym/gnumeric_posit.jpg +share/doc/geda-doc/tutorials/tragesym/gnumeric_pwr.jpg +share/doc/geda-doc/tutorials/tragesym/gnumeric_save.jpg +share/doc/geda-doc/tutorials/tragesym/gnumeric_sorted.jpg +share/doc/geda-doc/tutorials/tragesym/gnumeric_start.jpg +share/doc/geda-doc/tutorials/tragesym/gnumeric_type.jpg +share/doc/geda-doc/tutorials/tragesym/gschem_edited.jpg +share/doc/geda-doc/tutorials/tragesym/tragesym.html +share/doc/geda-doc/tutorials/tragesym/xpdf_block.jpg +share/doc/geda-doc/tutorials/tragesym/xpdf_open.jpg +share/doc/geda-doc/tutorials/tragesym/xpdf_pins.jpg +share/doc/geda-doc/tutorials/tragesym/xpdf_selected.jpg +@dirrm share/doc/geda-doc/tutorials/tragesym +@dirrm share/doc/geda-doc/tutorials/gsch2pcb/images +@dirrm share/doc/geda-doc/tutorials/gsch2pcb +@dirrm share/doc/geda-doc/tutorials @dirrm share/doc/geda-doc/symbols @dirrm share/doc/geda-doc/switcap @dirrm share/doc/geda-doc/spice-sdb @@ -233,4 +414,6 @@ share/doc/geda-doc/symbols/up_g.png @dirrm share/doc/geda-doc/gschem @dirrm share/doc/geda-doc/gnetlist @dirrm share/doc/geda-doc/fileformats +@dirrm share/doc/geda-doc/cascade @dirrm share/doc/geda-doc/attributes +@dirrm share/doc/geda-doc diff --git a/cad/geda-docs/distinfo b/cad/geda-docs/distinfo index 136f40fc59c..c79f1394332 100644 --- a/cad/geda-docs/distinfo +++ b/cad/geda-docs/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-docs-20030901.tar.gz) = 4cad60424f610b41919023b6904a55cced743675 -Size (geda/geda-docs-20030901.tar.gz) = 669160 bytes +SHA1 (geda/geda-docs-20040111.tar.gz) = 65f226b2e7a09e827d4d0b1bd21a2fbe82fbaee7 +Size (geda/geda-docs-20040111.tar.gz) = 2825662 bytes diff --git a/cad/geda-examples/Makefile b/cad/geda-examples/Makefile index 83879161922..8dfe824612c 100644 --- a/cad/geda-examples/Makefile +++ b/cad/geda-examples/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2004/02/23 04:02:55 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.5 2004/03/05 13:03:47 dmcmahill Exp $ # DISTNAME= geda-examples-${PKGVERSION} @@ -19,6 +19,9 @@ CONFLICTS+= gEDA<19991011 GNU_CONFIGURE= YES USE_GNU_TOOLS+= make +pre-install: + ${RM} -f ${WRKSRC}/config.status.overridden + do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/geda cd ${WRKSRC} && tar -cf - * | \ diff --git a/cad/geda-examples/distinfo b/cad/geda-examples/distinfo index 59f0b9e68a7..8ebf5ad037c 100644 --- a/cad/geda-examples/distinfo +++ b/cad/geda-examples/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.1.1.1 2003/09/10 23:38:27 dmcmahill Exp $ +$NetBSD: distinfo,v 1.2 2004/03/05 13:03:47 dmcmahill Exp $ -SHA1 (geda/geda-examples-20030901.tar.gz) = 461cf358d2fbd3c0a6bd93bc039889c0af0c4703 -Size (geda/geda-examples-20030901.tar.gz) = 239502 bytes +SHA1 (geda/geda-examples-20040111.tar.gz) = 1d43d44ab435e07f8e3752afdb3a59ee9e318f4a +Size (geda/geda-examples-20040111.tar.gz) = 243997 bytes 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 diff --git a/cad/geda-utils/Makefile b/cad/geda-utils/Makefile index 541a57aa5f9..f7e07318034 100644 --- a/cad/geda-utils/Makefile +++ b/cad/geda-utils/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.23 2004/02/23 04:20:50 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.24 2004/03/05 13:03:47 dmcmahill Exp $ # DISTNAME= geda-utils-${PKGVERSION} -PKGREVISION= 2 CATEGORIES= cad MASTER_SITES= ftp://ftp.geda.seul.org/pub/geda/devel/${PKGVERSION}/ \ ftp://ieee.ing.uniroma1.it/pub/geda/devel/${PKGVERSION}/ \ diff --git a/cad/geda-utils/PLIST b/cad/geda-utils/PLIST index d8ea17b2605..7892dd6e255 100644 --- a/cad/geda-utils/PLIST +++ b/cad/geda-utils/PLIST @@ -1,5 +1,6 @@ -@comment $NetBSD: PLIST,v 1.4 2003/09/10 23:43:35 dmcmahill Exp $ +@comment $NetBSD: PLIST,v 1.5 2004/03/05 13:03:47 dmcmahill Exp $ bin/convert_sym +bin/garchive bin/gmk_sym bin/gsch2pcb bin/gschemdoc @@ -13,4 +14,9 @@ bin/sarlacc_schem bin/sarlacc_sym bin/smash_megafile bin/tragesym +share/doc/geda-doc/readmes/README.gsch2pcb +share/doc/geda-doc/readmes/README.olib +share/doc/geda-doc/readmes/README.tragesym share/gEDA/system-gschlasrc +@unexec ${RMDIR} %D/share/doc/geda-doc/readmes 2>/dev/null || ${TRUE} +@unexec ${RMDIR} %D/share/doc/geda-doc 2>/dev/null || ${TRUE} diff --git a/cad/geda-utils/distinfo b/cad/geda-utils/distinfo index d822c3e1f53..ff45c76ee9b 100644 --- a/cad/geda-utils/distinfo +++ b/cad/geda-utils/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2003/09/10 23:43:35 dmcmahill Exp $ +$NetBSD: distinfo,v 1.9 2004/03/05 13:03:47 dmcmahill Exp $ -SHA1 (geda/geda-utils-20030901.tar.gz) = bd5238b8a2f3469311217e20263689aaa5f8ac0b -Size (geda/geda-utils-20030901.tar.gz) = 196589 bytes +SHA1 (geda/geda-utils-20040111.tar.gz) = 2c52ab5b01a74d9ffb46d0f582d3897994cd9e3f +Size (geda/geda-utils-20040111.tar.gz) = 243338 bytes diff --git a/cad/geda/Makefile b/cad/geda/Makefile index b6d18c89a05..60af6e5d6cd 100644 --- a/cad/geda/Makefile +++ b/cad/geda/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.33 2004/02/23 13:47:26 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.34 2004/03/05 13:03:47 dmcmahill Exp $ # DISTNAME= geda-${PKGVERSION} -PKGREVISION= 2 CATEGORIES= cad MASTER_SITES= ftp://ftp.geda.seul.org/pub/geda/devel/${PKGVERSION}/ \ ftp://ieee.ing.uniroma1.it/pub/geda/devel/${PKGVERSION}/ \ @@ -13,12 +12,12 @@ MAINTAINER= dmcmahill@NetBSD.org HOMEPAGE= http://www.geda.seul.org/ COMMENT= Toolset for automating electronic design -DEPENDS+= gschem-${PKGVERSION}nb2:../../cad/gschem -DEPENDS+= gnetlist-${PKGVERSION}nb2:../../cad/gnetlist -DEPENDS+= gsymcheck-${PKGVERSION}nb2:../../cad/gsymcheck -DEPENDS+= geda-utils-${PKGVERSION}nb2:../../cad/geda-utils -DEPENDS+= geda-docs-${PKGVERSION}:../../cad/geda-docs -DEPENDS+= geda-examples-${PKGVERSION}:../../cad/geda-examples +DEPENDS+= gschem-${PKGVERSION}{,nb[0-9]+}:../../cad/gschem +DEPENDS+= gnetlist-${PKGVERSION}{,nb[0-9]+}:../../cad/gnetlist +DEPENDS+= gsymcheck-${PKGVERSION}{,nb[0-9]+}:../../cad/gsymcheck +DEPENDS+= geda-utils-${PKGVERSION}{,nb[0-9]+}:../../cad/geda-utils +DEPENDS+= geda-docs-${PKGVERSION}{,nb[0-9]+}:../../cad/geda-docs +DEPENDS+= geda-examples-${PKGVERSION}{,nb[0-9]+}:../../cad/geda-examples .include "Makefile.common" diff --git a/cad/geda/Makefile.common b/cad/geda/Makefile.common index ac37780c668..d87b0e0fef1 100644 --- a/cad/geda/Makefile.common +++ b/cad/geda/Makefile.common @@ -1,5 +1,5 @@ -# $NetBSD: Makefile.common,v 1.1 2004/02/22 20:37:45 dmcmahill Exp $ +# $NetBSD: Makefile.common,v 1.2 2004/03/05 13:03:47 dmcmahill Exp $ # DIST_SUBDIR= geda -PKGVERSION= 20030901 +PKGVERSION= 20040111 diff --git a/cad/geda/PLIST b/cad/geda/PLIST index 3acfb555412..264fb6252bc 100644 --- a/cad/geda/PLIST +++ b/cad/geda/PLIST @@ -1,2 +1,5 @@ -@comment $NetBSD: PLIST,v 1.2 2003/07/15 09:23:31 dmcmahill Exp $ +@comment $NetBSD: PLIST,v 1.3 2004/03/05 13:03:47 dmcmahill Exp $ bin/geda +bin/raw2gw +${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/geda.mo +${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/geda.mo diff --git a/cad/geda/distinfo b/cad/geda/distinfo index 16ba5bb938d..636e1f149b5 100644 --- a/cad/geda/distinfo +++ b/cad/geda/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.2 2003/09/10 23:43:33 dmcmahill Exp $ +$NetBSD: distinfo,v 1.3 2004/03/05 13:03:47 dmcmahill Exp $ -SHA1 (geda/geda-20030901.tar.gz) = 15f7ba1298ccc712a466f4af870700259e975a3d -Size (geda/geda-20030901.tar.gz) = 238373 bytes +SHA1 (geda/geda-20040111.tar.gz) = cfa387e046658c9a39eb976c2792b00663f24ce2 +Size (geda/geda-20040111.tar.gz) = 329653 bytes +SHA1 (patch-aa) = 27f6766661153845e8333d4f83a1b2fbc42b70d1 diff --git a/cad/geda/patches/patch-aa b/cad/geda/patches/patch-aa new file mode 100644 index 00000000000..e82bad81ea5 --- /dev/null +++ b/cad/geda/patches/patch-aa @@ -0,0 +1,30 @@ +$NetBSD: patch-aa,v 1.9 2004/03/05 13:03:47 dmcmahill Exp $ + +--- graphman/raw2gw.c.orig Thu Dec 11 08:15:03 2003 ++++ graphman/raw2gw.c +@@ -27,6 +27,7 @@ + */ + + #include <stdio.h> ++#include <sys/param.h> + #include <unistd.h> + + +@@ -34,7 +35,7 @@ + int main(int iArgn, const char *szArgv[]) + { + FILE *hFile; +- char *szDir; ++ char szDir[MAXPATHLEN]; + + if (iArgn < 2) + return 0; +@@ -47,7 +48,7 @@ int main(int iArgn, const char *szArgv[] + return -1; + } + +- szDir = get_current_dir_name(); ++ getcwd(szDir, MAXPATHLEN); + + hFile = fopen(szArgv[2], "w"); + if (hFile == NULL) diff --git a/cad/gnetlist/Makefile b/cad/gnetlist/Makefile index 8df46a9e497..0f9cf8054cd 100644 --- a/cad/gnetlist/Makefile +++ b/cad/gnetlist/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.25 2004/02/23 04:01:08 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.26 2004/03/05 13:03:47 dmcmahill Exp $ # DISTNAME= geda-gnetlist-${PKGVERSION} PKGNAME= gnetlist-${PKGVERSION} -PKGREVISION= 2 CATEGORIES= cad MASTER_SITES= ftp://ftp.geda.seul.org/pub/geda/devel/${PKGVERSION}/ \ ftp://ieee.ing.uniroma1.it/pub/geda/devel/${PKGVERSION}/ \ @@ -29,11 +28,13 @@ USE_BUILDLINK3= YES LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig EVAL_PREFIX+= PCBDIR=pcb +M4DIR= ${LOCALBASE} post-patch: .for f in gnet-PCBboard.scm gnet-gsch2pcb.scm ${MV} -f ${WRKSRC}/scheme/${f} ${WRKSRC}/scheme/${f}.bak - ${SED} -e 's;@pcb_confdir@;${PKG_SYSCONFDIR}/pcb;g' \ + ${SED} -e 's;@M4@;${M4DIR}/bin/${GNU_PROGRAM_PREFIX}m4;g' \ + -e 's;@pcb_confdir@;${PKG_SYSCONFDIR}/pcb;g' \ -e 's;@pcb_m4dir@;${PCBDIR}/share/pcb/m4;g' \ ${WRKSRC}/scheme/${f}.bak > ${WRKSRC}/scheme/${f} ${RM} -f ${WRKSRC}/scheme/${f}.bak diff --git a/cad/gnetlist/PLIST b/cad/gnetlist/PLIST index 3cb39c77a98..5e8c9096167 100644 --- a/cad/gnetlist/PLIST +++ b/cad/gnetlist/PLIST @@ -1,17 +1,28 @@ -@comment $NetBSD: PLIST,v 1.6 2003/09/10 23:43:35 dmcmahill Exp $ +@comment $NetBSD: PLIST,v 1.7 2004/03/05 13:03:47 dmcmahill Exp $ bin/gnetlist bin/gschem2pcb bin/mk_verilog_syms bin/sw2asc man/man1/gnetlist.1 +share/doc/geda-doc/man/gnetlist.html +share/doc/geda-doc/readmes/README.bom +share/doc/geda-doc/readmes/README.pcb +share/doc/geda-doc/readmes/README.switcap +share/doc/geda-doc/readmes/README.verilog +share/doc/geda-doc/readmes/README.vhdl +share/doc/geda-doc/readmes/syntax_architecture.txt +share/doc/geda-doc/readmes/syntax_entity.txt +share/doc/geda-doc/readmes/vams_mode.txt share/gEDA/scheme/gnet-PCB.scm share/gEDA/scheme/gnet-PCBboard.scm share/gEDA/scheme/gnet-allegro.scm share/gEDA/scheme/gnet-bae.scm share/gEDA/scheme/gnet-bom.scm share/gEDA/scheme/gnet-bom2.scm +share/gEDA/scheme/gnet-cascade.scm share/gEDA/scheme/gnet-drc.scm share/gEDA/scheme/gnet-drc2.scm +share/gEDA/scheme/gnet-futurenet2.scm share/gEDA/scheme/gnet-geda.scm share/gEDA/scheme/gnet-gossip.scm share/gEDA/scheme/gnet-gsch2pcb.scm @@ -22,6 +33,7 @@ share/gEDA/scheme/gnet-partslist1.scm share/gEDA/scheme/gnet-partslist2.scm share/gEDA/scheme/gnet-partslist3.scm share/gEDA/scheme/gnet-protelII.scm +share/gEDA/scheme/gnet-redac.scm share/gEDA/scheme/gnet-spice-sdb.scm share/gEDA/scheme/gnet-spice.scm share/gEDA/scheme/gnet-switcap.scm @@ -32,5 +44,8 @@ share/gEDA/scheme/gnet-vhdl.scm share/gEDA/scheme/gnet-vipec.scm share/gEDA/scheme/gnetlist.scm share/gEDA/system-gnetlistrc +@unexec ${RMDIR} %D/share/doc/geda-doc/man 2>/dev/null || ${TRUE} +@unexec ${RMDIR} %D/share/doc/geda-doc/readmes 2>/dev/null || ${TRUE} +@unexec ${RMDIR} %D/share/doc/geda-doc 2>/dev/null || ${TRUE} @unexec ${RMDIR} %D/share/gEDA/scheme 2>/dev/null || ${TRUE} @unexec ${RMDIR} %D/share/gEDA 2>/dev/null || ${TRUE} diff --git a/cad/gnetlist/distinfo b/cad/gnetlist/distinfo index ad32db7fb64..03e6d3bb792 100644 --- a/cad/gnetlist/distinfo +++ b/cad/gnetlist/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.11 2003/09/10 23:43:35 dmcmahill Exp $ +$NetBSD: distinfo,v 1.12 2004/03/05 13:03:47 dmcmahill Exp $ -SHA1 (geda/geda-gnetlist-20030901.tar.gz) = e0e997fa2043befb0abce8b60f780f8e22fcadfb -Size (geda/geda-gnetlist-20030901.tar.gz) = 259134 bytes -SHA1 (patch-aa) = bb6db6fe92e8c3d32ee13b47d42ade1d1a83ecc4 -SHA1 (patch-ab) = b31951b7162621262a7e2c923a4a383b4e7c0f1e +SHA1 (geda/geda-gnetlist-20040111.tar.gz) = 9d93e776e1058d9922230ca6df13f6a8fd32d819 +Size (geda/geda-gnetlist-20040111.tar.gz) = 303503 bytes +SHA1 (patch-aa) = 4e3e871512a99ad1ea55bf8215c3cc8b773b6867 +SHA1 (patch-ab) = 6a44e80b2e80ccc12e3e4e206de2cfe8f85897fa +SHA1 (patch-ac) = 5ac137d4cfb2cdb7dc88cab790d4ea56b3bb6340 diff --git a/cad/gnetlist/patches/patch-aa b/cad/gnetlist/patches/patch-aa index e4f3ebe6892..7102989fa30 100644 --- a/cad/gnetlist/patches/patch-aa +++ b/cad/gnetlist/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.7 2003/09/10 23:43:36 dmcmahill Exp $ +$NetBSD: patch-aa,v 1.8 2004/03/05 13:03:47 dmcmahill Exp $ --- scheme/gnet-PCBboard.scm.orig Sun Aug 24 01:36:06 2003 +++ scheme/gnet-PCBboard.scm @@ -17,7 +17,7 @@ $NetBSD: patch-aa,v 1.7 2003/09/10 23:43:36 dmcmahill Exp $ ;; (let ((pipe (open-output-pipe (string-append "m4 " *m4-pcbdir* "/common.m4 - >> " output-filename)))) ;; Fixed pipe command (AVH 1/27/02) - (let ((pipe (open-output-pipe (string-append "m4 -d -I" *m4-pcbdir* " " *m4-pcbdir* "/common.m4 - >> " output-filename)))) -+ (let ((pipe (open-output-pipe (string-append "gm4 -d -I" *m4-pcbdir* " -I" *m4-pcbconfdir* " -I$HOME/.pcb -I. " *m4-pcbdir* "/common.m4 - >> " output-filename)))) ++ (let ((pipe (open-output-pipe (string-append "@M4@ -d -I" *m4-pcbdir* " -I" *m4-pcbconfdir* " -I$HOME/.pcb -I. " *m4-pcbdir* "/common.m4 - >> " output-filename)))) ;; packages is a list with the different uref value diff --git a/cad/gnetlist/patches/patch-ab b/cad/gnetlist/patches/patch-ab index 6eeb9a96d7f..80b30953300 100644 --- a/cad/gnetlist/patches/patch-ab +++ b/cad/gnetlist/patches/patch-ab @@ -1,23 +1,25 @@ -$NetBSD: patch-ab,v 1.5 2003/09/10 23:43:36 dmcmahill Exp $ +$NetBSD: patch-ab,v 1.6 2004/03/05 13:03:47 dmcmahill Exp $ ---- scheme/gnet-gsch2pcb.scm.orig Wed Sep 10 16:26:08 2003 +--- scheme/gnet-gsch2pcb.scm.orig Fri Jan 2 19:49:31 2004 +++ scheme/gnet-gsch2pcb.scm -@@ -133,7 +133,8 @@ +@@ -133,9 +133,10 @@ ;; ;; --(define *m4-pcbdir* "/usr/X11R6/lib/X11/pcb/m4") -+(define *m4-pcbdir* "@pcb_m4dir@") -+(define *m4-pcbconfdir* "@pcb_confdir@") +-(define m4-command "m4") +-(define m4-pcbdir "/usr/X11R6/lib/X11/pcb/m4") ++(define m4-command "@M4@") ++(define m4-pcbdir "@pcb_m4dir@") + (define m4-files "") ++(define m4-pcbconfdir "@pcb_confdir@") ;; To emulate popen. Guileish again. ; Needed after guile ver. 1.3.2. To save 1.3a users, wrap it in. -@@ -150,7 +151,7 @@ - ;; Original pipe command commented out by AVH (bugfix by Rich Walker) - ;; (let ((pipe (open-output-pipe (string-append "m4 " *m4-pcbdir* "/common.m4 - >> " output-filename)))) - ;; Fixed pipe command (AVH 1/27/02) -- (let ((pipe (open-output-pipe (string-append "m4 -d -I" *m4-pcbdir* " " *m4-pcbdir* "/common.m4 - >> " output-filename)))) -+ (let ((pipe (open-output-pipe (string-append "gm4 -d -I" *m4-pcbdir* " -I" *m4-pcbconfdir* " -I$HOME/.pcb -I. " *m4-pcbdir* "/common.m4 - >> " output-filename)))) +@@ -149,6 +150,7 @@ + ;; pipe with the macro define in pcb program + (let ((pipe (open-output-pipe (string-append + m4-command " -d -I. -I" m4-pcbdir " " ++ " -I " m4-pcbconfdir " -I$HOME/.pcb -I. " + m4-pcbdir "/common.m4 " m4-files " - >> " + output-filename)))) - - ;; packages is a list with the different refdes value diff --git a/cad/gnetlist/patches/patch-ac b/cad/gnetlist/patches/patch-ac new file mode 100644 index 00000000000..3d5afa0f9aa --- /dev/null +++ b/cad/gnetlist/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.3 2004/03/05 13:03:48 dmcmahill Exp $ + +--- scheme/gnet-cascade.scm.orig Sun Jan 4 03:50:03 2004 ++++ scheme/gnet-cascade.scm +@@ -76,7 +76,7 @@ + (caadr sourcenet) + ) + ) +- (cascade:write-source2 port (cdr pkgs) ) ++ (cascade:write-source port (cdr pkgs) ) + ) + ) + ;; the list of packages is now empty diff --git a/cad/gschem/Makefile b/cad/gschem/Makefile index 269d0897819..1e77e8fda82 100644 --- a/cad/gschem/Makefile +++ b/cad/gschem/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.26 2004/02/23 02:59:44 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.27 2004/03/05 13:03:48 dmcmahill Exp $ # DISTNAME= geda-gschem-${PKGVERSION} PKGNAME= gschem-${PKGVERSION} -PKGREVISION= 2 CATEGORIES= cad MASTER_SITES= ftp://ftp.geda.seul.org/pub/geda/devel/${PKGVERSION}/ \ ftp://ieee.ing.uniroma1.it/pub/geda/devel/${PKGVERSION}/ \ diff --git a/cad/gschem/PLIST b/cad/gschem/PLIST index 321a1503307..3a0d8c974c7 100644 --- a/cad/gschem/PLIST +++ b/cad/gschem/PLIST @@ -1,6 +1,7 @@ -@comment $NetBSD: PLIST,v 1.10 2004/01/12 11:22:12 seb Exp $ +@comment $NetBSD: PLIST,v 1.11 2004/03/05 13:03:48 dmcmahill Exp $ bin/gschem man/man1/gschem.1 +share/doc/geda-doc/man/gschem.html share/gEDA/bitmap/gschem-bus.xpm share/gEDA/bitmap/gschem-comp.xpm share/gEDA/bitmap/gschem-copy.xpm @@ -32,5 +33,7 @@ ${PKGLOCALEDIR}/locale/nl_NL/LC_MESSAGES/geda-gschem.mo ${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/geda-gschem.mo ${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/geda-gschem.mo @dirrm share/gEDA/bitmap +@unexec ${RMDIR} %D/share/doc/geda-doc/man 2>/dev/null || ${TRUE} +@unexec ${RMDIR} %D/share/doc/geda-doc 2>/dev/null || ${TRUE} @unexec ${RMDIR} %D/share/gEDA/scheme 2>/dev/null || ${TRUE} @unexec ${RMDIR} %D/share/gEDA 2>/dev/null || ${TRUE} diff --git a/cad/gschem/distinfo b/cad/gschem/distinfo index ad3f5699376..d2b7da0f7ca 100644 --- a/cad/gschem/distinfo +++ b/cad/gschem/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.9 2003/09/10 23:43:36 dmcmahill Exp $ +$NetBSD: distinfo,v 1.10 2004/03/05 13:03:48 dmcmahill Exp $ -SHA1 (geda/geda-gschem-20030901.tar.gz) = 908449c72c01a157f588c22fc3a95e96799af4ef -Size (geda/geda-gschem-20030901.tar.gz) = 1377117 bytes +SHA1 (geda/geda-gschem-20040111.tar.gz) = 5a27a14ffd04821a2f262960b4992f181709cfee +Size (geda/geda-gschem-20040111.tar.gz) = 1433206 bytes SHA1 (patch-ab) = b5806b57edd1d5ba3159c4f63a1b1c6678cedaec diff --git a/cad/gsymcheck/Makefile b/cad/gsymcheck/Makefile index 3a0544821bf..a5ccccde543 100644 --- a/cad/gsymcheck/Makefile +++ b/cad/gsymcheck/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.21 2004/02/23 04:35:19 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.22 2004/03/05 13:03:48 dmcmahill Exp $ # DISTNAME= geda-gsymcheck-${PKGVERSION} PKGNAME= gsymcheck-${PKGVERSION} -PKGREVISION= 2 CATEGORIES= cad MASTER_SITES= ftp://ftp.geda.seul.org/pub/geda/devel/${PKGVERSION}/ \ ftp://ieee.ing.uniroma1.it/pub/geda/devel/${PKGVERSION}/ \ diff --git a/cad/gsymcheck/PLIST b/cad/gsymcheck/PLIST index adec3ad7847..c9bc00d9deb 100644 --- a/cad/gsymcheck/PLIST +++ b/cad/gsymcheck/PLIST @@ -1,4 +1,7 @@ -@comment $NetBSD: PLIST,v 1.1 2001/11/01 00:48:23 zuntum Exp $ +@comment $NetBSD: PLIST,v 1.2 2004/03/05 13:03:48 dmcmahill Exp $ bin/gsymcheck man/man1/gsymcheck.1 +share/doc/geda-doc/man/gsymcheck.html share/gEDA/system-gsymcheckrc +@unexec ${RMDIR} %D/share/doc/geda-doc/man 2>/dev/null || ${TRUE} +@unexec ${RMDIR} %D/share/doc/geda-doc 2>/dev/null || ${TRUE} diff --git a/cad/gsymcheck/distinfo b/cad/gsymcheck/distinfo index f9f50a1e63d..15dfa4486be 100644 --- a/cad/gsymcheck/distinfo +++ b/cad/gsymcheck/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2003/09/10 23:43:37 dmcmahill Exp $ +$NetBSD: distinfo,v 1.9 2004/03/05 13:03:48 dmcmahill Exp $ -SHA1 (geda/geda-gsymcheck-20030901.tar.gz) = 2ff9144d290a200fd962c7d1a2b770da7097c14f -Size (geda/geda-gsymcheck-20030901.tar.gz) = 102523 bytes +SHA1 (geda/geda-gsymcheck-20040111.tar.gz) = 2d75431d6efe63aa447c28fb3bc7a66739911244 +Size (geda/geda-gsymcheck-20040111.tar.gz) = 130161 bytes diff --git a/cad/libgeda/Makefile b/cad/libgeda/Makefile index 0bd011a8c0b..ddd68b3a319 100644 --- a/cad/libgeda/Makefile +++ b/cad/libgeda/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.27 2004/02/22 20:39:18 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.28 2004/03/05 13:03:48 dmcmahill Exp $ # DISTNAME= libgeda-${PKGVERSION} -PKGREVISION= 2 CATEGORIES= cad MASTER_SITES= ftp://ftp.geda.seul.org/pub/geda/devel/${PKGVERSION}/ \ ftp://ieee.ing.uniroma1.it/pub/geda/devel/${PKGVERSION}/ \ diff --git a/cad/libgeda/PLIST b/cad/libgeda/PLIST index 2584decc90f..2c0f62cb39e 100644 --- a/cad/libgeda/PLIST +++ b/cad/libgeda/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2004/01/12 11:22:12 seb Exp $ +@comment $NetBSD: PLIST,v 1.8 2004/03/05 13:03:48 dmcmahill Exp $ include/libgeda/colors.h include/libgeda/defines.h include/libgeda/funcs.h @@ -10,7 +10,7 @@ include/libgeda/struct.h lib/libgeda.a lib/libgeda.la lib/libgeda.so -lib/libgeda.so.19 -lib/libgeda.so.19.0 +lib/libgeda.so.20 +lib/libgeda.so.20.0 lib/pkgconfig/libgeda.pc @dirrm include/libgeda diff --git a/cad/libgeda/buildlink2.mk b/cad/libgeda/buildlink2.mk index 1fc945bd399..ea38f7e6908 100644 --- a/cad/libgeda/buildlink2.mk +++ b/cad/libgeda/buildlink2.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink2.mk,v 1.6 2004/02/20 21:51:25 dmcmahill Exp $ +# $NetBSD: buildlink2.mk,v 1.7 2004/03/05 13:03:48 dmcmahill Exp $ # # This Makefile fragment is included by packages that use libgeda. # @@ -9,7 +9,7 @@ LIBGEDA_BUILDLINK2_MK= # defined BUILDLINK_PACKAGES+= libgeda -BUILDLINK_DEPENDS.libgeda?= libgeda-20030901{,nb[0-9]*} +BUILDLINK_DEPENDS.libgeda?= libgeda-20040111{,nb[0-9]*} BUILDLINK_PKGSRCDIR.libgeda?= ../../cad/libgeda EVAL_PREFIX+= BUILDLINK_PREFIX.libgeda=libgeda diff --git a/cad/libgeda/buildlink3.mk b/cad/libgeda/buildlink3.mk index 10e8393a184..db4921b2eeb 100644 --- a/cad/libgeda/buildlink3.mk +++ b/cad/libgeda/buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.1 2004/02/23 23:51:52 dmcmahill Exp $ +# $NetBSD: buildlink3.mk,v 1.2 2004/03/05 13:03:48 dmcmahill Exp $ # # This Makefile fragment is included by packages that use libgeda. # @@ -14,13 +14,13 @@ BUILDLINK_DEPENDS+= libgeda .if !empty(LIBGEDA_BUILDLINK3_MK:M+) BUILDLINK_PACKAGES+= libgeda -BUILDLINK_DEPENDS.libgeda+= libgeda-20030901{,nb[0-9]*} +BUILDLINK_DEPENDS.libgeda+= libgeda-20040111{,nb[0-9]*} BUILDLINK_PKGSRCDIR.libgeda?= ../../cad/libgeda .include "../../devel/libstroke/buildlink3.mk" .include "../../graphics/libgdgeda/buildlink3.mk" .include "../../lang/guile/buildlink3.mk" -#.include "../../x11/gtk2/buildlink3.mk" +.include "../../x11/gtk2/buildlink3.mk" .endif # LIBGEDA_BUILDLINK3_MK diff --git a/cad/libgeda/distinfo b/cad/libgeda/distinfo index 437feda937c..0b801854610 100644 --- a/cad/libgeda/distinfo +++ b/cad/libgeda/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2003/09/10 23:43:37 dmcmahill Exp $ +$NetBSD: distinfo,v 1.9 2004/03/05 13:03:48 dmcmahill Exp $ -SHA1 (geda/libgeda-20030901.tar.gz) = 53dd0cc4b89010cb0a3fb8da3419488eae15669c -Size (geda/libgeda-20030901.tar.gz) = 846307 bytes +SHA1 (geda/libgeda-20040111.tar.gz) = fefc54a11e0fdfc2daea93ec4b117843f67f2c78 +Size (geda/libgeda-20040111.tar.gz) = 966834 bytes |