summaryrefslogtreecommitdiff
path: root/games/vectoroids/Makefile
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2003-06-27 09:11:21 +0000
committerKris Kennaway <kris@FreeBSD.org>2003-06-27 09:11:21 +0000
commitf1c6a26e682c15561676572960d0423d26598760 (patch)
tree65ae1d81a32c7c6dd310ecc2845eb373a52ef409 /games/vectoroids/Makefile
parento due to teTeX update to 2.0.2, update pkg-plist (diff)
Add vectoroids 1.1.0.
Vectoroids is an SDL Asteroids clone, with quick game-play and pretty good graphics. Obtained from: OpenBSD
Notes
Notes: svn path=/head/; revision=83738
Diffstat (limited to 'games/vectoroids/Makefile')
-rw-r--r--games/vectoroids/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/games/vectoroids/Makefile b/games/vectoroids/Makefile
new file mode 100644
index 000000000000..07e5aa222dcc
--- /dev/null
+++ b/games/vectoroids/Makefile
@@ -0,0 +1,36 @@
+# New ports collection makefile for: vectoroids
+# Date created: 27 June 2003
+# Whom: Kris Kennaway <kris@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= vectoroids
+PORTVERSION= 1.1.0
+CATEGORIES= games
+MASTER_SITES= ftp://ftp.sonic.net/pub/users/nbs/unix/x/vectoroids/
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= "vector-based, pretty, Asteroids clone"
+
+LIB_DEPENDS= SDL-1.1.5:${PORTSDIR}/devel/sdl12 \
+ SDL_mixer.2:${PORTSDIR}/audio/sdl_mixer \
+ SDL_image.10:${PORTSDIR}/graphics/sdl_image
+
+USE_X_PREFIX= YES
+USE_GMAKE= YES
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/vectoroids ${PREFIX}/bin
+ ${MKDIR} ${PREFIX}/share/vectoroids/images
+ ${INSTALL_DATA} ${WRKSRC}/data/images/* ${PREFIX}/share/vectoroids/images
+ ${MKDIR} ${PREFIX}/share/vectoroids/music
+ ${INSTALL_DATA} ${WRKSRC}/data/music/* ${PREFIX}/share/vectoroids/music
+ ${MKDIR} ${PREFIX}/share/vectoroids/sounds
+ ${INSTALL_DATA} ${WRKSRC}/data/sounds/* ${PREFIX}/share/vectoroids/sounds
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${PREFIX}/share/doc/vectoroids
+ ${INSTALL_DATA} ${WRKSRC}/README.txt ${PREFIX}/share/doc/vectoroids/README
+.endif
+
+.include <bsd.port.mk>