diff options
author | rillig <rillig> | 2006-10-14 02:18:37 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-10-14 02:18:37 +0000 |
commit | a3d483e6cae775bb5d1af8ac12f28b453a2df683 (patch) | |
tree | a4ebbddf472db0f69716f4c3c819b8e40ccc4fde /cad/xcircuit | |
parent | 2ec43d37161af537b43bfc1d612d566f5fcca3d9 (diff) | |
download | pkgsrc-a3d483e6cae775bb5d1af8ac12f28b453a2df683.tar.gz |
Fixed "test ==".
Diffstat (limited to 'cad/xcircuit')
-rw-r--r-- | cad/xcircuit/distinfo | 6 | ||||
-rw-r--r-- | cad/xcircuit/patches/patch-aa | 15 | ||||
-rw-r--r-- | cad/xcircuit/patches/patch-ab | 15 |
3 files changed, 27 insertions, 9 deletions
diff --git a/cad/xcircuit/distinfo b/cad/xcircuit/distinfo index 344ca0478e1..19a8ff0aaee 100644 --- a/cad/xcircuit/distinfo +++ b/cad/xcircuit/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.9 2006/06/26 15:24:34 joerg Exp $ +$NetBSD: distinfo,v 1.10 2006/10/14 02:21:21 rillig Exp $ SHA1 (xcircuit-3.3.0.tgz) = ec3c0995fd4f8755a50d39e278ca0ab293705b38 RMD160 (xcircuit-3.3.0.tgz) = 2f3621b5201ce4597a34a300a7111349825e3045 Size (xcircuit-3.3.0.tgz) = 1308602 bytes -SHA1 (patch-aa) = 18d6eb6a04e813c9923025de173d2019b0411a77 -SHA1 (patch-ab) = d1364d1b79f4060e5b8f7078490b7eb6bafdf26a +SHA1 (patch-aa) = 6655ff2ee38253c4bbc19c477f9fcd9e3e68a4ed +SHA1 (patch-ab) = 8f81ac0b8c0a2fceed052668cf4cf27a96915f9f SHA1 (patch-ac) = 1f84054174f790bd32d14eafa6a91444737795ff diff --git a/cad/xcircuit/patches/patch-aa b/cad/xcircuit/patches/patch-aa index 530c9f0f75e..07ad33ac81f 100644 --- a/cad/xcircuit/patches/patch-aa +++ b/cad/xcircuit/patches/patch-aa @@ -1,7 +1,16 @@ -$NetBSD: patch-aa,v 1.7 2006/06/26 15:24:34 joerg Exp $ +$NetBSD: patch-aa,v 1.8 2006/10/14 02:21:22 rillig Exp $ ---- configure.in.orig 2004-10-01 04:24:09.000000000 +0000 -+++ configure.in +--- configure.in.orig 2004-10-01 06:24:09.000000000 +0200 ++++ configure.in 2006-10-14 04:19:51.000000000 +0200 +@@ -255,7 +255,7 @@ xc_with_tk_libraries="" + AC_ARG_WITH(tcl, + [ --with-tcl=DIR Find tclConfig.sh in DIR], [ + xc_with_tcl=$withval +- if test "$withval" == "no" -o "$withval" == "NO"; then ++ if test "$withval" = "no" -o "$withval" = "NO"; then + xc_with_tcl="" + fi + ], ) @@ -469,6 +469,7 @@ fi if test "x$xc_with_tcl" != "x" ; then . $tcl_config_sh diff --git a/cad/xcircuit/patches/patch-ab b/cad/xcircuit/patches/patch-ab index d95e6e8fbdd..c5676e09c4d 100644 --- a/cad/xcircuit/patches/patch-ab +++ b/cad/xcircuit/patches/patch-ab @@ -1,7 +1,16 @@ -$NetBSD: patch-ab,v 1.7 2006/06/26 15:24:34 joerg Exp $ +$NetBSD: patch-ab,v 1.8 2006/10/14 02:21:22 rillig Exp $ ---- configure.orig 2004-10-01 04:25:07.000000000 +0000 -+++ configure +--- configure.orig 2004-10-01 06:25:07.000000000 +0200 ++++ configure 2006-10-14 04:20:29.000000000 +0200 +@@ -7393,7 +7393,7 @@ if test "${with_tcl+set}" = set; then + withval="$with_tcl" + + xc_with_tcl=$withval +- if test "$withval" == "no" -o "$withval" == "NO"; then ++ if test "$withval" = "no" -o "$withval" = "NO"; then + xc_with_tcl="" + fi + @@ -7629,6 +7629,7 @@ fi if test "x$xc_with_tcl" != "x" ; then . $tcl_config_sh |