diff options
author | wiz <wiz@pkgsrc.org> | 2004-11-24 17:05:03 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-11-24 17:05:03 +0000 |
commit | fea8da339cccba264bd1611cf134760a713cacd7 (patch) | |
tree | 7ef793beb9c7463f16b83a671b8aca8366c399c7 /games/kapooka/patches | |
parent | 082e6a8069be3f40c4494fc92546df93c492ee42 (diff) | |
download | pkgsrc-fea8da339cccba264bd1611cf134760a713cacd7.tar.gz |
Initial import of kapooka-0.2:
KaPooka is a logic game, written in SDL.
The object of the game is to guide your red blobby to the exit,
pushing the green blobbies out of the way. You can only push a
green blobby if there is an empty space behind it.
Diffstat (limited to 'games/kapooka/patches')
-rw-r--r-- | games/kapooka/patches/patch-aa | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/games/kapooka/patches/patch-aa b/games/kapooka/patches/patch-aa new file mode 100644 index 00000000000..0c37cebaf9e --- /dev/null +++ b/games/kapooka/patches/patch-aa @@ -0,0 +1,20 @@ +$NetBSD: patch-aa,v 1.1.1.1 2004/11/24 17:05:04 wiz Exp $ + +--- Makefile.orig 2004-10-17 23:08:42.000000000 +0200 ++++ Makefile +@@ -1,10 +1,10 @@ + NAME=kapooka + #CC=gcc-3.0 +-CC=gcc +-DESTDIR=/usr/local +-DATADIR=$(DESTDIR)/$(NAME) +-COMPILE_FLAGS=-Wall -O2 -fomit-frame-pointer `libmikmod-config --cflags` -DDATADIR=$(DATADIR) -g +-LINK_FLAGS=-lm -L /usr/X11R6/lib -L /usr/local/lib `libmikmod-config --libs` -lpthread -lSDL -lSDL_image ++#CC=gcc ++DESTDIR=${PREFIX} ++DATADIR=$(DESTDIR)/share/$(NAME) ++COMPILE_FLAGS=-Wall -DDATADIR=$(DATADIR) -g ++LINK_FLAGS=-lm -L /usr/X11R6/lib `libmikmod-config --libs` `sdl-config --libs` -lSDL_image + CFILES=$(wildcard *.c) + OFILES=$(patsubst %.c,%.o,$(CFILES)) + |