MFH: r522567

games/arx-libertatis: fix build on GCC architectures

OpenAL needs C++11 compiler:
  /usr/local/lib/libopenal.so: undefined reference to
  `std:🧵:join()@GLIBCXX_3.4.11'

Approved by:	portmgr (fix build blanket)
This commit is contained in:
Piotr Kubaj 2020-01-10 12:47:29 +00:00
parent 879a904a25
commit ecdd0ea790
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/branches/2020Q1/; revision=522568

View File

@ -17,14 +17,13 @@ LICENSE_FILE= ${WRKSRC}/ARX_PUBLIC_LICENSE.txt
LIB_DEPENDS= libfreetype.so:print/freetype2
BUILD_DEPENDS= ${LOCALBASE}/include/boost/foreach.hpp:devel/boost-libs
USES= cmake gl openal sdl tar:xz
USES= cmake compiler:c++11-lang gl openal sdl tar:xz
USE_SDL= sdl
USE_GL= gl glew
LLD_UNSAFE= yes
CMAKE_ARGS= -DDATA_DIR=arx \
-DSTRICT_USE=ON \
-DBUILD_CRASHREPORTER=OFF
CFLAGS_powerpc64+= -mminimal-toc
SUB_FILES= pkg-message
@ -33,6 +32,12 @@ PORTDOCS= AUTHORS CHANGELOG README.md
OPTIONS_DEFINE= DOCS
OPTIONS_SUB= yes
.include <bsd.port.pre.mk>
.if defined(PPC_ABI) && ${PPC_ABI} == ELFv1
CFLAGS+= -mminimal-toc
.endif
post-patch:
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/CMakeLists.txt
@ -42,4 +47,4 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
.endfor
.include <bsd.port.mk>
.include <bsd.port.post.mk>