pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/inkscape Fixed "test ==".



details:   https://anonhg.NetBSD.org/pkgsrc/rev/dc007ee14e1c
branches:  trunk
changeset: 520311:dc007ee14e1c
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Thu Oct 19 06:19:18 2006 +0000

description:
Fixed "test ==".

diffstat:

 graphics/inkscape/distinfo         |   5 ++++-
 graphics/inkscape/patches/patch-ae |  13 +++++++++++++
 graphics/inkscape/patches/patch-af |  13 +++++++++++++
 graphics/inkscape/patches/patch-ag |  13 +++++++++++++
 4 files changed, 43 insertions(+), 1 deletions(-)

diffs (67 lines):

diff -r 71079aa12ea9 -r dc007ee14e1c graphics/inkscape/distinfo
--- a/graphics/inkscape/distinfo        Thu Oct 19 04:45:02 2006 +0000
+++ b/graphics/inkscape/distinfo        Thu Oct 19 06:19:18 2006 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.15 2006/10/06 20:29:11 adam Exp $
+$NetBSD: distinfo,v 1.16 2006/10/19 06:19:18 rillig Exp $
 
 SHA1 (inkscape-0.44.1.tar.gz) = 6e55d0cf9f4ef50aaca250de36cde33654fb180a
 RMD160 (inkscape-0.44.1.tar.gz) = 2781febf20e3fcc9e630328ee4ec18b7ddda2aeb
@@ -6,3 +6,6 @@
 SHA1 (patch-aa) = f690b21528e122bafaa86f8aefc63e98459a85c9
 SHA1 (patch-ac) = 17e0c058f54e862ad0d2f392b2856e4f3f48fc7b
 SHA1 (patch-ad) = 441a97c9e3da9b730f55b2bff1a483a51f285658
+SHA1 (patch-ae) = 2b3f06a545d3cf27f59d41619528c59ac142c758
+SHA1 (patch-af) = ff3388a3533fffd13cae78d6821a3b8dcaab83a2
+SHA1 (patch-ag) = a5f5f899d97f529a83f8814307df6f4e3eb20760
diff -r 71079aa12ea9 -r dc007ee14e1c graphics/inkscape/patches/patch-ae
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/graphics/inkscape/patches/patch-ae        Thu Oct 19 06:19:18 2006 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ae,v 1.1 2006/10/19 06:19:18 rillig Exp $
+
+--- packaging/macosx/Resources/bin/getdisplay.sh.orig  2006-09-06 07:41:47.000000000 +0200
++++ packaging/macosx/Resources/bin/getdisplay.sh       2006-10-19 08:13:34.000000000 +0200
+@@ -2,7 +2,7 @@
+ #
+ # Author: Aaron Voisine <aaron%voisine.org@localhost>
+ 
+-if [ "$DISPLAY"x == "x" ]; then
++if [ "$DISPLAY"x = "x" ]; then
+     echo :0 > /tmp/display.$UID
+ else
+     echo $DISPLAY > /tmp/display.$UID
diff -r 71079aa12ea9 -r dc007ee14e1c graphics/inkscape/patches/patch-af
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/graphics/inkscape/patches/patch-af        Thu Oct 19 06:19:18 2006 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-af,v 1.1 2006/10/19 06:19:18 rillig Exp $
+
+--- packaging/macosx/Resources/script.orig     2006-09-06 07:41:48.000000000 +0200
++++ packaging/macosx/Resources/script  2006-10-19 08:14:09.000000000 +0200
+@@ -17,7 +17,7 @@ open-x11 /tmp/getdisplay.sh || \
+ open -a XDarwin /tmp/getdisplay.sh || \
+ echo ":0" > /tmp/display.$UID
+ 
+-while [ "$?" == "0" -a ! -f /tmp/display.$UID ]; do
++while [ "$?" = "0" -a ! -f /tmp/display.$UID ]; do
+     sleep 1
+ done
+ export "DISPLAY=`cat /tmp/display.$UID`"
diff -r 71079aa12ea9 -r dc007ee14e1c graphics/inkscape/patches/patch-ag
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/graphics/inkscape/patches/patch-ag        Thu Oct 19 06:19:18 2006 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ag,v 1.1 2006/10/19 06:19:18 rillig Exp $
+
+--- share/extensions/ps2pdf.sh.orig    2006-09-06 07:43:07.000000000 +0200
++++ share/extensions/ps2pdf.sh 2006-10-19 08:15:03.000000000 +0200
+@@ -2,7 +2,7 @@
+ 
+ params=`grep "^%%DocumentMedia:" "$1" | head -n 1 | awk '{ if (NF==7) { if ($2!="plain") print "-sPAPERSIZE=" $2; else print "-dDEVICEWIDTHPOINTS=" $3 " -dDEVICEHEIGHTPOINTS=" $4; } }'`
+ 
+-if [ "x${params}x" == "xx" ]
++if [ "x${params}x" = "xx" ]
+ then 
+         params=`grep "^%%BoundingBox:" "$1" | head -n 1 | awk '{ if (NF==5) { print "-dDEVICEWIDTHPOINTS=" $4 " -dDEVICEHEIGHTPOINTS=" $5; } }'`
+ fi



Home | Main Index | Thread Index | Old Index