summaryrefslogtreecommitdiff
path: root/games/miscom/files
diff options
context:
space:
mode:
authorSatoshi Taoka <taoka@FreeBSD.org>1999-05-01 01:59:05 +0000
committerSatoshi Taoka <taoka@FreeBSD.org>1999-05-01 01:59:05 +0000
commit54a24d3747a97db636050154bf7265e8819fdf74 (patch)
tree04b134be2b5e66ee9c4ab330a1f64ea4c1ef7745 /games/miscom/files
parentHexagons puzzle (similar to Fifteen Puzzle) for X Window System. (diff)
Atari's "Missile Command" clone.
PR: 11363 Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Notes
Notes: svn path=/head/; revision=18251
Diffstat (limited to 'games/miscom/files')
-rw-r--r--games/miscom/files/patch-aa29
-rw-r--r--games/miscom/files/patch-ab14
-rw-r--r--games/miscom/files/patch-ac14
-rw-r--r--games/miscom/files/patch-ad13
-rw-r--r--games/miscom/files/patch-ae14
-rw-r--r--games/miscom/files/patch-af14
-rw-r--r--games/miscom/files/patch-ag12
7 files changed, 110 insertions, 0 deletions
diff --git a/games/miscom/files/patch-aa b/games/miscom/files/patch-aa
new file mode 100644
index 000000000000..9024818cefb1
--- /dev/null
+++ b/games/miscom/files/patch-aa
@@ -0,0 +1,29 @@
+--- Makefile Sun Mar 16 00:37:42 1997
++++ /home/andy/tmp/wrk/Makefile Wed Apr 28 16:32:04 1999
+@@ -1,7 +1,7 @@
+ # makefile for miscom
+
+ # needs an ANSI C compiler - gcc is fine
+-CC=gcc
++#CC=gcc
+
+ # change these if you want anything anywhere else
+ #
+@@ -12,7 +12,7 @@
+ MANDIR=/usr/man/man6
+
+ # sounds/* go here:
+-DATADIR=/usr/games/lib/miscom
++DATADIR=${PREFIX}/share/miscom
+
+ # about `-DMORE_SOUNDBUF':
+ # With the new version of the sound driver in 1.3.x/2.0.x kernels,
+@@ -28,7 +28,7 @@
+
+ # compiler opts - shouldn't need changing. the `-I' is there just
+ # in case you're using an older ncurses.
+-CFLAGS=-O -I/usr/include/ncurses $(SOUNDOPT)
++CFLAGS+= $(SOUNDOPT)
+
+ # how to link your curses lib. `-lncurses' on Linux (and newer BSD?),
+ # `-lcurses -ltermcap' on trad. BSD, `-lcurses -ltermlib' on SysV,
diff --git a/games/miscom/files/patch-ab b/games/miscom/files/patch-ab
new file mode 100644
index 000000000000..fa8ebf2f2bd7
--- /dev/null
+++ b/games/miscom/files/patch-ab
@@ -0,0 +1,14 @@
+--- draw.c Sat Mar 15 08:10:31 1997
++++ /home/andy/tmp/wrk/draw.c Wed Apr 28 16:35:40 1999
+@@ -4,7 +4,11 @@
+ #include <unistd.h>
+ #include <fcntl.h>
+ #include <errno.h>
++#ifdef __FreeBSD__
++#include <ncurses.h>
++#else
+ #include <curses.h>
++#endif
+
+ #include "global.h"
+ #include "unix.h"
diff --git a/games/miscom/files/patch-ac b/games/miscom/files/patch-ac
new file mode 100644
index 000000000000..0c8203709d58
--- /dev/null
+++ b/games/miscom/files/patch-ac
@@ -0,0 +1,14 @@
+--- fire.c Sat Mar 15 23:42:10 1997
++++ /home/andy/tmp/wrk/fire.c Wed Apr 28 16:36:14 1999
+@@ -4,7 +4,11 @@
+ #include <unistd.h>
+ #include <fcntl.h>
+ #include <errno.h>
++#ifdef __FreeBSD__
++#include <ncurses.h>
++#else
+ #include <curses.h>
++#endif
+
+ #include "global.h"
+ #include "settings.h"
diff --git a/games/miscom/files/patch-ad b/games/miscom/files/patch-ad
new file mode 100644
index 000000000000..327eba3576ca
--- /dev/null
+++ b/games/miscom/files/patch-ad
@@ -0,0 +1,13 @@
+--- level.c Thu Jan 22 19:30:13 1998
++++ /home/andy/tmp/wrk/level.c Wed Apr 28 16:37:41 1999
+@@ -1,6 +1,10 @@
+ #include <stdio.h>
+ #include <unistd.h>
++#ifdef __FreeBSD__
++#include <ncurses.h>
++#else
+ #include <curses.h>
++#endif
+ #include "global.h"
+ #include "settings.h"
+ #include "draw.h"
diff --git a/games/miscom/files/patch-ae b/games/miscom/files/patch-ae
new file mode 100644
index 000000000000..a2f133e300fa
--- /dev/null
+++ b/games/miscom/files/patch-ae
@@ -0,0 +1,14 @@
+--- main.c Thu Jan 22 19:30:32 1998
++++ /home/andy/tmp/wrk/main.c Wed Apr 28 16:34:52 1999
+@@ -24,7 +24,11 @@
+ #include <fcntl.h>
+ #include <time.h>
+ #include <signal.h>
++#ifdef __FreeBSD__
++#include <ncurses.h>
++#else
+ #include <curses.h>
++#endif
+ #include "global.h"
+ #include "settings.h"
+ #include "draw.h"
diff --git a/games/miscom/files/patch-af b/games/miscom/files/patch-af
new file mode 100644
index 000000000000..f1ae4754a594
--- /dev/null
+++ b/games/miscom/files/patch-af
@@ -0,0 +1,14 @@
+--- sound.c Sat Mar 15 17:17:45 1997
++++ /home/andy/tmp/wrk/sound.c Thu Aug 6 17:03:30 1998
+@@ -4,7 +4,11 @@
+ #include <stdlib.h>
+ #include <fcntl.h>
+ #include <unistd.h>
++#ifdef __FreeBSD__
++#include <machine/soundcard.h>
++#else
+ #include <sys/soundcard.h>
++#endif
+ #include "sound.h"
+
+ int sound=1;
diff --git a/games/miscom/files/patch-ag b/games/miscom/files/patch-ag
new file mode 100644
index 000000000000..252404c0a52c
--- /dev/null
+++ b/games/miscom/files/patch-ag
@@ -0,0 +1,12 @@
+--- unix.c Sat Mar 15 20:00:27 1997
++++ /home/andy/tmp/wrk/unix.c Wed Apr 28 16:36:56 1999
+@@ -1,5 +1,9 @@
+ #include <stdio.h>
++#ifdef __FreeBSD__
++#include <ncurses.h>
++#else
+ #include <curses.h>
++#endif
+ #include <sys/types.h>
+ #include <unistd.h>
+ #include <fcntl.h>