diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-10-20 07:32:38 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-10-20 07:32:38 +0000 |
commit | 313c20d3b7c21ab3c8ecd82e3972a5a7aa35664e (patch) | |
tree | 9311538bec9097ccf428bf9d6a420ce3a2660631 /games/lbreakout/files | |
parent | a4666d993930bb1fb35453e6260f9bd680b14e25 (diff) | |
download | FreeBSD-ports-313c20d3b7c21ab3c8ecd82e3972a5a7aa35664e.zip FreeBSD-ports-313c20d3b7c21ab3c8ecd82e3972a5a7aa35664e.tar.gz |
Add lbreakout - a SDL-based clone of classical Breakout game.
Diffstat (limited to 'games/lbreakout/files')
-rw-r--r-- | games/lbreakout/files/patch-aa | 11 | ||||
-rw-r--r-- | games/lbreakout/files/patch-ab | 10 | ||||
-rw-r--r-- | games/lbreakout/files/patch-ac | 21 | ||||
-rw-r--r-- | games/lbreakout/files/patch-ad | 11 | ||||
-rw-r--r-- | games/lbreakout/files/patch-ae | 13 |
5 files changed, 66 insertions, 0 deletions
diff --git a/games/lbreakout/files/patch-aa b/games/lbreakout/files/patch-aa new file mode 100644 index 0000000..3d8896c --- /dev/null +++ b/games/lbreakout/files/patch-aa @@ -0,0 +1,11 @@ +--- lbreakout/Makefile.in 2000/10/20 06:56:24 1.1 ++++ lbreakout/Makefile.in 2000/10/20 06:56:47 +@@ -80,7 +80,7 @@ + + bin_PROGRAMS = lbreakout + lbreakout_SOURCES = hiscore.cpp dynlist.c level.cpp breakout.cpp sndsrv.c sdl.c menumanager.cpp menuitem.cpp menu.cpp game.cpp main.cpp +-lbreakout_LDADD = -lpthread -lm @thread_flag@ ++lbreakout_LDADD = @thread_flag@ + + EXTRA_SUBDIRS = manual + diff --git a/games/lbreakout/files/patch-ab b/games/lbreakout/files/patch-ab new file mode 100644 index 0000000..341e2de --- /dev/null +++ b/games/lbreakout/files/patch-ab @@ -0,0 +1,10 @@ +--- lbreakout/breakout.cpp 2000/10/20 07:01:37 1.1 ++++ lbreakout/breakout.cpp 2000/10/20 07:02:11 +@@ -19,6 +19,7 @@ + #include "level.h" + #include <stdlib.h> + #include <stdio.h> ++#include <sys/types.h> + #include <sys/timeb.h> + #include <string.h> + #include <math.h> diff --git a/games/lbreakout/files/patch-ac b/games/lbreakout/files/patch-ac new file mode 100644 index 0000000..b542dcb --- /dev/null +++ b/games/lbreakout/files/patch-ac @@ -0,0 +1,21 @@ +--- lbreakout/game.cpp 2000/10/20 07:02:55 1.1 ++++ lbreakout/game.cpp 2000/10/20 07:03:35 +@@ -15,6 +15,7 @@ + * * + ***************************************************************************/ + ++#include <sys/types.h> + #include <sys/timeb.h> + #include <stdlib.h> + #include <string.h> +@@ -22,6 +23,10 @@ + #include "breakout.h" + #include "menumanager.h" + #include "level.h" ++ ++extern "C" { ++ int ftime(struct timeb *tp); ++}; + + #ifdef SOUND + extern SndSrv sndsrv; diff --git a/games/lbreakout/files/patch-ad b/games/lbreakout/files/patch-ad new file mode 100644 index 0000000..a44be7a --- /dev/null +++ b/games/lbreakout/files/patch-ad @@ -0,0 +1,11 @@ +--- Makefile.in.orig Wed Oct 18 17:27:21 2000 ++++ Makefile.in Fri Oct 20 09:57:40 2000 +@@ -46,7 +46,7 @@ + ACLOCAL = @ACLOCAL@ + AUTOCONF = @AUTOCONF@ + AUTOMAKE = @AUTOMAKE@ +-AUTOHEADER = @AUTOHEADER@ ++AUTOHEADER = true + + INSTALL = @INSTALL@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS) diff --git a/games/lbreakout/files/patch-ae b/games/lbreakout/files/patch-ae new file mode 100644 index 0000000..a7a54c9 --- /dev/null +++ b/games/lbreakout/files/patch-ae @@ -0,0 +1,13 @@ +--- configure 2000/10/20 06:57:57 1.1 ++++ configure 2000/10/20 06:58:16 +@@ -1783,8 +1783,8 @@ + + + +-sdir=$datadir/games/lbreakout +-hdir=/var/lib/games ++sdir=$datadir/lbreakout ++hdir=/var/games/lbreakout + inst_flag="-DSRC_DIR=\\\"$sdir/\\\"" + hi_inst_flag="-DHI_DIR=\\\"$hdir/\\\"" + |