1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-17 08:01:36 +00:00
freebsd-ports/games/triplane/Makefile
Alexey Dokuchaev e7ede9d9fb - Try to fix parallel builds: setting ALL_TARGET to "depend all" would not
work in -jX case due to races; thus, move depend generation to pre-build
- While here, convert USE_GMAKE and fix badly indented line by one tabstop
- As advised by the Porter's Handbook, terminate URL with a slash (in port
  description text)

Reported by:	pointyhat-west
2013-07-26 15:16:14 +00:00

30 lines
672 B
Makefile

# Created by: Ganael Laplanche <ganael.laplanche@martymac.org>
# $FreeBSD$
PORTNAME= triplane
PORTVERSION= 1.08.r20130224
CATEGORIES= games
MASTER_SITES= http://contribs.martymac.org/FreeBSD-ports/distfiles/ \
SF/${PORTNAME}
DISTNAME= ${PORTNAME}-classic-${PORTVERSION}
MAINTAINER= martymac@FreeBSD.org
COMMENT= Port of the original Triplane Turmoil game
LICENSE= GPLv3
USES= gmake
USE_SDL= sdl mixer
WRKSRC= ${WRKDIR}/${DISTNAME}
CFLAGS+= -DTRIPLANE_DATA=\\\"${DATADIR}\\\"
MAKE_ENV= DATADIR="${DATADIR}"
MAN6= triplane.6
# ALL_TARGET="depend all" would not work in -jX case due to races
pre-build:
${GMAKE} -C ${BUILD_WRKSRC} depend
.include <bsd.port.mk>