Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 scribus (1.4.2.dfsg+r18267-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * debian/patch/qreal_double.patch: Avoid qreal/double clashes on ARM
     (imported from Ubuntu). (Closes: #707882)
Author: Mattia Rizzolo <mattia@mapreri.org>
Bug-Debian: http://bugs.debian.org/707882

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- scribus-1.4.2.dfsg+r18267.orig/scribus/pslib.cpp
+++ scribus-1.4.2.dfsg+r18267/scribus/pslib.cpp
@@ -653,8 +653,8 @@ void PSLib::PS_begin_page(Page* pg, Marg
 		PutStream(">> setpagedevice\n");
 	}
 	PutStream("save\n");
-	if(pg->PageOri == 1 && psExport)
-		PutStream("90 rotate 0 "+IToStr(qRound(maxBoxY))+" neg translate\n");
+	//if(pg->PageOri == 1 && psExport)
+	//	PutStream("90 rotate 0 "+IToStr(qRound(maxBoxY))+" neg translate\n");
   	PutStream("/DeviceCMYK setcolorspace\n");
 	PutStream(ToStr(bleedLeft+markOffs)+" "+ToStr(Options.bleeds.Bottom+markOffs)+" tr\n");
 	ActPage = pg;
@@ -679,8 +679,8 @@ void PSLib::PS_end_page()
 	double maxBoxX = ActPage->width()+bleedLeft+bleedRight+markOffs*2.0;
 	double maxBoxY = ActPage->height()+Options.bleeds.Bottom+Options.bleeds.Top+markOffs*2.0;
 	PutStream("gs\n");
-	if(ActPage->PageOri == 1 && psExport)
-		PutStream("90 rotate 0 "+IToStr(qRound(maxBoxY))+" neg translate\n");
+	//if(ActPage->PageOri == 1 && psExport)
+	//	PutStream("90 rotate 0 "+IToStr(qRound(maxBoxY))+" neg translate\n");
 	if ((Options.cropMarks) || (Options.bleedMarks) || (Options.registrationMarks) || (Options.colorMarks))
 	{
 		PutStream("gs\n");
