Re: gEDA-user: Printing schematics

2008-01-31 Thread Ian Chapman
Hi, almost thee. My Makefile generated all the dot.ps files like it should. I generated all the dot.pdf files one at a time using ps2pdf and they are really fine looking schematics. It failed to generate a schematic_all_pages.ps file and went off course from then on. Regards Ian. Make e

Re: gEDA-user: Printing schematics

2008-01-31 Thread Peter Clifton
On Thu, 2008-01-31 at 16:12 -0500, Ian Chapman wrote: > Gee thanks guys. I now understand a bit about make and makefiles. I > guess when I tried to install gEDA from the tarball if you remember it > stopped as it could not find a directory. The gschem worked okay > invoked from a terminal and I

Re: gEDA-user: Printing schematics

2008-01-31 Thread Ian Chapman
Gee thanks guys. I now understand a bit about make and makefiles. I guess when I tried to install gEDA from the tarball if you remember it stopped as it could not find a directory. The gschem worked okay invoked from a terminal and I have 13 pages so that was okay. I've even got as far as impor

Re: gEDA-user: Printing schematics

2008-01-31 Thread Levente
Hi, I use a modified version of this script, which just coppies the input to the ouptput when only one file is given. Enjoy... #!/usr/bin/perl # -*- perl -*- use Shell; if ($#ARGV == 0) { my $my_ps = shift; open(PS,$my_ps); while() { print $_; }

Re: gEDA-user: Printing schematics

2008-01-31 Thread DJ Delorie
> Hi DJ, Yes please I would like to have that script. Ian. #!/usr/bin/perl # -*- perl -*- $need_prolog = 1; $pageno = 0; for $ps (@ARGV) { open(PS, $ps); $print = $need_prolog ? 1 : 0; while () { if (/%%Page: \d/) { $pageno++; $_ = "%%Page: $pageno\

Re: gEDA-user: Printing schematics

2008-01-31 Thread DJ Delorie
> I guess I need to have "all:sheet01.pdf sheet02.pdf etc" somewhere? I guess > a file called rule? then typing %.pdf:%.ps "cr" "tab" "ps2pdf $< $@" > generates the pdf documents from ps documents? Search the web for a tutorial on Makefiles. They're ways of storing commands and dependencies in

Re: gEDA-user: Printing schematics

2008-01-31 Thread Peter Clifton
On Thu, 2008-01-31 at 10:33 -0500, Ian Chapman wrote: > I have a "psmerge" script that merges > schematic*.ps into a single *.ps if you need it. > > Hi DJ, Yes please I would like to have that script. Ian. sudo apt-get install psutils Gives a psmerge command on my system. -- Peter Clifton

Re: gEDA-user: Printing schematics

2008-01-31 Thread Ian Chapman
I have a "psmerge" script that merges schematic*.ps into a single *.ps if you need it. Hi DJ, Yes please I would like to have that script. Ian. ___ geda-user mailing list geda-user@moria.seul.org http://www.seul.org/cgi-bin/mailman/listinfo/geda-us

Re: gEDA-user: Printing schematics

2008-01-31 Thread Ian Chapman
___(Below this line) all: schematic1.pdf schematic2.pdf schematic3.pdf <--- (List your dependencies (in this case outputs) for "all" here) == I guess I need to have "all:sheet01.pdf sheet02.pdf etc" somewhere? I guess a

Re: gEDA-user: Printing schematics

2008-01-31 Thread Peter Clifton
On Wed, 2008-01-30 at 23:24 -0500, Ian Chapman wrote: > I did what JD said we should do. File/Write-image to encaplulated > postscript. That worked fine and I clicked on the dot.eps file and it > looks fine using Evince Document Viewer (ubuntu default I guess) but > printing this to pdf I can on

Re: gEDA-user: Tarball leftovers

2008-01-31 Thread Peter Clifton
On Wed, 2008-01-30 at 23:12 -0500, Ian Chapman wrote: > Strange, I am not able to remover all the tarball stuff. I have > Geda-gschem-1.2.0/src empty and > libgeda-1.2.1/scr also empty. "find Geda-gschem-1.2.0" or "ls -a Geda-gschem-1.2.0/src" There is probably a hidden file or directory. Si