mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
6eb0babadf
- Avoid pkg-plist due to short plist - Give maintainership to submitter PR: ports/170837 Submitted by: nemysis <nemysis@gmx.ch>
53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
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= 14
|
|
CATEGORIES= games
|
|
MASTER_SITES= ftp://ftp.tuxpaint.org/unix/x/vectoroids/src/ \
|
|
ftp://ftp.billsgames.com/unix/x/vectoroids/src/
|
|
|
|
MAINTAINER= nemysis@gmx.ch
|
|
COMMENT= Vector-based rock-shooting game similar to Asteroids
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_GMAKE= yes
|
|
USE_SDL= image mixer sdl
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
share/pixmaps/${PORTNAME}.png
|
|
|
|
MAN6= ${PORTNAME}.6
|
|
|
|
PORTDATA= *
|
|
PORTDOCS= CHANGES.txt README.txt
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
# Executable
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
# Data
|
|
(cd ${WRKSRC}/data && ${COPYTREE_SHARE} "images music sounds" ${DATADIR})
|
|
|
|
# Pixmaps
|
|
${INSTALL_DATA} ${WRKSRC}/data/images/icon.png ${PREFIX}/share/pixmaps/${PORTNAME}.png
|
|
|
|
# Documentation
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
. for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
. endfor
|
|
.endif
|
|
${INSTALL_MAN} ${WRKSRC}/${MAN6} ${MAN6PREFIX}/man/man6
|
|
|
|
.include <bsd.port.mk>
|