Hi Alex,

Am 31.01.2015 um 18:49 schrieb Alex Valavanis:
tags 758986 + moreinfo upstream
thanks

Dear Uwe,

I'm going through some old bug reports for the Inkscape package in
Debian, and I wonder if you could give a bit of feedback on this one
you filed some time ago:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758986

If possible, please could you attach the SVG file ('ruecken.svg') that
exposes the problem?

ruecken.svg (Rücken -> back (german) is attached. But the crash
happens with every SVG-file and german localisation. But I've
never tried other languages. But it works with LANG=C.

inkscape -z -f infile -P outfile.ps -> CRASH ... ed a few weeks
ago but will now work! IIRC in December it was still buggy.

LANG=C inkscape -z -f infile -P outfile.ps -> works

Have a look at the attached Makefile ...

I had yesterday minor problems, mainboard and OS-hdd passed away.
I cloned the old system on a new hdd an updated it. There was an
update of the localisation-files and now the problem seems to be
vanished. But I can't figure out the update that fixed this.

Bye
--
Uwe Borchert - Welfenstr. 30 - 76137 Karlsruhe
# Makefile for Postkarten
# --------------------------

SVGPRG=inkscape
# SVGPRG=sodipodi
VERSION=1.0

RM=rm -f

.SUFFIXES: .svg .eps .ps .pdf .png .zip

C1=21.25cm
C2=10.75cm
R1=0.25cm
R2=15.2cm

grafix = ruecken.ps a6aufa4.ps ruecken.pdf ruecken.eps
archiv = ruecken.zip
all:    $(grafix) $(archiv)
        
# PS-Files auf A4 montieren:
        
a6aufa4.ps:     Makefile ruecken.svg ruecken.ps
        pstops -pa4 
'4:0L@0.95($(C1),$(R1))+0L@0.95($(C2),$(R1))+0L@0.95($(C1),$(R2))+0L@0.95($(C2),$(R2))'
 ruecken.ps a6aufa4.ps

# PS-Files aus SVG:
        
.svg.ps:
        $(SVGPRG) -z -f $*.svg -T -P $*.ps

.ps.eps:
        ps2eps -f -s 14.8x10.5cm $*.ps
        
ruecken.png:    ruecken.svg ruecken.ps
        convert ruecken.ps ruecken.png

ruecken.zip:    $(grafix)
        zip $(archiv) * -x $(archiv)  a6aufa4.ps

# PS nach PDF konvertieren, allgemein:
        
ruecken.pdf:    a6aufa4.ps Makefile ruecken.svg ruecken.ps
        ps2pdf  -sPAPERSIZE=a4 a6aufa4.ps ruecken.pdf

# --- default clean up ---
clean:
        $(RM) $(archiv) *~

mrproper:
        $(RM) $(grafix) *~
        


Reply via email to