diff options
author | rillig <rillig> | 2006-10-14 01:44:23 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-10-14 01:44:23 +0000 |
commit | 7b6afbfa43e4a5f38153f318da667cfa4502b1d3 (patch) | |
tree | 6b468f0d6fbd1d873d3b46927c905036037a1b35 /games | |
parent | 673ea0147b3c4a0ebf1d0d1ae24e670ee6b36d3b (diff) | |
download | pkgsrc-7b6afbfa43e4a5f38153f318da667cfa4502b1d3.tar.gz |
Fixed "test ==".
Diffstat (limited to 'games')
-rw-r--r-- | games/koth/distinfo | 4 | ||||
-rw-r--r-- | games/koth/patches/patch-ad | 13 | ||||
-rw-r--r-- | games/koth/patches/patch-ae | 13 |
3 files changed, 29 insertions, 1 deletions
diff --git a/games/koth/distinfo b/games/koth/distinfo index 716ac18fa48..a2e9fdb6d5d 100644 --- a/games/koth/distinfo +++ b/games/koth/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2006/03/29 22:38:30 joerg Exp $ +$NetBSD: distinfo,v 1.8 2006/10/14 01:50:42 rillig Exp $ SHA1 (koth-0.8.0.tar.bz2) = 6cb04ae1f09c4fb521fb47465ab91a1d67986c41 RMD160 (koth-0.8.0.tar.bz2) = 3ea8ef52cab309a764e0379031606d2a949e6553 @@ -6,3 +6,5 @@ Size (koth-0.8.0.tar.bz2) = 140569 bytes SHA1 (patch-aa) = 74119d2ff66b3187c16e625abab7972cb686d484 SHA1 (patch-ab) = 69ce8862b3cdba97f3a4040b0004254b89de3606 SHA1 (patch-ac) = b02bae2f24776c0b1f0778e2ac8d0c9a76711173 +SHA1 (patch-ad) = 716e1860309cf6ea6879419f07fcaa11f1d4fd35 +SHA1 (patch-ae) = 1474ea31b26acf6216373e1e8843836753faac2a diff --git a/games/koth/patches/patch-ad b/games/koth/patches/patch-ad new file mode 100644 index 00000000000..e07b0843db2 --- /dev/null +++ b/games/koth/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2006/10/14 01:50:42 rillig Exp $ + +--- configure.orig 2006-10-14 03:44:05.000000000 +0200 ++++ configure 2006-10-14 03:49:57.000000000 +0200 +@@ -1109,7 +1109,7 @@ CFLAGS="-g -O2 -Wall -Wimplicit $USER_CF + # Check whether --enable-client or --disable-client was given. + if test "${enable_client+set}" = set; then + enableval="$enable_client" +- if test $enableval == no; then ++ if test $enableval = no; then + echo "$ac_t""Skipping libggi detection - you will only be able to build the server!" 1>&6 + DO_USE_GGI=0 + else diff --git a/games/koth/patches/patch-ae b/games/koth/patches/patch-ae new file mode 100644 index 00000000000..5e3b43bb09a --- /dev/null +++ b/games/koth/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.1 2006/10/14 01:50:42 rillig Exp $ + +--- configure.in.orig 2003-02-06 03:17:17.000000000 +0100 ++++ configure.in 2006-10-14 03:49:24.000000000 +0200 +@@ -15,7 +15,7 @@ AC_PROG_RANLIB + CFLAGS="-g -O2 -Wall -Wimplicit $USER_CFLAGS" + dnl Checks for library functions. + AC_ARG_ENABLE(client, [ --disable-client disable libggi detection (can only build server)], +- if test $enableval == no; then ++ if test $enableval = no; then + AC_MSG_RESULT([Skipping libggi detection - you will only be able to build the server!]) + DO_USE_GGI=0 + else |