pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/games/frozen-bubble Update from version 1.0.0nb12 to 1...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/767766ff7e11
branches:  trunk
changeset: 550215:767766ff7e11
user:      he <he%pkgsrc.org@localhost>
date:      Mon Nov 17 19:58:59 2008 +0000

description:
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:

 games/frozen-bubble/Makefile         |  4 ++--
 games/frozen-bubble/distinfo         |  4 ++--
 games/frozen-bubble/patches/patch-ab |  8 ++++----
 3 files changed, 8 insertions(+), 8 deletions(-)

diffs (50 lines):

diff -r 661707d20234 -r 767766ff7e11 games/frozen-bubble/Makefile
--- a/games/frozen-bubble/Makefile      Mon Nov 17 19:54:26 2008 +0000
+++ b/games/frozen-bubble/Makefile      Mon Nov 17 19:58:59 2008 +0000
@@ -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 -r 661707d20234 -r 767766ff7e11 games/frozen-bubble/distinfo
--- a/games/frozen-bubble/distinfo      Mon Nov 17 19:54:26 2008 +0000
+++ b/games/frozen-bubble/distinfo      Mon Nov 17 19:58:59 2008 +0000
@@ -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 -r 661707d20234 -r 767766ff7e11 games/frozen-bubble/patches/patch-ab
--- a/games/frozen-bubble/patches/patch-ab      Mon Nov 17 19:54:26 2008 +0000
+++ b/games/frozen-bubble/patches/patch-ab      Mon Nov 17 19:58:59 2008 +0000
@@ -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 @@
 -      @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



Home | Main Index | Thread Index | Old Index