aboutsummaryrefslogtreecommitdiffstats
path: root/games/nil/Makefile
blob: 849a5f171d001f63b8dc1d2d667663d7f0f8afc4 (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
# New ports collection makefile for:    nil
# Date created:             28 September 2000
# Whom:                 Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   nil
PORTVERSION=    000928
CATEGORIES= games
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE} \
        ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= ${PORTNAME} sobomax

MAINTAINER= sobomax@FreeBSD.org
COMMENT=    A multiplayer game that can be described as Quake in 2D or Worms done right

LIB_DEPENDS=    SDL_mixer.2:${PORTSDIR}/audio/sdl_mixer

.include <bsd.port.pre.mk>

.if ${OSVERSION} >= 500113
BROKEN=         "Does not compile (bad C++ code)"
.endif

WRKSRC=     ${WRKDIR}/${PORTNAME}/${PORTNAME}

SDL_CONFIG?=    ${LOCALBASE}/bin/sdl11-config

USE_GMAKE=  yes
GNU_CONFIGURE=  yes
MAKE_ENV=   SDL_CONFIG="${SDL_CONFIG}"

pre-patch:
    @find ${WRKSRC} \( -name "*.[ch]" -or -name "*.cpp" \) | \
        xargs ${PERL} -pi -e 's|"SDL/|"|g ; s|<SDL/|<|g'
    @find ${WRKSRC}/.. -type d -name CVS | xargs ${RM} -rf

post-configure:
    @${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/nil/configuration.cpp

post-install:
    @${MKDIR} ${PREFIX}/share/nil
    @cd ${WRKSRC}/..; tar cf - gfx | \
        (cd ${PREFIX}/share/nil ; ${TAR} --unlink -xf - )
    @${INSTALL_MAN} ${WRKSRC}/../docs/NiL-HOWTO.txt ${PREFIX}/share/nil/README
    @${ECHO_MSG} ""
    @${ECHO_MSG} "See ${PREFIX}/share/nil/README for usage instructions."
    @${ECHO_MSG} ""

.include <bsd.port.post.mk>