freebsd-ports/games/d2x/Makefile
Florent Thoumie d4f0d0048a - Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
2007-05-19 20:36:56 +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= 2
CATEGORIES= games
MASTER_SITES= http://www.icculus.org/d2x/src/
MAINTAINER= ports@FreeBSD.org
COMMENT= Unix port of Descent 2 Game
GNU_CONFIGURE= yes
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
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= yes
CONFIGURE_ARGS+=--with-opengl
CONFIGURE_ENV=LDFLAGS=-L${X11BASE}/lib CPPFLAGS=-I${X11BASE}/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>