summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorrichard <richard>2014-04-15 05:37:27 +0000
committerrichard <richard>2014-04-15 05:37:27 +0000
commitf4f23de3877e31661fa8d3838f7da0b1b98a9d58 (patch)
treed448264aa2829ca1503c67d1074e7266b97c0b1b /editors
parented8502fad2bb7785b24a46e214125bf583fccdb2 (diff)
downloadpkgsrc-f4f23de3877e31661fa8d3838f7da0b1b98a9d58.tar.gz
As determined elsewhere (pkg/48075) pdksh (and perhaps older ast-ksh and bash)
have problems with double-parens expressions that are not arithmetic expressions of a particular form. Adding a space between the two parens seems to get over the problem in configure.
Diffstat (limited to 'editors')
-rw-r--r--editors/tomboy/distinfo3
-rw-r--r--editors/tomboy/patches/patch-configure16
2 files changed, 18 insertions, 1 deletions
diff --git a/editors/tomboy/distinfo b/editors/tomboy/distinfo
index d9aa9617b7e..a31a61e43d0 100644
--- a/editors/tomboy/distinfo
+++ b/editors/tomboy/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.8 2011/07/03 07:39:27 obache Exp $
+$NetBSD: distinfo,v 1.9 2014/04/15 05:37:27 richard Exp $
SHA1 (tomboy-1.2.1.tar.gz) = 98e01ad670a3aa2c264319a5e36daa0ea4036891
RMD160 (tomboy-1.2.1.tar.gz) = fa2e16b6e3e175e98756005853de8b6cc0ffcf25
Size (tomboy-1.2.1.tar.gz) = 7695607 bytes
SHA1 (patch-Tomboy_tomboy-panel.in) = b8ba00735d939da3029a6aa1046d74ccf4fc20d2
SHA1 (patch-Tomboy_tomboy.in) = f9b7caa4725133ca78111b9efaa16d7b1276c5b6
+SHA1 (patch-configure) = 47bb6f8bacdc1f08fff96001b1c097389db9f572
diff --git a/editors/tomboy/patches/patch-configure b/editors/tomboy/patches/patch-configure
new file mode 100644
index 00000000000..077a47a9867
--- /dev/null
+++ b/editors/tomboy/patches/patch-configure
@@ -0,0 +1,16 @@
+$NetBSD: patch-configure,v 1.1 2014/04/15 05:37:27 richard Exp $
+As determined elsewhere (pkg/48075) pdksh (and perhaps older ast-ksh and bash)
+have problems with double-parens expressions that are not arithmetic
+expressions of a particular form. Adding a space between the two parens
+seems to get over the problem.
+--- configure.orig 2010-04-26 17:30:00.000000000 +0000
++++ configure
+@@ -15518,7 +15518,7 @@ if test "${enable_gnome+set}" = set; the
+ fi
+
+
+-if ((test "x$ENABLE_GNOME" = "xyes") && (test "x$ENABLE_WIN" = "xyes")) || ((test "x$ENABLE_GNOME" = "xyes") && (test "x$ENABLE_OSX" = "xyes")) || ((test "x$ENABLE_OSX" = "xyes") && (test "x$ENABLE_WIN" = "xyes")) ; then
++if ( (test "x$ENABLE_GNOME" = "xyes") && (test "x$ENABLE_WIN" = "xyes")) || ( (test "x$ENABLE_GNOME" = "xyes") && (test "x$ENABLE_OSX" = "xyes")) || ( (test "x$ENABLE_OSX" = "xyes") && (test "x$ENABLE_WIN" = "xyes")) ; then
+ { { $as_echo "$as_me:$LINENO: error: --enable-gnome, --enable-windows, and --enable-osx are mutually exclusive" >&5
+ $as_echo "$as_me: error: --enable-gnome, --enable-windows, and --enable-osx are mutually exclusive" >&2;}
+ { (exit 1); exit 1; }; }