aboutsummaryrefslogtreecommitdiffstats
path: root/games/naev/Makefile
blob: 7f98e905577f732da6e05404f9931609116ac1de (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
55
56
57
58
59
60
61
62
63
64
# New ports collection makefile for:    naev
# Date created:     2009-04-26
# Whom:         Jose Alonso Cardenas Marquez <acm@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   naev
PORTVERSION=    0.5.0
CATEGORIES= games
MASTER_SITES=   SF/${PORTNAME}/${PORTNAME}-${PORTVERSION} \
        ${MASTER_SITE_GOOGLE_CODE}
DIST_SUBDIR=    ${PORTNAME}

MAINTAINER= acm@FreeBSD.org
COMMENT=    A 2d action/rpg space game

LIB_DEPENDS=    png.6:${PORTSDIR}/graphics/png \
        freetype:${PORTSDIR}/print/freetype2
RUN_DEPENDS=    ${LOCALBASE}/share/${PORTNAME}/ndata-${PORTVERSION}:${PORTSDIR}/games/naev-data

USE_AUTOTOOLS=  automake:env aclocal:env autoconf:env
USE_BZIP2=  yes
GNU_CONFIGURE=  yes
USE_GL=     gl
USE_GMAKE=  yes
USE_GNOME=  libxml2
USE_SDL=    sdl image

CONFIGURE_ARGS= --with-ndata-path=${DATADIR}/ndata-${PORTVERSION}
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib

MAN6=       naev.6
PLIST_FILES=    bin/${PORTNAME}
SUB_FILES=  pkg-message

OPTIONS=    OPENAL      "Use the OpenAL sound backend"  on \
        SDL_MIXER   "Use the SDL_mixer sound backend"   on

.include <bsd.port.options.mk>

.if defined(WITH_OPENAL)
USE_OPENAL=     yes
CONFIGURE_ARGS+=    --with-openal=yes
.else
CONFIGURE_ARGS+=    --with-openal=no
.endif

.if defined(WITH_SDL_MIXER)
USE_SDL+=       mixer
CONFIGURE_ARGS+=    --with-sdlmixer=yes
.else
CONFIGURE_ARGS+=    --with-sdlmixer=no
.endif

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME}
    ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.6 ${PREFIX}/man/man6

post-install:
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>