1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/games/miscom/files/patch-aa
Satoshi Taoka 54a24d3747 Atari's "Missile Command" clone.
PR:             11363
Submitted by:   Andrey Zakhvatov <andy@icc.surw.chel.su>
1999-05-01 01:59:05 +00:00

30 lines
813 B
Plaintext

--- 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,