mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
67676e1060
This is a port of Apogee's 3D action title Rise of the Triad, originally released in 1994. This port duplicates the functionality of the original game on modern operating systems, including Linux, Win32, OSX and now FreeBSD. In order to run game you'll need original game data. PR: ports/63049 Submitted by: Igor Pokrovsky <tiamat@comset.net>
39 lines
777 B
Makefile
39 lines
777 B
Makefile
# New ports collection makefile for: rottdc
|
|
# Date created: 18 Feb 2004
|
|
# Whom: Igor Pokrovsky <tiamat@comset.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rottdc
|
|
PORTVERSION= 1.0.2
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= sdl-dc
|
|
DISTNAME= ${PORTNAME}-1.0-2
|
|
|
|
MAINTAINER= tiamat@comset.net
|
|
COMMENT= Apogee's Rise Of The Triad source port
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_SDL= sdl mixer
|
|
USE_XLIB= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/rott
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rott ${PREFIX}/bin
|
|
.ifndef (NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/README ${DOCSDIR}
|
|
.for i in cheats cmdline
|
|
${INSTALL_DATA} ${WRKSRC}/${i}.txt ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|