diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-06-27 09:11:21 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-06-27 09:11:21 +0000 |
commit | f1c6a26e682c15561676572960d0423d26598760 (patch) | |
tree | 65ae1d81a32c7c6dd310ecc2845eb373a52ef409 /games/vectoroids/Makefile | |
parent | f76762dfec13c94f6edeb43e21e52157e106ebf9 (diff) | |
download | ports-f1c6a26e682c15561676572960d0423d26598760.tar.gz ports-f1c6a26e682c15561676572960d0423d26598760.zip |
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/Makefile | 36 |
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> |