diff options
author | Matthew Hunt <mph@FreeBSD.org> | 1998-05-17 05:43:37 +0000 |
---|---|---|
committer | Matthew Hunt <mph@FreeBSD.org> | 1998-05-17 05:43:37 +0000 |
commit | 9414530b468d609eac90e10d5f40bb8176a2584b (patch) | |
tree | 4d73990a663acd4fe921bd3ef28ea40a2dccb135 /games/maelstrom/Makefile | |
parent | Activate tkfont. (diff) |
Import of Maelstrom, a nifty Asteroids-like game. In its original
Macintosh form, it addicted a former roommate for the better part of
a semester.
PR: 6654
Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Notes
Notes:
svn path=/head/; revision=11019
Diffstat (limited to 'games/maelstrom/Makefile')
-rw-r--r-- | games/maelstrom/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/games/maelstrom/Makefile b/games/maelstrom/Makefile new file mode 100644 index 000000000000..3a52af72a636 --- /dev/null +++ b/games/maelstrom/Makefile @@ -0,0 +1,47 @@ +# New ports collection makefile for: Maelstrom +# Version required: 2.0.6 +# Date created: 13 May 1998 +# Whom: Andrey Zakhvatov +# +# $Id$ +# + +DISTNAME= Maelstrom-1.4.3-L2.0.6-src +PKGNAME= maelstrom-2.0.6 +CATEGORIES= games x11 +MASTER_SITES= ${MASTER_SITE_SUNSITE} \ + ftp://ftp.devolution.com/pub/maelstrom/ +MASTER_SITE_SUBDIR= games/x11/networked + +MAINTAINER= andy@icc.surw.chel.su + +LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm + +USE_X11= yes +WRKSRC= ${WRKDIR}/Maelstrom + +do-configure: + @ ${CP} ${FILESDIR}/Makeflags ${WRKSRC} + +do-install: + @ ${INSTALL_PROGRAM} ${WRKSRC}/Maelstrom ${PREFIX}/bin + @ ${INSTALL_PROGRAM} ${WRKSRC}/Maelstrom_sound ${PREFIX}/bin + @ ${MKDIR} ${PREFIX}/share/Maelstrom +.for file in Fonts Sounds Sprites + @ ${INSTALL_DATA} ${WRKSRC}/Maelstrom\ ${file} ${PREFIX}/share/Maelstrom +.endfor + @ ${INSTALL_DATA} ${WRKSRC}/Maelstrom-Scores ${PREFIX}/share/Maelstrom + @ chown games:games ${PREFIX}/share/Maelstrom/Maelstrom-Scores + @ chmod 666 ${PREFIX}/share/Maelstrom/Maelstrom-Scores + @ ${MKDIR} ${PREFIX}/share/Maelstrom/Images + @ ${INSTALL_DATA} ${WRKSRC}/Images/*n ${PREFIX}/share/Maelstrom/Images + +.if !defined(NOPORTDOCS) + @ ${MKDIR} ${PREFIX}/share/doc/Maelstrom +.for file in Ambrosia.URL BUGS Changelog Copyright README README.Options README.network + @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/Maelstrom +.endfor + @ ${INSTALL_DATA} ${WRKSRC}/Doc/* ${PREFIX}/share/doc/Maelstrom +.endif + +.include <bsd.port.mk> |