aboutsummaryrefslogtreecommitdiffstats
path: root/games/rigsofrods/Makefile
blob: 37496c4657fd0e00902d971c502b70c1db18c17b (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# New ports collection makefile for:    rigsofrods
# Date created:     05 Mar 2009
# Whom:         Dmitry Marakasov <amdmi3@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   rigsofrods
PORTVERSION=    0.36.2
PORTREVISION=   4
CATEGORIES= games
MASTER_SITES=   SF
DISTFILES=  ${PORTNAME}-source-${PORTVERSION}${EXTRACT_SUFX} \
        ${PORTNAME}-contents-${PORTVERSION}${EXTRACT_SUFX}
EXTRACT_ONLY=   ${PORTNAME}-source-${PORTVERSION}${EXTRACT_SUFX}

MAINTAINER= amdmi3@FreeBSD.org
COMMENT=    Truck, car, airplane and boat simulator with advanced physics

LIB_DEPENDS=    zzip.13:${PORTSDIR}/devel/zziplib \
        freetype.9:${PORTSDIR}/print/freetype2 \
        CEGUIBase-0.7.7.0:${PORTSDIR}/graphics/cegui \
        freeimage.3:${PORTSDIR}/graphics/freeimage
BUILD_DEPENDS=  ${LOCALBASE}/lib/libOIS.so:${PORTSDIR}/devel/ois \
        unzip:${PORTSDIR}/archivers/unzip
RUN_DEPENDS=    ${LOCALBASE}/lib/libOIS.so:${PORTSDIR}/devel/ois \
        xset:${PORTSDIR}/x11/xset

USE_ZIP=    yes
USE_OPENAL= al
USE_XORG=   x11 xt xaw sm ice xext
WRKSRC=     ${WRKDIR}/${PORTNAME}-source-${PORTVERSION}/build
USE_WX=     2.6+
WX_UNICODE= yes
MAKE_JOBS_SAFE= yes

DEPRECATED= BROKEN for more than 6 month
EXPIRATION_DATE=    2012-05-10

BROKEN=     Does not work with CEGUI 0.7.x

USE_CMAKE=  yes
# CG unavailable for FreeBSD
CMAKE_ARGS= -DROR_BUILD_HYDRAX=TRUE \
        -DROR_BUILD_PAGED=TRUE \
        -DROR_BUILD_LUASCRIPT=TRUE \
        -DROR_BUILD_CONFIGURATOR=TRUE \
        -DOGRE_BUILD_PLUGIN_CG=FALSE \
        -DLOCALBASE="${LOCALBASE}" \
        -DwxWidgets_CONFIG_EXECUTABLE="${WX_CONFIG}"

PORTDOCS=   *

SUB_FILES=  RoR.sh rorconfig.sh

LIB_FILES=  dependencies/ogrenew/OgreMain/libOgreMain.so.1 \
        dependencies/ogrenew/PlugIns/OctreeSceneManager/Plugin_OctreeSceneManager.so \
        dependencies/ogrenew/PlugIns/ParticleFX/Plugin_ParticleFX.so \
        dependencies/ogrenew/RenderSystems/GL/RenderSystem_GL.so \
        dependencies/Caelum-2006-11-09/libcaelum.so \
        dependencies/mygui/libmygui.so \
        dependencies/hydrax/libhydrax.so \
        dependencies/mysocketw/libmysocketw.so

.include <bsd.port.pre.mk>

.if ${ARCH} == "sparc64"
BROKEN=     Does not compile on sparc64
.endif

post-extract:
    @${RM} -rf ${WRKSRC}/dependencies/ogrenew/Dependencies

post-patch:
    @${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|; \
        s|%%PREFIX%%|${PREFIX}|' \
        ${WRKSRC}/main/source/Settings.cpp \
        ${WRKSRC}/configurator/source/configurator.cpp
.if ${OSVERSION} >= 800067
# after strnlen was introduced, use it
    @${REINPLACE_CMD} -e '/strnlen/ d' ${WRKSRC}/main/CMakeLists.txt \
        ${WRKSRC}/configurator/CMakeLists.txt
.endif

do-install:
# libs
    ${MKDIR} ${PREFIX}/lib/${PORTNAME}
.for f in ${LIB_FILES}
    ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/lib/${PORTNAME}
.endfor

# binaries
    ${MKDIR} ${PREFIX}/libexec/${PORTNAME}
    ${INSTALL_PROGRAM} ${WRKSRC}/main/RoR ${PREFIX}/libexec/${PORTNAME}
    ${INSTALL_PROGRAM} ${WRKSRC}/configurator/rorconfig ${PREFIX}/libexec/${PORTNAME}

# data
    ${MKDIR} ${DATADIR}
    ${SED} -e '/Plugin_CgProgramManager/ s|^|#|' \
        < ${WRKSRC}/bin/release/linux/plugins.cfg \
        > ${DATADIR}/plugins.cfg
    ${UNZIP_CMD} -qq -o -d ${DATADIR} ${DISTDIR}/${PORTNAME}-contents-${PORTVERSION}.zip \
        languages/\* resources/\* skeleton/\* streams/\*

# wrappers
    ${INSTALL_SCRIPT} ${WRKDIR}/RoR.sh ${PREFIX}/bin/RoR
    ${INSTALL_SCRIPT} ${WRKDIR}/rorconfig.sh ${PREFIX}/bin/rorconfig

#docs
.if !defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
    ${UNZIP_CMD} -qq -o -d ${DOCSDIR} ${DISTDIR}/${PORTNAME}-contents-${PORTVERSION}.zip \
        \*.pdf
.endif

post-install:
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.post.mk>