summaryrefslogtreecommitdiff
path: root/games/ketm
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2006-11-11 22:26:11 +0000
committerrillig <rillig@pkgsrc.org>2006-11-11 22:26:11 +0000
commit84936c1d8c005b0d2f9ab849be17b593c356c51b (patch)
tree365ac5052a1ea8048b5d4ab2e4cf1b778a582ccc /games/ketm
parent3dc74ef1a837461bcef9152616ea1899120f0d7d (diff)
downloadpkgsrc-84936c1d8c005b0d2f9ab849be17b593c356c51b.tar.gz
Fixed "test ==".
Diffstat (limited to 'games/ketm')
-rw-r--r--games/ketm/distinfo4
-rw-r--r--games/ketm/patches/patch-ad12
2 files changed, 10 insertions, 6 deletions
diff --git a/games/ketm/distinfo b/games/ketm/distinfo
index 5fddeb8459a..ef8642034ee 100644
--- a/games/ketm/distinfo
+++ b/games/ketm/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.8 2006/10/25 21:06:14 rillig Exp $
+$NetBSD: distinfo,v 1.9 2006/11/11 22:26:11 rillig Exp $
SHA1 (ketm-0.0.6.tar.bz2) = 3275b6be9178e30478609db9b8f897ae212df049
RMD160 (ketm-0.0.6.tar.bz2) = 28e0fad25d15e466e5f94aa456a692429ed9b31b
@@ -6,4 +6,4 @@ Size (ketm-0.0.6.tar.bz2) = 1836502 bytes
SHA1 (patch-aa) = 619ca79fc73983f60a0449226bcf1ca546776b2f
SHA1 (patch-ab) = 33edc5d12a930308f51994130859e6b3f30afb75
SHA1 (patch-ac) = d7dd4aedf4d8d20930a15c0a99f0b423b009401a
-SHA1 (patch-ad) = a52991fa1bce6cb2e7a43b8eff837cd42c79d6cb
+SHA1 (patch-ad) = 97b1f59ee754dec5684a5f9d4748a0200832953e
diff --git a/games/ketm/patches/patch-ad b/games/ketm/patches/patch-ad
index 35bd44730f4..fa3807035e6 100644
--- a/games/ketm/patches/patch-ad
+++ b/games/ketm/patches/patch-ad
@@ -1,8 +1,8 @@
-$NetBSD: patch-ad,v 1.1 2006/10/25 21:06:14 rillig Exp $
+$NetBSD: patch-ad,v 1.2 2006/11/11 22:26:11 rillig Exp $
--- Configure.orig 2001-09-13 13:15:28.000000000 +0200
-+++ Configure 2006-10-25 23:02:00.000000000 +0200
-@@ -54,15 +54,12 @@ else
++++ Configure 2006-11-11 23:24:42.000000000 +0100
+@@ -54,18 +54,15 @@ else
fi
@@ -23,4 +23,8 @@ $NetBSD: patch-ad,v 1.1 2006/10/25 21:06:14 rillig Exp $
+esac
echo -n "Checking Release Type..."
- if [ "${type}" == "debug" ]; then
+-if [ "${type}" == "debug" ]; then
++if [ "${type}" = "debug" ]; then
+ echo "Debug"
+ CFLAGS="-Wall -g `sdl-config --cflags`"
+ else