aboutsummaryrefslogtreecommitdiffstats
path: root/games/uhexen/Makefile
blob: 5b8eb5a50ad64dd43e7756513dc712600550a9e3 (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:    U-Hexen
# Date created:             10 February 2003
# Whom:                 Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   uhexen
PORTVERSION=    0.601
PORTREVISION=   7
CATEGORIES= games
MASTER_SITES=   http://uhexen.sourceforge.net/
DISTNAME=   ${PORTNAME}-latest

MAINTAINER= danfe@FreeBSD.org
COMMENT=    Yet another port of Hexen, popular game from Raven Software

USE_SDL=    mixer sdl
USE_GMAKE=  yes

OPTIONS=    WAD "Install demo-version WAD file"     on \
        MUSIC   "Enable support for in-game music"  on

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_WAD)
DISTFILES=  ${DISTNAME}${EXTRACT_SUFX} hexen.zip
EXTRACT_ONLY=   ${DISTNAME}${EXTRACT_SUFX}
EXTRACT_DEPENDS=    unzip:${PORTSDIR}/archivers/unzip
PLIST_SUB=  WAD=""
.else
PLIST_SUB=  WAD="@comment "
.endif

.if !defined(WITHOUT_MUSIC)
RUN_DEPENDS+=   ${LOCALBASE}/lib/timidity/goemon.cfg:${PORTSDIR}/audio/timidity
.endif

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

PLIST_FILES=    bin/uhexen %%DATADIR%%/.keep_me %%WAD%%%%DATADIR%%/hexen.wad
PLIST_DIRS= %%DATADIR%%

post-extract:
.if !defined(WITHOUT_WAD)
    @${LOCALBASE}/bin/unzip -qo ${DISTDIR}/hexen.zip \
        -d ${WRKSRC}
.endif

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/uhexen ${PREFIX}/bin
    @${MKDIR} ${DATADIR}
.if !defined(WITHOUT_WAD)
    ${INSTALL_DATA} ${WRKSRC}/hexen.wad ${DATADIR}
.endif
    @${TOUCH} ${DATADIR}/.keep_me

.include <bsd.port.post.mk>