about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-01-06 16:45:35 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-01-06 16:45:35 +0000
commitacf4d90409f88612d69b439a33bc75d3a8032bdb (patch)
tree2bf2b8daf05fdd4e2a0dce37ab88e7d31a64dfcc
parent3f4d8438d5ef2dc79dc8118aa2f3250fe05b4d3b (diff)
downloadnetpbm-mirror-acf4d90409f88612d69b439a33bc75d3a8032bdb.tar.gz
netpbm-mirror-acf4d90409f88612d69b439a33bc75d3a8032bdb.tar.xz
netpbm-mirror-acf4d90409f88612d69b439a33bc75d3a8032bdb.zip
Release 10.65.03
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@2108 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--GNUmakefile2
-rw-r--r--doc/HISTORY7
-rwxr-xr-xtest/ps-roundtrip.test6
3 files changed, 11 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 035a8ed5..864adea6 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -243,6 +243,8 @@ init_package:
 	$(INSTALL) -c -m 664 $(SRCDIR)/buildtools/README.pkg $(PKGDIR)/README
 	$(INSTALL) -c -m 664 $(SRCDIR)/buildtools/config_template \
 	  $(PKGDIR)/config_template
+	$(INSTALL) -c -m 664 $(SRCDIR)/buildtools/pkgconfig_template \
+	  $(PKGDIR)/pkgconfig_template
 
 advise_installnetpbm:
 	@echo
diff --git a/doc/HISTORY b/doc/HISTORY
index a6253515..54796ff1 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,7 +4,12 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
-13.12.31 BJH  Release 10.65.02
+14.01.06 BJH  Release 10.65.03
+
+              test: Add -portrait to invocations of pstopnm in order to get
+              proper round trips.
+
+14.01.01 BJH  Release 10.65.02
 
               pnmmargin: fix for size 0 and superfluous "unexpected operator" 
               message with size != 0.  Introduced in 10.42.
diff --git a/test/ps-roundtrip.test b/test/ps-roundtrip.test
index b7aa816c..92925064 100755
--- a/test/ps-roundtrip.test
+++ b/test/ps-roundtrip.test
@@ -12,7 +12,7 @@ for flag in "" "-ps" "-rle" "-ps -ascii" "-ps -flate"
     > ${tmpdir}/testimg.ps
   xysize1=`awk  '/BoundingBox/ {print "-xsize="$4,"-ysize="$5}' \
     ${tmpdir}/testimg.ps` 
-  ${PBM_TESTPREFIX}pstopnm -xborder=0 -yborder=0 $xysize1 -stdout \
+  ${PBM_TESTPREFIX}pstopnm -portrait -xborder=0 -yborder=0 $xysize1 -stdout \
     -quiet ${tmpdir}/testimg.ps | \
     ${PBM_BINPREFIX}pnmtopnm | cksum
   done
@@ -34,7 +34,7 @@ for flag in "" "-rle" "-ps -rle -ascii" \
     ${flag} ${tmpdir}/t.pbm  > ${tmpdir}/testgrid.ps &&
   xysize2=`awk  '/BoundingBox/ {print "-xsize="$4,"-ysize="$5}' \
     ${tmpdir}/testgrid.ps`
-  ${PBM_TESTPREFIX}pstopnm -xborder=0 -yborder=0 $xysize2 -stdout \
+  ${PBM_TESTPREFIX}pstopnm -portrait -xborder=0 -yborder=0 $xysize2 -stdout \
     -quiet ${tmpdir}/testgrid.ps -pbm | \
     ${PBM_BINPREFIX}pnmtopnm | cksum
   done
@@ -60,7 +60,7 @@ ${PBM_TESTPREFIX}pnmtops -nocenter -equalpixels -dpi 72 -noturn -setpage \
   ${flag}  > ${tmpdir}/testimg5.ps
 xysize3=`awk  '/BoundingBox/ {print "-xsize="$4,"-ysize="$5 ; exit}' \
   ${tmpdir}/testimg5.ps`
-${PBM_TESTPREFIX}pstopnm -xborder=0 -yborder=0 $xysize3 \
+${PBM_TESTPREFIX}pstopnm -portrait -xborder=0 -yborder=0 $xysize3 \
     -stdout  ${tmpdir}/testimg5.ps | \
   ${PBM_BINPREFIX}pnmtopnm | cksum
   done