Drop no longer needed `pre-extract' target now that OpenBVE's custom OpenTK.GLControl component had been fixed (version bumped to 1.0.1). Reported by: portscout
89 lines
2.6 KiB
Makefile
89 lines
2.6 KiB
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
|
|
PORTNAME= ${GH_PROJECT:tl}
|
|
PORTVERSION= 1.8.2.2
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Realistic 3D train/railway simulator
|
|
|
|
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-release
|
|
|
|
NUGET_DEPENDS= CS-Script.lib=3.30.3 \
|
|
DotNetZip=1.13.8 \
|
|
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.30.1 \
|
|
System.Buffers=4.5.1 \
|
|
System.ComponentModel.Annotations=4.7.0 \
|
|
System.Memory=4.5.4 \
|
|
System.Numerics.Vectors=4.5.0 \
|
|
System.Reactive=4.4.1 \
|
|
System.Runtime.CompilerServices.Unsafe=4.7.1 \
|
|
System.Runtime.CompilerServices.Unsafe=5.0.0 \
|
|
System.Text.Encoding.CodePages=5.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} > 5.10
|
|
BROKEN= fails to build with Mono version ${MONO_DEFAULT}: The imported project "/usr/local/lib/mono/msbuild/15.0/bin/Roslyn/Microsoft.CSharp.Core.targets" was not found
|
|
.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_release/AtsPluginProxy.*
|
|
${CP} -a ${WRKSRC}/bin_release ${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
|
|
@${REINPLACE_CMD} -e 's,linux,${OPSYS:tl},' \
|
|
${STAGEDIR}${DATADIR}/OpenTK.dll.config
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/debian/,} \
|
|
${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.post.mk>
|