diff options
author | wiz <wiz> | 2012-04-09 23:19:49 +0000 |
---|---|---|
committer | wiz <wiz> | 2012-04-09 23:19:49 +0000 |
commit | bdfd9fd719721d5638a6a52099b12797928aebc7 (patch) | |
tree | 57e1df5294d2cfe07e08b99004fdc62b5bae294b /games | |
parent | 8c045e4043ecad8618ffc9dec6e325a07f5d343e (diff) | |
download | pkgsrc-bdfd9fd719721d5638a6a52099b12797928aebc7.tar.gz |
Avoid unportable test(1) construct.
Diffstat (limited to 'games')
-rw-r--r-- | games/gcompris/distinfo | 3 | ||||
-rw-r--r-- | games/gcompris/patches/patch-configure | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/games/gcompris/distinfo b/games/gcompris/distinfo index 43d9f47e3d2..391195d477a 100644 --- a/games/gcompris/distinfo +++ b/games/gcompris/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.4 2012/04/08 21:07:06 wiz Exp $ +$NetBSD: distinfo,v 1.5 2012/04/09 23:19:49 wiz Exp $ SHA1 (gcompris-12.01.tar.gz) = c1e3a98e1e2ac7397a8da6bc176c112008008dbe RMD160 (gcompris-12.01.tar.gz) = ce578e8ca494b85300fe0046d1fd111c79a1084d Size (gcompris-12.01.tar.gz) = 149465806 bytes +SHA1 (patch-configure) = d61565375bed732c38dd9eed0e6ab17d7278bbd0 SHA1 (patch-src_chess__computer-activity_chess.c) = 9af1e7ee1a9e03373c5d738a8cc6d8c367dc6cbf SHA1 (patch-src_chess__computer-activity_chess__notation.c) = e621665adb4e8da25b82143699fbde48c5afee0c diff --git a/games/gcompris/patches/patch-configure b/games/gcompris/patches/patch-configure new file mode 100644 index 00000000000..58bd35670b3 --- /dev/null +++ b/games/gcompris/patches/patch-configure @@ -0,0 +1,15 @@ +$NetBSD: patch-configure,v 1.1 2012/04/09 23:19:49 wiz Exp $ + +Avoid unportable test(1) construct. + +--- configure.orig 2012-04-09 23:14:21.000000000 +0000 ++++ configure +@@ -16185,7 +16185,7 @@ else + USE_DEBUG="no" + fi + +-if test "x$USE_DEBUG" == "xyes" ; then ++if test "x$USE_DEBUG" = "xyes" ; then + + cat >>confdefs.h <<_ACEOF + #define DEBUG 1 |