1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00
freebsd-ports/games/openclonk/Makefile
Kevin Bowling da3162c7c9 graphics/mesa-libs: Bump reverse deps for libglvnd
Per discussion with bapt on helping pkg handle the changing of these
deps and avoiding impossible upgrade senarios.

PR:		246767
Reviewed by:	manu, bapt
Approved by:	x11
Differential Revision:	https://reviews.freebsd.org/D30824
2021-06-22 11:53:08 -07:00

53 lines
1.4 KiB
Makefile

# Created by: Kevin Zheng <kevinz5000@gmail.com>
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
LICENSE= ISCL CC0-1.0
LICENSE_COMB= multi
LICENSE_FILE_ISCL= ${WRKSRC}/COPYING
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 desktop-file-utils gl gnome jpeg openal \
pkgconfig sdl tar:bzip2 xorg
USE_GL= gl glew glu
USE_SDL= sdl2
USE_XORG= x11 xpm
INSTALLS_ICONS= yes
CMAKE_ARGS= -DAudio_TK:STRING="OpenAL"
LDFLAGS_i386= -Wl,-znotext
.include <bsd.port.options.mk>
.if ${ARCH} == powerpc64le
CFLAGS+= -DNO_WARN_X86_INTRINSICS
USES+= compiler:gcc-c++11-lib
.else
USES+= compiler:c++14-lang
.endif
post-patch:
@${REINPLACE_CMD} -e 's|DESTINATION games|DESTINATION bin|' \
-e 's|share/games|share|' ${WRKSRC}/CMakeLists.txt
.include <bsd.port.mk>