aboutsummaryrefslogtreecommitdiffstats
path: root/games/heroes/Makefile
blob: 0fa6853520f477f84f93dd0023a561b8eef7ddad (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
65
66
67
68
69
70
# New ports collection makefile for:    heroes
# Date created:             15 August 2000
# Whom:                 Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   heroes
PORTVERSION=    0.21
CATEGORIES= games
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTFILES=  ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \
        ${DATADISTNAME}${EXTRACT_SUFX} \
        ${SOUNDISTNAME}${EXTRACT_SUFX} \
        ${MUSICDISTNAME}${EXTRACT_SUFX}
#PATCH_SITES=   ftp://heroes.sourceforge.net/pub/heroes/patches/
#PATCHFILES=    heroes-0.7-errata.patch

MAINTAINER= sobomax@FreeBSD.org

LIB_DEPENDS=    SDL_mixer.2:${PORTSDIR}/audio/sdl_mixer \
        gnugetopt.1:${PORTSDIR}/devel/libgnugetopt \
        iconv.3:${PORTSDIR}/converters/libiconv

DATAVERSION=    1.5
SOUNDVERSION=   1.0
MUSICVERSION=   1.0
DATADISTNAME=   ${PORTNAME}-data-${DATAVERSION}
SOUNDISTNAME=   ${PORTNAME}-sound-effects-${SOUNDVERSION}
MUSICDISTNAME=  ${PORTNAME}-sound-tracks-${MUSICVERSION}
DATASRC=    ${WRKDIR}/${DATADISTNAME}
SOUNDSRC=   ${WRKDIR}/${SOUNDISTNAME}
MUSICSRC=   ${WRKDIR}/${MUSICDISTNAME}
INSTPREFIX= ${PREFIX}/share/heroes

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

USE_X_PREFIX=   yes
USE_GMAKE=  yes
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --with-sdl_mixer=${LOCALBASE}
CONFIGURE_ENV=  SDL_CONFIG="${SDL_CONFIG}" \
        LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt ${PTHREAD_LIBS} -lsmpeg" \
        CPPFLAGS="-I${LOCALBASE}/include"
CONFIGURE_TARGET=   --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}

MAN6=       heroes.6 heroeslvl.6

pre-patch:
    @for dir in ${DATASRC} ${SOUNDSRC} ${MUSICSRC}; do \
        find $${dir} -name "Makefile*" | xargs ${RM}; \
    done
    @${RM} -f ${WRKSRC}/lib/getopt.h
    @${LN} -sf ${LOCALBASE}/include/getopt.h ${WRKSRC}/lib/getopt.h

post-install:
.for dir in levels pics tilesets
    ${MKDIR} ${INSTPREFIX}/${dir}
    ${INSTALL_DATA} ${DATASRC}/${dir}/* ${INSTPREFIX}/${dir}
.endfor
    ${MKDIR} ${INSTPREFIX}/sfx
    ${INSTALL_DATA} ${SOUNDSRC}/*.wav ${SOUNDSRC}/sfx.conf ${INSTPREFIX}/sfx
    ${MKDIR} ${INSTPREFIX}/mod
    ${INSTALL_DATA} ${MUSICSRC}/*.xm ${MUSICSRC}/sound.conf ${INSTPREFIX}/mod
    @install-info --section="X11 Games" \
        --entry="* heroes: (heroes).           Game of yore similar to the "Tron" and "Nibbles"" \
        ${PREFIX}/info/heroes.info ${PREFIX}/info/dir

.include <bsd.port.mk>