Change log: (chronologically ordered) More OpenGL optimizations Full type information output for Lua documentation. Very useful for writing Lua scripts. A new -weaponspew command-line option for printing MediaVP-style statistics, plus a weapon comparison spreadsheet, to the debug log. Improved ship lookup behavior in SEXPs for improved performance. BPTC/BC7 texture compression support Refactoring and new features for the ship lab. Missile multi-lock. It's finally in an official build! Enhancements to the model code in preparation for cool features in 21.2. IPv6 support for multiplayer A lot of general fixes for multiplayer.
36 lines
877 B
Makefile
36 lines
877 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= fs2open
|
|
DISTVERSIONPREFIX= release_
|
|
DISTVERSION= 21_0_0
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= pkubaj@FreeBSD.org
|
|
COMMENT= Open source video engine of FreeSpace 2
|
|
|
|
LICENSE= VOLITION
|
|
LICENSE_NAME= Volition Copyright
|
|
LICENSE_FILE= ${WRKSRC}/Copying.md
|
|
LICENSE_PERMS= dist-mirror auto-accept
|
|
|
|
LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \
|
|
libpng.so:graphics/png \
|
|
libfreetype.so:print/freetype2
|
|
|
|
USES= cmake compiler:c++11-lib lua:51 jpeg openal pkgconfig sdl
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= scp-fs2open
|
|
GH_PROJECT= fs2open.github.com
|
|
GH_TUPLE= asarium:cmake-modules:7cef957:cmakemodules/cmake/external/rpavlik-cmake-modules \
|
|
asarium:libRocket:ecd648a:libRocket/lib/libRocket
|
|
USE_SDL= sdl2
|
|
|
|
LDFLAGS_i386= -Wl,-znotext
|
|
|
|
PLIST_FILES= bin/fs2_open
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/bin/fs2_open \
|
|
${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|