mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
c9ea361463
on sdl12-1.2.5
35 lines
889 B
Makefile
35 lines
889 B
Makefile
# New ports collection makefile for: vectoroids
|
|
# Date created: 27 June 2003
|
|
# Whom: Kris Kennaway <kris@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= vectoroids
|
|
PORTVERSION= 1.1.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= games
|
|
MASTER_SITES= ftp://ftp.sonic.net/pub/users/nbs/unix/x/vectoroids/src/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A vector-based, pretty, Asteroids clone
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_SDL= image mixer sdl
|
|
USE_GMAKE= yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/vectoroids ${PREFIX}/bin
|
|
@${MKDIR} ${DATADIR}/images
|
|
${INSTALL_DATA} ${WRKSRC}/data/images/* ${DATADIR}/images
|
|
@${MKDIR} ${DATADIR}/music
|
|
${INSTALL_DATA} ${WRKSRC}/data/music/* ${DATADIR}/music
|
|
@${MKDIR} ${DATADIR}/sounds
|
|
${INSTALL_DATA} ${WRKSRC}/data/sounds/* ${DATADIR}/sounds
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.txt ${DOCSDIR}/README
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|