aboutsummaryrefslogtreecommitdiffstats
path: root/games/mirrormagic/Makefile
blob: d6be7227240acce681e3b1fb91c9ed566ba3bbe8 (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
# New ports collection makefile for:    mirrormagic
# Date created:             1 April 1998
# Whom:                 Andrey Zakhvatov
#
# $FreeBSD$
#

PORTNAME=   mirrormagic
PORTVERSION=    2.0.2
PORTREVISION=   2
CATEGORIES= games
MASTER_SITES=   http://www.artsoft.org/RELEASES/unix/mirrormagic/

MAINTAINER= ports@FreeBSD.org
COMMENT=    An arcade style game with stereo sound for X Window System

USE_GMAKE=  yes
MAKE_ARGS=  CC="${CC}" MAKE="${GMAKE}" OPTIONS="${CFLAGS}" \
        RO_GAME_DIR="${DATADIR}" RW_GAME_DIR="${DATADIR}/scores" \
        X11_PATH="${X11BASE}"

.if defined(WITH_SDL)
USE_SDL=    image mixer sdl
ALL_TARGET= sdl
.else
USE_XLIB=   yes
ALL_TARGET= x11
.endif

.include <bsd.port.pre.mk>

.if ${OSVERSION} >= 700042
BROKEN=     Broken with gcc 4.2
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|sdl-config|$$(SDL_CONFIG)|g' \
        ${WRKSRC}/src/Makefile
    @${REINPLACE_CMD} -e 's|machine/soundcard.h|sys/soundcard.h|' \
        ${WRKSRC}/src/libgame/sound.h
    @${REINPLACE_CMD} -e 's|machine/joystick.h|sys/joystick.h|' \
        ${WRKSRC}/src/tools.c

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/mirrormagic ${PREFIX}/bin
    @${MKDIR} ${DATADIR}
    ${TAR} -C ${WRKSRC} -cf - graphics levels music scores sounds | \
        ${TAR} -C ${DATADIR} -xf -
    @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DATADIR}
    @${CHMOD} 777 ${DATADIR}/scores
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for file in CHANGES CREDITS README
    ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.post.mk>