1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/games/d2x/Makefile
2009-01-31 22:36:36 +00:00

54 lines
1.1 KiB
Makefile

# New ports collection makefile for: d2x
# Date created: 5 Apr 2004
# Whom: Radim Kolar
#
# $FreeBSD$
#
PORTNAME= d2x
PORTVERSION= 0.2.5
PORTREVISION= 4
CATEGORIES= games
MASTER_SITES= http://offload2.icculus.org:9090/d2x/src/
MAINTAINER= ports@FreeBSD.org
COMMENT= Unix port of Descent 2 Game
GNU_CONFIGURE= yes
USE_SDL= sdl image
USE_GMAKE= yes
CONFIGURE_ARGS= --disable-network --disable-debug
PORTDOCS= README TODO NEWS AUTHORS readme.txt installation.txt
PLIST_FILES= bin/d2x
.ifdef(WITH_OPENGL)
USE_GL= glut
CONFIGURE_ARGS+=--with-opengl
CONFIGURE_ENV=LDFLAGS=-L${LOCALBASE}/lib CPPFLAGS=-I${LOCALBASE}/include
.endif
pre-everything::
.ifndef(WITH_OPENGL)
@${ECHO_MSG} ""
@${ECHO_MSG} "Define WITH_OPENGL to use OpenGL for 3D graphics"
@${ECHO_MSG} ""
.endif
do-install:
.ifdef(WITH_OPENGL)
${INSTALL} ${WRKSRC}/d2x-gl ${PREFIX}/bin/d2x
.else
${INSTALL} ${WRKSRC}/d2x-sdl ${PREFIX}/bin/d2x
.endif
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>