summaryrefslogtreecommitdiff
path: root/cad
AgeCommit message (Collapse)AuthorFilesLines
2007-11-17Some packages need lex and yacc. Patch by Aleksey Cheusov viarillig2-4/+4
pkgsrc-users.
2007-11-15update to gwave-20060606dmcmahill14-675/+28
Most of the previous pkgsrc patches have been incorporated upstream (yay!). New in 20060606 - ?? New in 20051222 - full-height vertical scrollbar appears if the total height of all panels becomes larger than the window. - new panel type "jumbo" stays larger even when things get crowded - most deprecated guile calls removed. Guile 1.6 or later is now required. New in 20050928 - ALPHA RELEASE: may crash. do not rely on for production use. - handling of multi-sweep datafiles - vertical scrollbars on label/measure area in each wavepanel make handling large numbers of waveforms easier. New in 20031202 - Got docstring extraction from C source to .txt files in doc directory working again - applied submitted patch that cleans up warnings from gcc3 about multiline text strings in C code New in 20030917 - bugfixes to make the new print/plot stuff work better - path to working gnu graph found by configure is passed to scheme code
2007-10-25* If PLIST_SRC is explicitly set to an empty value in a package Makefile,jlam4-8/+4
then automatically generate a PLIST that says "${PKGNAME} has no files". * If PLIST_SRC and GENERATE_PLIST are not set in a package Makefile, and no PLIST files exist, then fail during the package build with PKG_FAIL_REASON. * Remove "intentionally empty" PLISTs again. Now, the easy way to say that a package installs no files is to just add the following to the package Makefile: PLIST_SRC= # empty
2007-10-25Re-add "intentionally empty" PLISTs for meta-packages and other packagesjlam2-0/+4
that directly manipulate empty PLISTs. Modify plist/plist.mk so that if the PLIST files are missing and no GENERATE_PLIST is defined, then the package fails to build.
2007-10-25Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mkjlam2-2/+0
can handle packages having no PLIST files.
2007-10-09Remove trailing spaces.martti1-2/+2
2007-10-05Use PTHREAD_AUTO_VARS for platforms where thread library != -lpthread.joerg1-1/+3
2007-10-02add missing -lmdmcmahill1-1/+3
2007-09-29Fixed gcc 4 error message.rillig2-1/+49
2007-09-23Update to gtkwave-3.1.1. The old 2.* branch is no longer being maintained.dmcmahill13-214/+51
There are a large number of changes in this update. Many bugs have been fixed, VCD writing has been improved, the build system has migrated to a fully autoconf/automake system from a partial gnu system. The code written as part of the 2007 Google summer of code has been incorporated which allows waveform reloading and provides the framework for further enhancements. For the complete set of changes, see CHANGELOG.TXT in the distribution file.
2007-09-13Update to pcb-20070912dmcmahill3-10/+51
======================================================================== Release Notes for PCB snapshot 20070912 ======================================================================== This release represents nearly 200 commits and as such this summary clearly is not complete. See the ChangeLog file for the complete list of changes. - Many many bug fixes. Too many to list. - Added keystone, C&K, Nichicon, and Optek footprint libraries - Add attribute editor to the GTK HID - Add a fileselect() function to the HID spec - Fix ps output with drill helper on - Add a visual indicater when elements are locked - Corrections to the manual - BOM can export in mm as well as mil - Fix a ps output bug with arcs - Fix some memory leaks found with Coverity - Added autoconf test for buggy versions of m4 - Fixed some footprint drill sizes - Add user customizable menus for the gtk HID. The gtk HID now is capable of reading the same format menu resource files as the lesstif HID. This represents significant rework of the menu code and menu callback code. - Added Center() action - Store the file format in the .pcb file. This will let pcb know when presented with a file which is too new. The code for checking the format was present in the prior snapshot. - Fix DRC checking of square pads to square pads - Added window panning/cursor warping - Add the ability to directly load a footprint from a file as if it were a complete layout. - Add a Popup() action
2007-08-23Allow a nicer syntax for expressing needing at least a certain versionjlam1-2/+2
of an emulated operating system. Instead of proliferating things like SUSE_VERSION_REQD, NETBSD_VERSION_REQD, SOLARIS_VERSION_REQD, etc., a package can say: EMUL_REQD= suse>=9.1 netbsd>=2.0 solaris>=10 all in one, succinct line.
2007-08-13Added mk/misc/category.mk, which contains the definitions that are onlyrillig1-2/+2
useful for category Makefiles, as opposed to bsd.pkg.subdir.mk, which is also relevant for the top-level directory. Adjusted the category Makefiles.
2007-08-11Add Python dependency, use tools for bash and REPLACE_BASH andjoerg1-15/+7
REPLACE_PYTHON. bump revision.
2007-08-08Don't use malloc.h.joerg11-1/+141
2007-08-05Don't use malloc.h.joerg2-1/+16
2007-08-01Don't use malloc.h.joerg7-1/+85
2007-07-29* Add new emulator framework in pkgsrc/mk/emulator that handles alljlam3-79/+34
binary-only packages that require binary "emulation" on the native operating system. Please see pkgsrc/mk/emulator/README for more details. * Teach the plist framework to automatically use any existing PLIST.${EMUL_PLATFORM} as part of the default PLIST_SRC definition. * Convert all of the binary-only packages in pkgsrc to use the emulator framework. Most of them have been tested to install and deinstall correctly. This involves the following cleanup actions: * Remove use of custom PLIST code and use PLIST.${EMUL_PLATFORM} more consistently. * Simplify packages by using default INSTALL and DEINSTALL scripts instead of custom INSTALL/DEINSTALL code. * Remove "SUSE_COMPAT32" and "PKG_OPTIONS.suse" from pkgsrc. Packages only need to state exactly which emulations they support, and the framework handles any i386-on-x86_64 or sparc-on-sparc64 uses. * Remove "USE_NATIVE_LINUX" from pkgsrc. The framework will automatically detect when the package is installing on Linux. Specific changes to packages include: * Bump the PKGREVISIONs for all of the suse100* and suse91* packages due to changes in the +INSTALL/+DEINSTALL scripts used in all of the packages. * Remove pkgsrc/emulators/suse_linux, which is unused by any packages. * cad/lc -- remove custom code to create the distinfo file for all supported platforms; just use "emul-fetch" and "emul-distinfo" instead. * lang/Cg-compiler -- install the shared libraries under ${EMULDIR} instead of ${PREFIX}/lib so that compiled programs will find the shared libraries. * mail/thunderbird-bin-nightly -- update to latest binary distributions for supported platforms. * multimedia/ns-flash -- update Linux version to 9.0.48 as the older version is no longer available for interactive fetch. * security/uvscan -- set LD_LIBRARY_PATH explicitly so that it's not necessary to install library symlinks into ${EMULDIR}/usr/local/lib. * www/firefox-bin-flash -- update Linux version to 9.0.48 as the older version is no longer available for interactive fetch.
2007-06-18Point at guile16-gtk instead of guile-gtk and the latter now buildsdmcmahill1-3/+3
against the guile-1.8.x series and gwave will not compile with guile newer than the 1.6.x series.
2007-06-08add missing file to PLISTdmcmahill2-2/+5
2007-06-03Remove dead mirror site. From Zafer Aydogan.wiz1-3/+2
2007-05-31update to 20070526dmcmahill22-94/+85
Release notes for the gEDA/gaf 20070526 snapshot Changes _________________________________________________________________ libgeda/gschem * libgeda's shared library version is now 29:0:0. * Added "recently used files" File menu option. Now you can open up files you used recently (and if you have a gafrc your components should be found too) and open those files up in a new gschem window. (Ivan Stankovic) * Merge of the noscreen branch (many changes). This branch removed all cached screen coordinates. Now all calculations are done in world coordinates and should yield some drawing improvements. End users should not notice any difference (other than the slight speed up). (Peter Clifton) * Many improvements to the "Write image..." dialog box in gschem. gschem can now export any image that gtk+ (gdk-pixbuf specifically) can write (png, jpg, ico, bmp, etc...). Libgd is no longer an optional dependency and cannot be used with libgeda/gschem. (Carlos Nieves Onega) * Improved the auto placing mechanism. One improvement (amongst others) is in the cases of: if the attribute overlap with pins (including pinnumbers), or the pin connection direction where a net is supposed to be drawn, then the attributes are moved automatically. (Carlos Nieves Onega) * A few improvements to the component place selector including adding ok button to hide the component insert dialog box). (Various) * Added items (links to the wiki and FAQ) to the gschem help menu. (Peter Brett) * Fixed a nasty bug that was causing random crashes with keymaps that did not have a valid keyval/keysym. (Peter Clifton) * Fixed the drawing of dotted arcs/circles when the dot spacing is too small to render. (Peter Clifton) * Fixed component selector filter to be case insensitive. (Carlos Nieves Onega) * Added PageUp and PageDown hotkeys to change pages in gschem. (Peter Brett) * Fixed the ordering of buttons in all gtk dialog boxes to be correct (based on what gtk+/gnome/desktop conventions). (Carlos Nieves Onega) * Added %%Orientation to DSC block in postscript output. (Mike Jarabek) * Fixed color printing of select objects (should not output the selected color). (Peter Clifton) * Added hotkeys to decrease and increase the snap grid spacing. (Carlos Nieves Onega and Peter Brett) * Improved keymap filling routines (Werner Hoch and Patrick Bernaud) * Fixed a couple of small memory leaks. (Ales Hvezda) * The usual slew of bug fixes by many individuals. * A bunch of code cleanup/fixes by various individuals. * Various language translations updated by various individuals. gnetlist * New gnetlist backends written: Calay and Osmond. (John Doty) * Moved the loading of scheme files using the "-l" command line before the schematics are loaded (this allows the scheme code to modify the various search paths). * Various improvements to the spice-sdb backend including the treatment of slotted parts (so that pins are emitted in pinseq order). (Stuart Brorson) * Added and improved a bunch of regression tests. The vast majority of these tests are now run during make distcheck. (Stuart Brorson and Ales Hvezda) * A few bugs fixed. (Various) gattrib * Added doxygen generated docs. (Stuart Brorson) * A bunch of bugs fixed. (Stuart Brorson and Peter Clifton) docs * Removed the html version of the gsch2pcb tutorial. Instead, the gsch2pcb tutorial is now part of the wiki thanks to several individuals (Patrick Doyle and Bogdan Petrisor). * Updated the wiki snapshot to the latest web wiki version. (Ales Hvezda) * Misc improvements to various wiki scripts. (Ales Hvezda) symbols * Added greek mu character. (Carlos Nieves Onega) * Added upper case greek omega character. (Jens Persson) gsymcheck * No significant changes. utils * Added refdes_renum test suite. (Dan McMahill and Stuart Brorson) * Incorporated --gentle into refdes_renum which doesn't overwrite refdes'es already numbered. (Stuart Brorson) * Moved gschemdoc to the gschem package. Bunch of improvements to the gschemdoc script related to finding local/remote documentation. (Carlos Nieves Onega) examples * Fixed automake infrastructure to install 2N3904 model for the TwoStageAmp example. (Stuart Brorson) For more a detailed changes, please look in the appropriate ChangeLogs in the source tarballs.
2007-05-21Change depdencies to be non-ambigious. Bump revision.joerg1-7/+7
2007-05-20Use a much less fancy dependency on bash. Bump revision.joerg1-2/+3
2007-05-13use guile-gtk instead of guile14-gtk. The latter is very old.dmcmahill1-3/+3
2007-05-12add missing lex/yacc to USE_TOOLS and fix a stupiddmcmahill4-7/+63
configure test that forces the name of LEX and YACC to be "flex" and "bison -y". The old test doesn't even allow a path name.
2007-05-09Remove myself as maintainer. I don't have the time or interest fordmcmahill1-2/+2
this one.
2007-05-09add and enable admsdmcmahill1-1/+2
2007-05-09import adms-2.2.5dmcmahill6-0/+66
adms is a code generator that converts electrical compact device models specified in high-level description language into ready-to-compile c code for the API of spice simulators. Based on transformations specified in xml language adms transforms Verilog-AMS code into other target languages.
2007-03-24Prepare for switching to NO_MTREE=yes.joerg1-1/+3
2007-03-12Bump PKGREVISION for cmake buildlink3.mk bump.wiz1-1/+2
XXX: I have to check vtk*'s PLISTs and will do so next, but this PKGREVISION bump is needed anyway.
2007-03-08Sort.wiz1-2/+2
2007-03-08Also expand X11BASE.joerg1-2/+2
2007-03-07Replaced sed(1) and mv(1) with the SUBST framework.rillig1-14/+9
2007-03-07Modular Xorg support. Make it actually use the wrapper framework.joerg4-30/+42
The build script overwrote PATH and didn't see the wrapper scripts for that reason.
2007-03-02no need to explicitly use -lpng, pkg-config --libs libpng takes care of thatdmcmahill2-4/+4
2007-03-02- don't overwrite LDFLAGS but rather append the stuff we need.dmcmahill3-11/+13
- add missing -lm (how did this work before?) - remove one last GNU make-ism since there is a portable way of doing it
2007-03-02Update to dinotrace-mode-9.3cdmcmahill2-8/+8
* Dinotrace 9.3c 1/2/2007 *** Add signed decimal radix. [by Uwe Bonnes] *** Builds now take place in "obj_dir" to keep them distinct from sources. **** Fix VCD files with 10 or 100 femtosecond resolution. **** Fix dinotrace.el complaint about bad verilog-mode.el version. [Joseph Holtgrefe] **** Fix core dump when no fonts are available. [Dmitri Belimov] * Dinotrace 9.3b 3/13/2006 *** Fix line number incrementing in Verilog errors. [Uwe Bonnes] * Dinotrace 9.3a 6/13/2005 *** Fix too small buttons under openmotif. *** Fix missing keyboard accelerators under openmotif. * Dinotrace 9.2b 5/03/2005 *** The default extension for Verilog dumps is now .vcd instead of .dmp. **** Fix traces containing only real numbers. [Vitor Antunes] **** Fix segfault when doing signal adds. [Guy Hutchinson]
2007-03-02Update to dinotrace-9.3cdmcmahill2-8/+8
* Dinotrace 9.3c 1/2/2007 *** Add signed decimal radix. [by Uwe Bonnes] *** Builds now take place in "obj_dir" to keep them distinct from sources. **** Fix VCD files with 10 or 100 femtosecond resolution. **** Fix dinotrace.el complaint about bad verilog-mode.el version. [Joseph Holtgrefe] **** Fix core dump when no fonts are available. [Dmitri Belimov] * Dinotrace 9.3b 3/13/2006 *** Fix line number incrementing in Verilog errors. [Uwe Bonnes] * Dinotrace 9.3a 6/13/2005 *** Fix too small buttons under openmotif. *** Fix missing keyboard accelerators under openmotif. * Dinotrace 9.2b 5/03/2005 *** The default extension for Verilog dumps is now .vcd instead of .dmp. **** Fix traces containing only real numbers. [Vitor Antunes] **** Fix segfault when doing signal adds. [Guy Hutchinson]
2007-03-02add and enable nelmadmcmahill1-1/+2
2007-03-02import nelma-3.0dmcmahill6-0/+139
Nelma is a (command line) tool for numerically calculating various electrical properties of printed circuit boards or similar objects composed of conductors and dielectrics (however code is optimized for circuit board-like geometry). It is currently capable of calculating capacitances between objects - nets on a PCB. It returns a spice-compatible description of an equivalent circuit of stray capacitances that can be for example used for more accurate circuit simulation. Alternatively it can also produce field data that can be plotted for example with Gnuplot. Support for calculating resistances existed for a while but was later removed because it didn't receive much testing. Nelma is available under the GNU General Public License version 2.
2007-03-01update to verilog-current-20070227dmcmahill2-6/+6
Release Notes for Icarus Verilog Snapshot 20070227 * Fix some problems with specify block parsing. Detect some cases that are parsed but not properly implemented yet and issue warnings or errors. Also fixed a few problems with inertial delay model timing. * Detect is some cases Verilog source errors that can be better reported to users. This includes more specific error messages for certain syntax errors. * Fix problems with overridden continuous assignments. * Hide bool types from logic type as far as VPI is concerned, for the sake of compatibility. * Fix a variety of code generator expression lifetime bugs that caused obscure (and wrong) output results in behavioral code. * iverilog-vpi uses the compiler selected at build time. * Rework handling of strings to handle escape sequences properly. * Fix some handling of real values in some expression types. * Get padding of sized, unsigned numbers when x or z are involved. * Many, many more misc. bug fixes. * Add an assert mechinism that improves usefulness of bug reports by reporting source file line numbers when available. * Compile fixes, using inttypes.h instead of stdint for portability. * Various spelling fixes.
2007-02-24enable sparc64, mipsel{,64}dmcmahill1-3/+5
2007-02-24fix WRKSRC and PLIST for x86_64dmcmahill1-2/+8
2007-02-24fix WRKSRC and PLIST for x86_64dmcmahill1-2/+2
2007-02-24fix permissions on the installed docs and examplesdmcmahill1-2/+5
2007-02-24add missing *-*-x86_64 to ONLY_FOR_PLATFORM and update distinfo with the latestdmcmahill2-6/+6
2007-02-24install the docs toodmcmahill2-3/+117
2007-02-23take a guess at the correct dependencies for NetBSD/x86_64dmcmahill1-1/+5
2007-02-23fix the list of suse pkgs we need on netbsd/i386dmcmahill1-2/+3