From c2549dcb4e335db13a5a2652469af4a38b34f73c Mon Sep 17 00:00:00 2001 From: "Chris D. Faulhaber" Date: Sat, 5 Feb 2000 11:37:19 +0000 Subject: [PATCH] Update port to 1.3 --- games/xinvaders3d/Makefile | 6 +++--- games/xinvaders3d/distinfo | 2 +- games/xinvaders3d/files/patch-aa | 17 ++++++++--------- 3 files changed, 12 insertions(+), 13 deletions(-) diff --git a/games/xinvaders3d/Makefile b/games/xinvaders3d/Makefile index 46f646e168db..86752c25f01c 100644 --- a/games/xinvaders3d/Makefile +++ b/games/xinvaders3d/Makefile @@ -1,13 +1,13 @@ # New ports collection makefile for: xinv3d -# Version required: 1.1 +# Version required: 1.3 # Date created: 21 January 2000 # Whom: Chris D. Faulhaber # # $FreeBSD$ # -DISTNAME= xinv3d.1.1 -PKGNAME= xinvaders3d-1.1 +DISTNAME= xinv3d.1.3 +PKGNAME= xinvaders3d-1.3 CATEGORIES= games MASTER_SITES= http://www.fiu.edu/~dllopi01/ diff --git a/games/xinvaders3d/distinfo b/games/xinvaders3d/distinfo index 04d48af0e14a..7416a6c76d0d 100644 --- a/games/xinvaders3d/distinfo +++ b/games/xinvaders3d/distinfo @@ -1 +1 @@ -MD5 (xinv3d.1.1.tar.gz) = b68a6e63978d5b06fd1df1f415a842bf +MD5 (xinv3d.1.3.tar.gz) = edac58e1647154431ee666534b8c6b06 diff --git a/games/xinvaders3d/files/patch-aa b/games/xinvaders3d/files/patch-aa index d94d8380e057..7e3e2b5561c6 100644 --- a/games/xinvaders3d/files/patch-aa +++ b/games/xinvaders3d/files/patch-aa @@ -1,17 +1,16 @@ ---- Makefile.orig Sun Jan 23 13:53:02 2000 -+++ Makefile Mon Jan 24 19:36:27 2000 -@@ -1,6 +1,6 @@ +--- Makefile.orig Sat Jan 29 02:59:52 2000 ++++ Makefile Sat Feb 5 06:35:28 2000 +@@ -1,18 +1,18 @@ all: game -CC = gcc +CC?= gcc XLIB = -L/usr/X11R6/lib -I/usr/X11R6/include LIBS = -lm -lX11 - OBJS = main.o game.o aliens.o player.o effects.o \ -@@ -8,12 +8,12 @@ - vec4x1.o mat4x4.o + OBJS = game.o aliens.o player.o effects.o \ + object.o camera.o main-x11.o vec4x1.o mat4x4.o DEPENDS = - #CFLAGS = -g -Wall -pedantic -ansi + #CFLAGS = -pg -Wall -pedantic -ansi -CFLAGS = -ansi +#CFLAGS = -ansi #OPTIONS = -D_GNU_SOURCE -DGAME_LINUX_X11 -DGAME_DEBUG @@ -19,7 +18,7 @@ .c.o: $(DEPENDS) - $(CC) -c $(CFLAGS) $(OPTIONS) $< -o $@ -+ $(CC) -c $(CFLAGS) $(XLIB) $(OPTIONS) $< -o $@ ++ $(CC) -c $(CFLAGS) $(OPTIONS) $(XLIB) $< -o $@ game: $(OBJS) $(DEPENDS) - $(CC) -g -o xinv3d $(OBJS) $(XLIB) $(LIBS) $(OPTIONS) + $(CC) -o xinv3d $(OBJS) $(XLIB) $(LIBS) $(OPTIONS)