summaryrefslogtreecommitdiff
path: root/games/frozen-bubble
diff options
context:
space:
mode:
authorhe <he@pkgsrc.org>2008-11-17 19:58:59 +0000
committerhe <he@pkgsrc.org>2008-11-17 19:58:59 +0000
commit90ae35584994f9c3972a60009ce9b266cddaf8a3 (patch)
tree9318eb8445e23d1685ea50f68e3a1b058e62bc49 /games/frozen-bubble
parent6a75476664c283212a2a841499141e4c7c1b67be (diff)
downloadpkgsrc-90ae35584994f9c3972a60009ce9b266cddaf8a3.tar.gz
Update from version 1.0.0nb12 to 1.0.0nb13.
Fix the version test for p5-SDL, so that this at least continues to build after the recent update of p5-SDL to 2.1.2. Note that I've only compile tested this with the new p5-SDL; I'm not in a position to test it more fully right now.
Diffstat (limited to 'games/frozen-bubble')
-rw-r--r--games/frozen-bubble/Makefile4
-rw-r--r--games/frozen-bubble/distinfo4
-rw-r--r--games/frozen-bubble/patches/patch-ab8
3 files changed, 8 insertions, 8 deletions
diff --git a/games/frozen-bubble/Makefile b/games/frozen-bubble/Makefile
index 84a0a76c122..8c49c99ecaf 100644
--- a/games/frozen-bubble/Makefile
+++ b/games/frozen-bubble/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.28 2008/10/19 19:18:10 he Exp $
+# $NetBSD: Makefile,v 1.29 2008/11/17 19:58:59 he Exp $
#
DISTNAME= frozen-bubble-1.0.0
-PKGREVISION= 12
+PKGREVISION= 13
CATEGORIES= games
MASTER_SITES= http://zarb.org/~gc/fb/
EXTRACT_SUFX= .tar.bz2
diff --git a/games/frozen-bubble/distinfo b/games/frozen-bubble/distinfo
index ae8dc6cd6e6..d5fb3623cb3 100644
--- a/games/frozen-bubble/distinfo
+++ b/games/frozen-bubble/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.4 2005/02/23 23:11:58 agc Exp $
+$NetBSD: distinfo,v 1.5 2008/11/17 19:58:59 he Exp $
SHA1 (frozen-bubble-1.0.0.tar.bz2) = 8b58efc26778732580e40406d25720d4d0102e47
RMD160 (frozen-bubble-1.0.0.tar.bz2) = eeea4dceef9f205a94688913099a25bba7b50faa
Size (frozen-bubble-1.0.0.tar.bz2) = 7321135 bytes
SHA1 (patch-aa) = 114e52b4cf05f0380f2ae9e21a997b9817f7d7a6
-SHA1 (patch-ab) = b6b1d189493d1674537662b9d34fb6f4081f8347
+SHA1 (patch-ab) = 3f498be00fbbc61ff898b5bfe59759e5dbff827f
diff --git a/games/frozen-bubble/patches/patch-ab b/games/frozen-bubble/patches/patch-ab
index f8aaabbc358..d69f384ccfa 100644
--- a/games/frozen-bubble/patches/patch-ab
+++ b/games/frozen-bubble/patches/patch-ab
@@ -1,7 +1,7 @@
-$NetBSD: patch-ab,v 1.3 2003/04/16 22:04:32 salo Exp $
+$NetBSD: patch-ab,v 1.4 2008/11/17 19:58:59 he Exp $
---- Makefile.orig 2003-02-03 15:36:55.000000000 +0100
-+++ Makefile 2003-04-16 23:45:54.000000000 +0200
+--- Makefile.orig 2003-02-03 14:36:55.000000000 +0000
++++ Makefile
@@ -1,33 +1,30 @@
DIRS = c_stuff
@@ -17,7 +17,7 @@ $NetBSD: patch-ab,v 1.3 2003/04/16 22:04:32 salo Exp $
- @if ! perl -e 'use SDL'; then echo -e "\n *** I need perl-SDL installed"; false; fi
- @if ! perl -e 'use SDL; ($$mj, $$mn, $$mc) = split /\./, $$SDL::VERSION; exit 1 if $$mj<1 || $$mn<19'; then echo -e "\n *** I need perl-SDL version 1.19.0 or upper"; false; fi
+ @if ! ${PERL5} -e 'use SDL'; then echo -e "\n *** I need perl-SDL installed"; false; fi
-+ @if ! ${PERL5} -e 'use SDL; ($$mj, $$mn, $$mc) = split /\./, $$SDL::VERSION; exit 1 if $$mj<1 || $$mn<19'; then echo -e "\n *** I need perl-SDL version 1.19.0 or upper"; false; fi
++ @if ! ${PERL5} -e 'use SDL; ($$mj, $$mn, $$mc) = split /\./, $$SDL::VERSION; exit 1 if $$mj<1 || ($$mj == 1 && $$mn<19)'; then echo -e "\n *** I need perl-SDL version 1.19.0 or higher"; false; fi
@for n in . $(DIRS); do \
[ "$$n" = "." ] || $(MAKE) -C $$n ;\
done