Subversion Repositories OpenARM Single-board Computer

Rev

Rev 252 | Blame | Compare with Previous | Last modification | View Log | RSS feed

;; This file may be used to print gschem schematics from the
;; command line.  Typical usage is:
;;
;;   gschem -p -o mysch.ps -s /path/to/this/file/print.scm mysch.sch
;;
;; The schematic in "mysch.sch" will be printed to the file "mysch.ps"
;;
;; documentation: less /etc/gEDA/system-gschemrc
;; documentation: less /user/share/gEDA/scheme/print.scm
;;

(log-window "later")

(output-type "limits")
(paper-size 16.54 11.69)
(output-text "ps")
(output-type "extents")
(output-orientation "landscape")
(output-color "enabled")

; You need call this after you call any rc file function
(gschem-use-rc-values)

; filename is specified on the command line
(gschem-postscript "dummyfilename")

(gschem-exit)