aboutsummaryrefslogtreecommitdiffstats
path: root/games/rocksndiamonds/Makefile
blob: bc03ef4ae791d2d8fea183cb4a4265efc9d25169 (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
# New ports collection makefile for:    rocksndiamonds
# Date created:     27 May 1999
# Whom:         Thomas Gellekum <tg@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   rocksndiamonds
PORTVERSION=    3.2.6.1
PORTREVISION=   1
CATEGORIES= games
MASTER_SITES=   http://www.artsoft.org/RELEASES/unix/rocksndiamonds/ \
        http://freebsd.unixfreunde.de/sources/

MAINTAINER= ports@FreeBSD.org
COMMENT=    Colorful Boulderdash'n'Emerald Mine'n'Sokoban'n'Stuff

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

MAN1=       rocksndiamonds.1

.if defined(WITH_SDL)
LIB_DEPENDS+=   smpeg:${PORTSDIR}/multimedia/smpeg
USE_SDL=    image mixer net sdl
ALL_TARGET= sdl
.else
USE_XORG=   x11 xpm xt
ALL_TARGET= x11
.endif

post-patch:
    @${REINPLACE_CMD} -e \
        's|sdl-config|$${SDL_CONFIG}|g' ${WRKSRC}/src/Makefile

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/rocksndiamonds ${PREFIX}/bin
    ${INSTALL_MAN} ${WRKSRC}/rocksndiamonds.1 ${MANPREFIX}/man/man1
    @${MKDIR} ${DATADIR}
.for dir in graphics levels music scores sounds
    @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${DATADIR})
.endfor
    @${CHMOD} 777 ${DATADIR}/scores
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for docfile in CHANGES ChangeLog CREDITS HARDWARE README TODO
    ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
.endfor
    @${MKDIR} ${DOCSDIR}/elements
    ${INSTALL_DATA} ${WRKSRC}/docs/elements/*.txt ${DOCSDIR}/elements
.endif

.include <bsd.port.mk>