aboutsummaryrefslogtreecommitdiffstats
path: root/games/d2x/Makefile
blob: 39d24bd57ceb0cc9bbfd400324aa90a6c15c05ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# New ports collection makefile for:    d2x
# Date created:     5 Apr 2004
# Whom:         Radim Kolar
#
# $FreeBSD$
#

PORTNAME=   d2x
PORTVERSION=    0.2.5
PORTREVISION=   11
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
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
.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>