summaryrefslogtreecommitdiff
path: root/games/REminiscence/Makefile
diff options
context:
space:
mode:
authordillo <dillo>2005-08-08 00:10:21 +0000
committerdillo <dillo>2005-08-08 00:10:21 +0000
commit84dd8f61a25ccc81e0a1dd2fb80d74c932dcfa19 (patch)
treebbd2e3663e75a9fcf96d9f94e26bfa1ac106337e /games/REminiscence/Makefile
parent0278232c609069707067818bab43c1e883fb6e71 (diff)
downloadpkgsrc-84dd8f61a25ccc81e0a1dd2fb80d74c932dcfa19.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/REminiscence/Makefile')
-rw-r--r--games/REminiscence/Makefile32
1 files changed, 32 insertions, 0 deletions
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"