From 5aae8f253cf9ad0e9664b9a270d60f11d25e0183 Mon Sep 17 00:00:00 2001 From: pav Date: Sat, 18 Mar 2006 22:14:20 +0000 Subject: 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. It allows you to rediscover and play it on modern machines using the original datafiles. WWW: http://membres.lycos.fr/cyxdown/reminiscence/ PR: ports/93168 Submitted by: Dmitry Marakasov --- games/reminiscence/Makefile | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 games/reminiscence/Makefile (limited to 'games/reminiscence/Makefile') diff --git a/games/reminiscence/Makefile b/games/reminiscence/Makefile new file mode 100644 index 000000000000..10a8e12b5f88 --- /dev/null +++ b/games/reminiscence/Makefile @@ -0,0 +1,44 @@ +# New ports collection makefile for: REminiscence +# Date created: 11 Feb 2005 +# Whom: Dmitry Marakasov +# +# $FreeBSD$ +# + +PORTNAME= REminiscence +PORTVERSION= 0.1.8 +CATEGORIES= games +MASTER_SITES= http://membres.lycos.fr/cyxdown/reminiscence/ + +MAINTAINER= amdmi3@mail.ru +COMMENT= A rewritten engine for Flashback + +USE_BZIP2= yes +USE_GMAKE= yes +USE_SDL= sdl + +ALL_TARGET= rs + +PORTDOCS= README + +post-patch: + @${REINPLACE_CMD} -e '/^CXX =/ d' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e '/^CXXFLAGS:=/ d' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e '/^CXXFLAGS+=.*-W/ d' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|sdl-config|${SDL_CONFIG}|' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|DATA|${DATADIR}/data|' ${WRKSRC}/main.cpp + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/rs ${PREFIX}/bin/remin + ${MKDIR} ${DATADIR}/data + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor +.endif + @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} + +.include -- cgit