[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: gaf.git: branch: master updated (1.7.1-20110619-274-g9497429)



The branch, master has been updated
       via  9497429a24e873530186a9b17cd82d295b44ac32 (commit)
       via  049b297aaf13aee06ea3c0246a8cd2401cb5b65e (commit)
      from  7d0ed87ac60ad394aee2dd35f81e9f17336b51ee (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


=========
 Summary
=========

 utils/docs/Makefile.am |    4 +-
 utils/docs/olib.1      |   86 ++++++++++++++++++++++++++++++++++++++++++++++++
 utils/docs/tragesym.1  |   50 ++++++++++++++++++++++++++++
 3 files changed, 138 insertions(+), 2 deletions(-)
 create mode 100644 utils/docs/olib.1
 create mode 100644 utils/docs/tragesym.1


=================
 Commit Messages
=================

commit 9497429a24e873530186a9b17cd82d295b44ac32
Author: Gareth Edwards <gareth@xxxxxxxxxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    Add man page for olib(1).
    
    Added man page for olib based on the README.olib, added HTML versions
    to build targets and gitignore.
    
    Affects-bug: lp-698849

:100644 100644 6b83896... 4286d77... M	utils/docs/Makefile.am
:000000 100644 0000000... c8dc4ff... A	utils/docs/olib.1

commit 049b297aaf13aee06ea3c0246a8cd2401cb5b65e
Author: Gareth Edwards <gareth@xxxxxxxxxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    Add man page for tragesym(1).
    
    Create a new man page for tragesym starting from the text in
    README.tragesym.
    
    Affects-bug: lp-698849

:100644 100644 fd12694... 6b83896... M	utils/docs/Makefile.am
:000000 100644 0000000... be45a32... A	utils/docs/tragesym.1

=========
 Changes
=========

commit 9497429a24e873530186a9b17cd82d295b44ac32
Author: Gareth Edwards <gareth@xxxxxxxxxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    Add man page for olib(1).
    
    Added man page for olib based on the README.olib, added HTML versions
    to build targets and gitignore.
    
    Affects-bug: lp-698849

diff --git a/utils/docs/Makefile.am b/utils/docs/Makefile.am
index 6b83896..4286d77 100644
--- a/utils/docs/Makefile.am
+++ b/utils/docs/Makefile.am
@@ -15,7 +15,7 @@ else
 	@echo 'The documentation cannot be built from the sources.'
 endif
 
-dist_man_MANS = gsch2pcb.1 grenum.1 gxyrs.1 pads_backannotate.1 \
+dist_man_MANS = gsch2pcb.1 grenum.1 gxyrs.1 olib.1 pads_backannotate.1 \
 	pcb_backannotate.1 refdes_renum.1 schdiff.1 sw2asc.1 tragesym.1
 
 
diff --git a/utils/docs/olib.1 b/utils/docs/olib.1
new file mode 100644
index 0000000..c8dc4ff
--- /dev/null
+++ b/utils/docs/olib.1
@@ -0,0 +1,86 @@
+.TH olib 1 "June 19th, 2011" "gEDA Project" 1.7.1.20110619
+
+.SH NAME
+.B olib
+\- OrCAD(tm) library part to gEDA .sym converter
+
+.SH SYNOPSIS
+.B olib
+.I filename prefix
+
+.SH DESCRIPTION
+.B olib
+is a simple automated converter from OrCAD v4 (in SDT version 1.10)
+ASCII parts library to gEDA component definition in .sym format
+file. It allow an initial dumb conversion file to file, with one lib
+converted in multiple .sym file, one per component in library.  The
+converted component file may need a little editing to become usable,
+but in some case needs no editing at all.
+.B olib
+will write one file per part in the current directory.
+.PP
+.B olib
+will:
+.IP \(bu
+Convert box-shaped components in OrCAD lib to .sym file in gEDA format;
+.IP \(bu
+Place pin, pin name, pin type, pin number;
+.IP \(bu
+Place logic bubble when needed (DOT attribute in OrCAD (TM), for logic
+negation);
+.IP \(bu
+Place clock arrow when needed (CLK attribute);
+.IP \(bu
+Place reference, from REFERENCE statement in OrCAD;
+.IP \(bu
+Place part name as label and device name as attribute;
+.IP \(bu
+Parse and draw non-box component, with LINE, ARC, CIRCLE and TEXT;
+.IP \(bu
+Add power pin as invisible net=name:pin attribute when detected (in OrCAD,
+invisible pin has typically T0 and B0 coords);
+.IP \(bu
+Through a command line switch, hides pin name in VECTOR drawn symbols,
+for a better appearance;
+.IP \(bu
+Write both new (post-20020825) and old (20020209) file format for .sym files
+through a switch on the command line;
+.PP
+.SH OPTIONS
+.TP
+filename
+The OrCAD library to convert. This should have been
+previously converted to ASCII format using the OrCAD 'decomp' utility.
+.TP
+prefix
+The prefix used to generate the filenames of the output gEDA symbols e.g.
+prefix-partname-1.sym
+.SH LIMITATIONS
+.B olib
+has the following limitations:
+.IP \(bu
+.B olib
+will not parse and store alternate component drawing (statement CONVERT in
+OrCAD);
+.IP \(bu
+.B olib
+will not handle drawing part using VECTOR list from another part (statement
+VECTOR 'partname' in OrCAD);
+.IP \(bu
+.B olib
+will not handle FILL statement in VECTOR statement (no equivalent in gEDA);
+.IP \(bu
+.B olib
+will not handle multiple part in one package (slots in gEDA).
+.SH AUTHOR
+Mario Pascucci <m.pas@xxxxxxxxx>
+.SH SEE ALSO
+.BR gschem (1)
+.SH COPYRIGHT
+.nf
+Copyright \(co 1999-2011 gEDA Contributors.  License GPLv2+: GNU GPL
+version 2 or later.  Please see the `COPYING' file included with this
+program for full details.
+.PP
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.

commit 049b297aaf13aee06ea3c0246a8cd2401cb5b65e
Author: Gareth Edwards <gareth@xxxxxxxxxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    Add man page for tragesym(1).
    
    Create a new man page for tragesym starting from the text in
    README.tragesym.
    
    Affects-bug: lp-698849

diff --git a/utils/docs/Makefile.am b/utils/docs/Makefile.am
index fd12694..6b83896 100644
--- a/utils/docs/Makefile.am
+++ b/utils/docs/Makefile.am
@@ -16,7 +16,7 @@ else
 endif
 
 dist_man_MANS = gsch2pcb.1 grenum.1 gxyrs.1 pads_backannotate.1 \
-	pcb_backannotate.1 refdes_renum.1 schdiff.1 sw2asc.1
+	pcb_backannotate.1 refdes_renum.1 schdiff.1 sw2asc.1 tragesym.1
 
 
 # Rules for converting man->html
diff --git a/utils/docs/tragesym.1 b/utils/docs/tragesym.1
new file mode 100644
index 0000000..be45a32
--- /dev/null
+++ b/utils/docs/tragesym.1
@@ -0,0 +1,50 @@
+.TH tragesym 1 "June 19th, 2011" "gEDA project" 1.7.1.20110619
+
+.SH NAME
+tragesym \- create gEDA symbols from structured textfiles
+
+.SH SYNOPSIS
+.B tragesym
+.I sourcefile symbolfile
+
+.SH DESCRIPTION
+.B tragesym
+creates gschem symbols from structured textfiles.
+.PP
+.B tragesym
+can:
+.IP \(bu
+create pins and arrange their elements (clocksign, dot, type, pinnumber,
+label);
+.IP \(bu
+sort pins alphabetical and numerical;
+.IP \(bu
+swap words of pinlabels if wished;
+.IP \(bu
+draw negation lines on the labels (since version 0.0.9, gschem will do that);
+.IP \(bu
+rotate pinlabels if wished;
+.IP \(bu
+do some syntax check to the input file.
+.PP
+.B tragesym
+requires python.
+.SH TUTORIAL
+There is a tutorial on the use of
+.B tragesym
+at:
+.IP
+http://geda.seul.org/wiki/geda:tragesym_tutorial
+.SH AUTHOR
+Werner Hoch <werner.ho@xxxxxx>
+.SH SEE ALSO
+.BR gschem (1),
+.BR pcb (1)
+.SH COPYRIGHT
+.nf
+Copyright \(co 1999-2011 gEDA Contributors.  License GPLv2+: GNU GPL
+version 2 or later.  Please see the `COPYING' file included with this
+program for full details.
+.PP
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs