summaryrefslogtreecommitdiff
path: root/games/galaxa
diff options
context:
space:
mode:
authorgarbled <garbled@pkgsrc.org>1998-09-14 06:38:45 +0000
committergarbled <garbled@pkgsrc.org>1998-09-14 06:38:45 +0000
commit61260174b1638f60a44c6c7df8fa361517dc0e85 (patch)
tree7493b955823f0a9c9e168dc8576bd06ceaee9d40 /games/galaxa
parent65bc39bd5124badd896f5893411486bdc36e9e1d (diff)
downloadpkgsrc-61260174b1638f60a44c6c7df8fa361517dc0e85.tar.gz
Fix thinko to keep old scorefiles from being wiped out.
Diffstat (limited to 'games/galaxa')
-rw-r--r--games/galaxa/patches/patch-aa10
1 files changed, 6 insertions, 4 deletions
diff --git a/games/galaxa/patches/patch-aa b/games/galaxa/patches/patch-aa
index c0cf092379a..364e4bfff10 100644
--- a/games/galaxa/patches/patch-aa
+++ b/games/galaxa/patches/patch-aa
@@ -1,6 +1,6 @@
-$NetBSD: patch-aa,v 1.4 1998/09/13 20:55:15 garbled Exp $
+$NetBSD: patch-aa,v 1.5 1998/09/14 06:38:45 garbled Exp $
--- makefile.orig Wed Apr 22 22:41:21 1998
-+++ makefile Sun Sep 13 13:39:27 1998
++++ makefile Sun Sep 13 23:25:17 1998
@@ -14,16 +14,21 @@
OPTFLAG=
@@ -27,7 +27,7 @@ $NetBSD: patch-aa,v 1.4 1998/09/13 20:55:15 garbled Exp $
OBJECTS=galaxa.o hints.o randnum.o setup.o text.o soundmgr.o
-@@ -39,30 +44,24 @@
+@@ -39,30 +44,26 @@
galaxa: $(OBJECTS)
@@ -43,7 +43,9 @@ $NetBSD: patch-aa,v 1.4 1998/09/13 20:55:15 garbled Exp $
+ mkdir -p $(IMAGES)
+ install -g bin -o bin -m 0644 sounds/* $(SOUNDS)
+ install -g bin -o bin -m 0644 images/* $(IMAGES)
-+ install -g games -o bin -m 0664 galaxa-highs.dat /var/games
++ if [ ! -e /var/games/galaxa-highs.dat ]; then \
++ install -g games -o bin -m 0664 galaxa-highs.dat /var/games ; \
++ fi
-#-- App object--#
+#-- Dependencies --#