freebsd-ports/games/openclonk/Makefile
Kevin Zheng 35a33a5fa5 games/openclonk: Fix link on 14-CURRENT i386
Fix build on 14-CURRENT i386 by disabling dynamic relocation checks with
lld 15.

While here, since this port is BROKEN_powerpc64, remove the old powerpc
build flags.

PR:		271500
MFH:		2023Q2
2023-05-21 19:25:43 +02:00

48 lines
1.5 KiB
Makefile

PORTNAME= openclonk
DISTVERSION= 8.1
PORTREVISION= 3
DISTVERSIONSUFFIX= -src
CATEGORIES= games
MASTER_SITES= http://www.openclonk.org/builds/release/${DISTVERSION}/
MAINTAINER= kevinz5000@gmail.com
COMMENT= Multiplayer action game involving small and nimble humanoids
WWW= https://www.openclonk.org/
LICENSE= ISCL CC0-1.0
LICENSE_COMB= multi
LICENSE_FILE_ISCL= ${WRKSRC}/COPYING
BROKEN_aarch64= fails to compile: mmintrin.h:50:12: invalid conversion between vector type '__m64' (vector of 1 'long long' value) and integer type 'int' of different size
BROKEN_powerpc64= fails to compile: C4Texture.cpp:260:13: error: 'stoul' is not a member of 'std'
LIB_DEPENDS= libalut.so:audio/freealut \
libfreetype.so:print/freetype2 \
libminiupnpc.so:net/miniupnpc \
libogg.so:audio/libogg \
libpng.so:graphics/png \
libtinyxml.so:textproc/tinyxml \
libvorbis.so:audio/libvorbis
WRKSRC= ${WRKDIR}/openclonk-release-${PORTVERSION}-src
# make install has parallel issues with ninja
USES= cmake:noninja compiler:c++14-lang desktop-file-utils gl gnome jpeg openal \
pkgconfig sdl tar:bzip2 xorg
USE_GL= gl glew glu
USE_SDL= sdl2
USE_XORG= x11 xpm
CMAKE_ARGS= -DAudio_TK:STRING="OpenAL"
LDFLAGS_i386= -Wl,-znotext
.include <bsd.port.pre.mk>
.if ${COMPILER_TYPE} == "clang" && ${COMPILER_VERSION} >= 150
LDFLAGS_i386+= -Wl,--no-check-dynamic-relocations
.endif
post-patch:
@${REINPLACE_CMD} -e 's|DESTINATION games|DESTINATION bin|' \
-e 's|share/games|share|' ${WRKSRC}/CMakeLists.txt
.include <bsd.port.post.mk>