mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
1438b2af11
Reported by: portscout
92 lines
2.6 KiB
Makefile
92 lines
2.6 KiB
Makefile
PORTNAME= ${GH_PROJECT:tl}
|
|
PORTVERSION= 1.9.2.4
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Realistic 3D train/railway simulator
|
|
WWW= https://openbve-project.net/
|
|
|
|
LICENSE= PD
|
|
|
|
BUILD_DEPENDS= msbuild:devel/msbuild
|
|
LIB_DEPENDS= libgdiplus.so:x11-toolkits/libgdiplus
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= leezer3
|
|
GH_PROJECT= OpenBVE
|
|
|
|
USES= gmake mono:nuget openal:soft sdl
|
|
USE_SDL= sdl2
|
|
MAKEFILE= makefile
|
|
ALL_TARGET= all-${WITH_DEBUG:?debug:release}
|
|
|
|
NUGET_DEPENDS= CS-Script.lib=3.30.3 \
|
|
DotNetZip=1.16.0 \
|
|
LibUsbDotNet=2.2.29 \
|
|
Mono.Cecil=0.11.3 \
|
|
NAudio.Vorbis=1.2.0 \
|
|
NAudio=1.10.0 \
|
|
NLayer.NAudioSupport=1.0.0 \
|
|
NLayer=1.12.0 \
|
|
NVorbis=0.10.1 \
|
|
OpenTK-OpenBVE=1.0.2 \
|
|
OpenTK.GLControl-OpenBVE=1.0.1 \
|
|
Prism.Core=7.2.0.1422 \
|
|
ReactiveProperty.Core=7.1.0 \
|
|
ReactiveProperty=7.1.0 \
|
|
SharpCompress=0.32.2 \
|
|
System.Buffers=4.5.1 \
|
|
System.ComponentModel.Annotations=4.7.0 \
|
|
System.Memory=4.5.5 \
|
|
System.Numerics.Vectors=4.5.0 \
|
|
System.Reactive=4.4.1 \
|
|
System.Runtime.CompilerServices.Unsafe=6.0.0 \
|
|
System.Text.Encoding.CodePages=6.0.0 \
|
|
System.Threading.Tasks.Extensions=4.5.4 \
|
|
System.ValueTuple=4.5.0 \
|
|
Ude.NetStandard=1.2.0
|
|
|
|
DATADIR= ${PREFIX}/lib/${PORTNAME}
|
|
PORTDOCS= changelog.md credits.md routes-and-trains.txt
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(MONO_DEFAULT) && ${MONO_DEFAULT} > 6
|
|
BROKEN= fails to build with Mono version ${MONO_DEFAULT}: error MSB4184: The expression ""Program.cs".GetPathsOfAllDirectoriesAbove()" cannot be evaluated. Method 'System.String.GetPathsOfAllDirectoriesAbove' not found.
|
|
.endif
|
|
|
|
.if defined(WITH_DEBUG)
|
|
PLIST_SUB+= DEBUG="" RELEASE="@comment "
|
|
.else
|
|
PLIST_SUB+= RELEASE="" DEBUG="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/TargetFrameworkVersion/s,4\.7\.2,4.6.1,' \
|
|
${WRKSRC}/source/TrainEditor2/TrainEditor2.csproj
|
|
|
|
do-install:
|
|
# This is Windows only, so can be removed
|
|
${RM} ${WRKSRC}/bin_[dr]*/AtsPluginProxy.*
|
|
${CP} -a ${WRKSRC}/bin_[dr]* ${STAGEDIR}${DATADIR}
|
|
.for script program in openbve OpenBve openbve-objectviewer ObjectViewer \
|
|
openbve-routeviewer RouteViewer
|
|
${PRINTF} '#!/bin/sh\n\nexec mono ${DATADIR}/${program}.exe\
|
|
"$$@"\n' > ${STAGEDIR}${PREFIX}/bin/${script}
|
|
${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/${script}
|
|
.endfor
|
|
${INSTALL_MAN} ${WRKSRC}/debian/*.6 ${STAGEDIR}${MANPREFIX}/man/man6
|
|
${INSTALL_DATA} ${WRKSRC}/debian/openbve.desktop \
|
|
${STAGEDIR}${PREFIX}/share/applications
|
|
${INSTALL_DATA} ${WRKSRC}/debian/openbve.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/debian/,} \
|
|
${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.post.mk>
|