Hello community,

here is the log from the commit of package xpdf-poppler for openSUSE:Factory 
checked in at 2011-12-05 12:46:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xpdf-poppler (Old)
 and      /work/SRC/openSUSE:Factory/.xpdf-poppler.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xpdf-poppler", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/xpdf-poppler/xpdf-poppler.changes        
2011-10-19 00:56:25.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.xpdf-poppler.new/xpdf-poppler.changes   
2011-12-05 12:46:28.000000000 +0100
@@ -1,0 +2,12 @@
+Thu Dec  1 16:05:46 UTC 2011 - [email protected]
+
+- add automake as buildrequire to avoid implicit dependency
+
+-------------------------------------------------------------------
+Thu Oct 27 09:41:50 UTC 2011 - [email protected]
+
+- take psDuplex parameter into account and take no as the default
+  (documented so in man page) [bnc#681511] comment 34-36
+  * ps-duplex-parameter.patch
+
+-------------------------------------------------------------------

Old:
----
  xpdf-poppler-man-rc.patch

New:
----
  xpdf-poppler-ps-duplex-parameter.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xpdf-poppler.spec ++++++
--- /var/tmp/diff_new_pack.offB9B/_old  2011-12-05 12:46:30.000000000 +0100
+++ /var/tmp/diff_new_pack.offB9B/_new  2011-12-05 12:46:30.000000000 +0100
@@ -15,14 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:           xpdf-poppler
-BuildRequires:  gcc-c++ ghostscript-fonts-std libpoppler-devel openmotif-devel 
update-desktop-files xorg-x11
-License:        GPLv2
+BuildRequires:  automake
+BuildRequires:  gcc-c++
+BuildRequires:  ghostscript-fonts-std
+BuildRequires:  libpoppler-devel
+BuildRequires:  openmotif-devel
+BuildRequires:  update-desktop-files
+BuildRequires:  xorg-x11
+License:        GPL-2.0
 Group:          Productivity/Publishing/PDF
 Version:        3.02.20110922
-Release:        18
+Release:        0
 Requires:       ghostscript-fonts-std
 Summary:        A PDF File Viewer for the X Window System
 Source0:        xpdf-poppler.tar.bz2
@@ -34,7 +38,7 @@
 Patch5:         %{name}-cut-and-paste-default-output-encoding.patch
 Patch6:         %{name}-search-non-ascii.patch
 Patch7:         %{name}-outline-when-needed.patch
-Patch8:         %{name}-man-rc.patch
+Patch8:         %{name}-ps-duplex-parameter.patch
 Url:            http://www.foolabs.com/xpdf/
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Obsoletes:      xpdf <= 3.02
@@ -58,8 +62,8 @@
 %patch8 -p1
 
 %build
-export CXXFLAGS="$RPM_OPT_FLAGS -O0"
-export CFLAGS="$RPM_OPT_FLAGS -O0"
+export CXXFLAGS="$RPM_OPT_FLAGS"
+export CFLAGS="$RPM_OPT_FLAGS"
 ./autogen.sh
 %configure --docdir=%{_docdir}/%{name}
 make

++++++ xpdf-poppler-ps-duplex-parameter.patch ++++++
Index: xpdf-poppler/XPDFViewer.cc
===================================================================
--- xpdf-poppler.orig/XPDFViewer.cc
+++ xpdf-poppler/XPDFViewer.cc
@@ -3687,7 +3687,7 @@ void XPDFViewer::printPrintCbk(Widget wi
   {
     psOut = new PSOutputDev(psFileName->getCString(), doc, doc->getXRef(),
           doc->getCatalog(), NULL, firstPage, lastPage,
-          psModePS);
+          psModePS, -1, -1, globalParamsGUI->getPSDuplex());
     if (psOut->isOk()) {
       doc->displayPages(psOut, firstPage, lastPage, 72, 72,
             0, true, globalParamsGUI->getPSCrop(), false);
@@ -3732,7 +3732,7 @@ void XPDFViewer::printPrintCbk(Widget wi
       for (i=beginPage;; i+=step)
       {
         psOut = new PSOutputDev(psFileName->getCString(), doc, doc->getXRef(),
-              doc->getCatalog(), NULL, i, i, psModePS);
+              doc->getCatalog(), NULL, i, i, psModePS, -1, -1, 
globalParamsGUI->getPSDuplex());
         if (psOut->isOk()) {
           doc->displayPages(psOut, i, i, 72, 72,
                 0, true, globalParamsGUI->getPSCrop(), false);

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to