diff options
author | rillig <rillig> | 2006-10-22 20:44:53 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-10-22 20:44:53 +0000 |
commit | 7d0c4f06b902b4b68af5e2746ecd7b606705cba5 (patch) | |
tree | 2f58932710c0221d9ac9cdc21dfc132c28168d57 | |
parent | b2f8ad71d3a316ac5916453cbc97041787a16e9f (diff) | |
download | pkgsrc-7d0c4f06b902b4b68af5e2746ecd7b606705cba5.tar.gz |
Fixed "test ==".
-rw-r--r-- | graphics/libgdiplus/distinfo | 4 | ||||
-rw-r--r-- | graphics/libgdiplus/patches/patch-ac | 37 | ||||
-rw-r--r-- | graphics/libgdiplus/patches/patch-ad | 37 |
3 files changed, 77 insertions, 1 deletions
diff --git a/graphics/libgdiplus/distinfo b/graphics/libgdiplus/distinfo index 9333db6da56..9021e21dbe0 100644 --- a/graphics/libgdiplus/distinfo +++ b/graphics/libgdiplus/distinfo @@ -1,7 +1,9 @@ -$NetBSD: distinfo,v 1.15 2006/08/03 18:48:59 drochner Exp $ +$NetBSD: distinfo,v 1.16 2006/10/22 20:44:53 rillig Exp $ SHA1 (libgdiplus-1.1.13.6.tar.gz) = a41a2e8f0c5f96c6a58c16dc38146c3e45ab1c10 RMD160 (libgdiplus-1.1.13.6.tar.gz) = de4ed4598048c19a56f0d451c1d42a567c893626 Size (libgdiplus-1.1.13.6.tar.gz) = 1281173 bytes SHA1 (patch-aa) = 7f63e4367b5faef0bd18e1cffee2e56e11dc88b9 SHA1 (patch-ab) = b2fbb9ea4a25f6b550fd2a06bfe415c236bb345c +SHA1 (patch-ac) = b2ff945b9dc47563b2158a83ae4ca344786c7e39 +SHA1 (patch-ad) = f9d778ba68ab25e462e089b200e469916f68d1a7 diff --git a/graphics/libgdiplus/patches/patch-ac b/graphics/libgdiplus/patches/patch-ac new file mode 100644 index 00000000000..e6a7b8177c9 --- /dev/null +++ b/graphics/libgdiplus/patches/patch-ac @@ -0,0 +1,37 @@ +$NetBSD: patch-ac,v 1.7 2006/10/22 20:44:53 rillig Exp $ + +--- cairo/configure.orig 2006-10-22 22:41:44.000000000 +0200 ++++ cairo/configure 2006-10-22 22:44:01.000000000 +0200 +@@ -26141,26 +26141,26 @@ WARNING_MESSAGE=' + *** to @BACKEND@-backend specific API. + ' + +-if test x"$use_glitz" == "xyes" ; then ++if test x"$use_glitz" = "xyes" ; then + echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/Glitz/' + fi + +-if test x"$use_xcb" == "xyes" ; then ++if test x"$use_xcb" = "xyes" ; then + echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/XCB/' + fi + +-if test x"$use_quartz" == "xyes" ; then ++if test x"$use_quartz" = "xyes" ; then + echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/Quartz/' + fi + +-if test x"$use_quartz" == "xyes" ; then ++if test x"$use_quartz" = "xyes" ; then + echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/ATSUI/' + fi + +-if test x"$use_pdf" == "xyes" ; then ++if test x"$use_pdf" = "xyes" ; then + echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/PDF/' + fi + +-if test x"$use_ps" == "xyes" ; then ++if test x"$use_ps" = "xyes" ; then + echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/PostScript/' + fi diff --git a/graphics/libgdiplus/patches/patch-ad b/graphics/libgdiplus/patches/patch-ad new file mode 100644 index 00000000000..cfe4ce50af5 --- /dev/null +++ b/graphics/libgdiplus/patches/patch-ad @@ -0,0 +1,37 @@ +$NetBSD: patch-ad,v 1.3 2006/10/22 20:44:53 rillig Exp $ + +--- cairo/configure.in.orig 2006-10-22 22:43:31.000000000 +0200 ++++ cairo/configure.in 2006-03-14 07:52:10.000000000 +0100 +@@ -554,26 +554,26 @@ WARNING_MESSAGE=' + *** to @BACKEND@-backend specific API. + ' + +-if test x"$use_glitz" = "xyes" ; then ++if test x"$use_glitz" == "xyes" ; then + echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/Glitz/' + fi + +-if test x"$use_xcb" = "xyes" ; then ++if test x"$use_xcb" == "xyes" ; then + echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/XCB/' + fi + +-if test x"$use_quartz" = "xyes" ; then ++if test x"$use_quartz" == "xyes" ; then + echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/Quartz/' + fi + +-if test x"$use_quartz" = "xyes" ; then ++if test x"$use_quartz" == "xyes" ; then + echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/ATSUI/' + fi + +-if test x"$use_pdf" = "xyes" ; then ++if test x"$use_pdf" == "xyes" ; then + echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/PDF/' + fi + +-if test x"$use_ps" = "xyes" ; then ++if test x"$use_ps" == "xyes" ; then + echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/PostScript/' + fi |