diff options
author | dillo <dillo> | 2005-08-08 00:10:21 +0000 |
---|---|---|
committer | dillo <dillo> | 2005-08-08 00:10:21 +0000 |
commit | f985731ae800aefca4df14b5ac9057fde437e71a (patch) | |
tree | bbd2e3663e75a9fcf96d9f94e26bfa1ac106337e /games | |
parent | b553ca6b4b776db0c166a8681df400115766bfe0 (diff) | |
download | pkgsrc-f985731ae800aefca4df14b5ac9057fde437e71a.tar.gz |
Add REminiscence 0.1.6:
REminiscence is a rewrite of the engine used in the game Flashback
from Delphine Software. This program is designed as a cross-platform
replacement for the original executable and uses the SDL library.
Diffstat (limited to 'games')
-rw-r--r-- | games/REminiscence/DESCR | 3 | ||||
-rw-r--r-- | games/REminiscence/Makefile | 32 | ||||
-rw-r--r-- | games/REminiscence/PLIST | 4 | ||||
-rw-r--r-- | games/REminiscence/distinfo | 6 | ||||
-rw-r--r-- | games/REminiscence/patches/patch-aa | 20 |
5 files changed, 65 insertions, 0 deletions
diff --git a/games/REminiscence/DESCR b/games/REminiscence/DESCR new file mode 100644 index 00000000000..0133e3f2b26 --- /dev/null +++ b/games/REminiscence/DESCR @@ -0,0 +1,3 @@ +REminiscence is a rewrite of the engine used in the game Flashback +from Delphine Software. This program is designed as a cross-platform +replacement for the original executable and uses the SDL library. diff --git a/games/REminiscence/Makefile b/games/REminiscence/Makefile new file mode 100644 index 00000000000..07ff884a1c0 --- /dev/null +++ b/games/REminiscence/Makefile @@ -0,0 +1,32 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/08/08 00:10:21 dillo Exp $ +# + +DISTNAME= REminiscence-0.1.6 +CATEGORIES= games +MASTER_SITES= http://membres.lycos.fr/cyxdown/reminiscence/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= dillo@NetBSD.org +HOMEPAGE= http://membres.lycos.fr/cyxdown/reminiscence/ +COMMENT= Engine to play Flashback by Delphine Software + +BUILD_TARGET= rs +MAKE_ENV+= DEFINES="${DEFINES}" + +.include "../../mk/endian.mk" +.if ${MACHINE_ENDIAN} == "big" +DEFINES+= -DSYS_BIG_ENDIAN +.elif ${MACHINE_ENDIAN} == "little" +DEFINES+= -DSYS_LITTLE_ENDIAN +.else +BROKEN= "Unknown endianness" +.endif + +.include "../../devel/SDL/buildlink3.mk" + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/rs ${LOCALBASE}/bin + ${INSTALL_DATA_DIR} ${LOCALBASE}/share/doc/REminiscence + ${INSTALL_DATA} ${WRKSRC}/README ${LOCALBASE}/share/doc/REminiscence + +.include "../../mk/bsd.pkg.mk" diff --git a/games/REminiscence/PLIST b/games/REminiscence/PLIST new file mode 100644 index 00000000000..6c62858728a --- /dev/null +++ b/games/REminiscence/PLIST @@ -0,0 +1,4 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2005/08/08 00:10:21 dillo Exp $ +bin/rs +share/doc/REminiscence/README +@dirrm share/doc/REminiscence diff --git a/games/REminiscence/distinfo b/games/REminiscence/distinfo new file mode 100644 index 00000000000..91929c43a03 --- /dev/null +++ b/games/REminiscence/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2005/08/08 00:10:21 dillo Exp $ + +SHA1 (REminiscence-0.1.6.tar.bz2) = 228284531638c1c928e681b1ccaf7ee6f2187b1f +RMD160 (REminiscence-0.1.6.tar.bz2) = cec5bd010149d5c1e33d730106db34f46db1555f +Size (REminiscence-0.1.6.tar.bz2) = 67820 bytes +SHA1 (patch-aa) = 65d9951e4c37a811b37bc51155d1d2cbc067d3d4 diff --git a/games/REminiscence/patches/patch-aa b/games/REminiscence/patches/patch-aa new file mode 100644 index 00000000000..c61b1372784 --- /dev/null +++ b/games/REminiscence/patches/patch-aa @@ -0,0 +1,20 @@ +$NetBSD: patch-aa,v 1.1.1.1 2005/08/08 00:10:21 dillo Exp $ + +--- Makefile.orig 2005-05-18 19:41:08.000000000 +0200 ++++ Makefile +@@ -2,11 +2,11 @@ + SDL_CFLAGS = `sdl-config --cflags` + SDL_LIBS = `sdl-config --libs` + +-DEFINES = -DSYS_LITTLE_ENDIAN ++#DEFINES = -DSYS_LITTLE_ENDIAN + +-CXX = g++ +-CXXFLAGS:= -g -O -Wall -Wuninitialized -Wno-unknown-pragmas -Wshadow -Wimplicit +-CXXFLAGS+= -Wundef -Wreorder -Wwrite-strings -Wnon-virtual-dtor -Wno-multichar ++#CXX = g++ ++#CXXFLAGS:= -g -O -Wall -Wuninitialized -Wno-unknown-pragmas -Wshadow -Wimplicit ++#CXXFLAGS+= -Wundef -Wreorder -Wwrite-strings -Wnon-virtual-dtor -Wno-multichar + CXXFLAGS+= $(SDL_CFLAGS) $(DEFINES) + + SRCS = collision.cpp cutscene.cpp file.cpp game.cpp graphics.cpp locale.cpp \ |