Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Dec 2002 15:47:55 +0100 (MET)
From:      Jan Stocker <Jan.Stocker@t-online.de>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/46524: MAINTAINER-UPDATE: games/tuxpuck 0.8.2 
Message-ID:  <200212251447.gBPEltlA008465@Twoflower.liebende.de>

next in thread | raw e-mail | index | archive | help

>Number:         46524
>Category:       ports
>Synopsis:       MAINTAINER-UPDATE: games/tuxpuck 0.8.2
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Dec 25 06:50:09 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     Jan Stocker
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
>Environment:
System: FreeBSD Twoflower.liebende.de 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Nov 26 15:42:05 CET 2002 root@Twoflower.liebende.de:/usr/obj/usr/src/sys/Twoflower50 i386


	
>Description:
	
>How-To-Repeat:
	
>Fix:

diff -urN games/tuxpuck.orig/Makefile games/tuxpuck/Makefile
--- games/tuxpuck.orig/Makefile	Thu Oct 31 01:29:09 2002
+++ games/tuxpuck/Makefile	Wed Dec 25 15:33:58 2002
@@ -7,7 +7,7 @@
 #
 
 PORTNAME=	tuxpuck
-PORTVERSION=	0.8.1
+PORTVERSION=	0.8.2
 CATEGORIES=	games
 MASTER_SITES=	http://www.efd.lth.se/~d00jkr/tuxpuck/
 
diff -urN games/tuxpuck.orig/distinfo games/tuxpuck/distinfo
--- games/tuxpuck.orig/distinfo	Thu Oct 31 01:29:09 2002
+++ games/tuxpuck/distinfo	Wed Dec 25 15:36:11 2002
@@ -1 +1 @@
-MD5 (tuxpuck-0.8.1.tar.gz) = f9343dd08d10e90c81815f3037a13489
+MD5 (tuxpuck-0.8.2.tar.gz) = fc839abc2b1f3eafae397e1ed6487079
diff -urN games/tuxpuck.orig/files/patch-Makefile games/tuxpuck/files/patch-Makefile
--- games/tuxpuck.orig/files/patch-Makefile	Thu Oct 31 01:29:09 2002
+++ games/tuxpuck/files/patch-Makefile	Wed Dec 25 15:39:11 2002
@@ -1,23 +1,16 @@
---- Makefile.orig	Tue Oct 15 13:48:06 2002
-+++ Makefile	Wed Oct 30 13:01:37 2002
-@@ -1,8 +1,8 @@
- # Makefile for TuxPuck , Copyright Jacob Kroon 2001-2002
- VERSION		= 0.8.1
--CC		= gcc
--CFLAGS		+= `sdl-config --cflags` -D_VERSION=\"$(VERSION)\" \
--		   -g -Wall
-+CC		?= gcc
-+CFLAGS		+= `$(SDL_CONFIG) --cflags` -D_VERSION=\"$(VERSION)\" \
-+		   -Wall
- CSOURCES	= tuxpuck.c video.c audio.c menu.c sprite.c font.c timer.c \
- 		  board.c entity.c glass.c scoreboard.c player.c zoom.c png.c \
- 		  jpg.c intro.c tux.c arcana.c 
-@@ -18,7 +18,7 @@
+--- Makefile.orig	Fri Nov  8 11:50:29 2002
++++ Makefile	Wed Dec 25 15:38:45 2002
+@@ -17,11 +17,11 @@
+ endif
  
- tuxpuck : $(OBJS)
+ %.o	: %.c
+-	$(CC) $(CFLAGS) `sdl-config --cflags` -c -o $@ $<
++	$(CC) $(CFLAGS) `$(SDL_CONFIG) --cflags` -c -o $@ $<
+ 
+ $(NAME) : $(OBJS)
  	cd data; $(MAKE)
 -	$(CC) $(CFLAGS) $(OBJS) data/libdata.a `sdl-config --libs` -lm -lpng \
 +	$(CC) $(CFLAGS) $(OBJS) data/libdata.a `$(SDL_CONFIG) --libs` -lm -lpng \
- 	-ljpeg -lz -lvorbisfile -lvorbis -logg -o tuxpuck
+ 	-ljpeg -lz -lvorbisfile -lvorbis -logg -o $(NAME)
  
- clean :
+ w32icon.o : data/icons/tuxpuck.ico
diff -urN games/tuxpuck.orig/files/patch-utils::Makefile games/tuxpuck/files/patch-utils::Makefile
--- games/tuxpuck.orig/files/patch-utils::Makefile	Thu Oct 31 01:29:09 2002
+++ games/tuxpuck/files/patch-utils::Makefile	Wed Dec 25 15:42:11 2002
@@ -1,15 +1,15 @@
---- utils/Makefile.orig	Tue Oct 15 13:48:06 2002
-+++ utils/Makefile	Wed Oct 30 13:06:42 2002
+--- utils/Makefile.orig	Fri Nov  8 11:50:29 2002
++++ utils/Makefile	Wed Dec 25 15:41:44 2002
 @@ -9,10 +9,10 @@
  	$(CC) $(CFLAGS) ttf2font.c `freetype-config --cflags --libs` -o ttf2font
  
  data2c : data2c.c
--	$(CC) $(CFLAGS) data2c.c `sdl-config --cflags` -o data2c
-+	$(CC) $(CFLAGS) data2c.c `$(SDL_CONFIG) --cflags` -o data2c
+-	$(CC) $(CFLAGS) data2c.c `sdl-config --cflags --libs` -o data2c
++	$(CC) $(CFLAGS) data2c.c `$(SDL_CONFIG) --cflags --libs` -o data2c
  
  anim : anim.c
--	$(CC) $(CFLAGS) anim.c `sdl-config --cflags` -o anim
-+	$(CC) $(CFLAGS) anim.c `$(SDL_CONFIG) --cflags` -o anim
+-	$(CC) $(CFLAGS) anim.c `sdl-config --cflags --libs` -o anim
++	$(CC) $(CFLAGS) anim.c `$(SDL_CONFIG) --cflags --libs` -o anim
  
  clean :
  	rm -f *~ data2c ttf2font anim

>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200212251447.gBPEltlA008465>