blob: 3c8b0bb3ce133768da7dfc55ce825554e1af6e06 (
plain)
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
|
PORTNAME= veloren
PORTVERSION= s20240306
CATEGORIES= games wayland
PKGNAMESUFFIX= -weekly
MAINTAINER= jbeich@FreeBSD.org
COMMENT= Multiplayer voxel RPG written in Rust (weekly snapshot)
WWW= https://veloren.net/
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_aarch64= https://github.com/rust-lang/libc/issues/3217
BROKEN_i386= https://github.com/bytecodealliance/wasmtime/issues/7924
ONLY_FOR_ARCHS= aarch64 amd64 i386
ONLY_FOR_ARCHS_REASON= unsupported platform by https://github.com/wasmerio/wasmer
LIB_DEPENDS= libzstd.so:archivers/zstd \
libasound.so:audio/alsa-lib \
libudev.so:devel/libudev-devd \
libshaderc_shared.so:graphics/shaderc
RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-plugins \
${LOCALBASE}/lib/libvulkan.so:graphics/vulkan-loader
USES= cargo xorg
USE_XORG= xcb
USE_GITLAB= yes
GL_TAGNAME= v0.15.0-1321-g130aa2aa9 # git describe --match='v[0-9]*' weekly
CARGO_ENV= VELOREN_USERDATA_STRATEGY=system SHADERC_LIB_DIR="${LOCALBASE}/lib"
PLIST_FILES= bin/${PORTNAME}-server-cli \
bin/${PORTNAME}-voxygen \
share/applications/net.veloren.veloren.desktop \
share/metainfo/net.veloren.veloren.metainfo.xml \
share/pixmaps/net.veloren.veloren.png
PORTDATA= *
CONFLICTS_INSTALL= ${PORTNAME}
.if ${MACHINE_ARCH} == i386
# https://github.com/rust-lang/rust/issues/85598
CARGO_ENV+= CARGO_PROFILE_RELEASE_LTO=false
.endif
# Fixes error "Instruction does not dominate all uses!"
LTO_UNSAFE= yes
# https://gitlab.com/veloren/veloren/issues/264
CARGO_ENV+= RUSTC_BOOTSTRAP=1
# XXX https://github.com/rust-lang/cargo/issues/4101
CARGO_INSTALL_PATH= server-cli voxygen
post-patch:
# .git/ directory is missing, so don't abort if git binary is also missing
@${REINPLACE_CMD} -e 's/"git"/"${TRUE}"/' \
${WRKSRC}/common/build.rs
# Extract (snapshot) version from the port instead of empty file
@${REINPLACE_CMD} -e '/GIT_HASH/s/=.*/= "${GL_TAGNAME:C/.*-g(.{8}).*/\1/}";/' \
-e "/GIT_DATE.*static/s/=.*/= \"$$(date -ur $$(${AWK} '/TIMESTAMP/ { print $$3 }' \
${DISTINFO_FILE}) +'%Y-%m-%d-%H:%M')\";/" \
${WRKSRC}/common/src/util/mod.rs
# Respect PREFIX != /usr/local for system assets
@${REINPLACE_CMD} -e 's,/usr/share,${DATADIR:H},' \
${WRKSRC}/common/assets/src/lib.rs
do-install:
# XXX [workspace.dependencies] breaks rebuild in subdirs
.for f in ${CARGO_INSTALL_PATH}
${INSTALL_PROGRAM} ${CARGO_TARGET_DIR}/*/*/${PORTNAME}-$f \
${STAGEDIR}${PREFIX}/bin
.endfor
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
(cd ${WRKSRC} && ${COPYTREE_SHARE} assets ${STAGEDIR}${DATADIR})
${RLN} ${STAGEDIR}${DATADIR}/assets/voxygen/*.desktop \
${STAGEDIR}${PREFIX}/share/applications
${RLN} ${STAGEDIR}${DATADIR}/assets/voxygen/*.png \
${STAGEDIR}${PREFIX}/share/pixmaps
${MKDIR} ${STAGEDIR}${PREFIX}/share/metainfo
${RLN} ${STAGEDIR}${DATADIR}/assets/voxygen/*.metainfo.xml \
${STAGEDIR}${PREFIX}/share/metainfo
.include <bsd.port.mk>
|