forked from Lainports/freebsd-ports
New features:
- PVR(Z), BAM2, MOS2 and TIS2 support
- support for higher AI speeds ("FPS") and VSync
- support for EE-style saves, TLK locations and many more tables
- PST's floating text and personalized pc comments
- optional smooth fog of war on SDL >= 2.0.18
- 3e-style sneak attack and crippling strike from HoW/iwdee
- Anbernic device support
Improved features:
- PST effect durations
- performance, pathfinding, formations
- combat, opcodes, EE compat, hp handling, demo
- bugfixes
37 lines
904 B
Makefile
37 lines
904 B
Makefile
PORTNAME= gemrb
|
|
PORTVERSION= 0.9.2
|
|
CATEGORIES= games emulators
|
|
MASTER_SITES= SF/${PORTNAME}/Releases/${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-sources
|
|
|
|
MAINTAINER= pkubaj@FreeBSD.org
|
|
COMMENT= GemRB (Game engine made with preRendered Background)
|
|
WWW= https://www.gemrb.org/
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libpng.so:graphics/png \
|
|
libvorbis.so:audio/libvorbis \
|
|
libfreetype.so:print/freetype2
|
|
|
|
USES= cmake compiler:c11 gnome iconv localbase openal:al,alut \
|
|
python sdl shebangfix
|
|
SHEBANG_FILES= admin/extend2da.py
|
|
USE_SDL= sdl2
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_SUB= yes
|
|
|
|
CMAKE_ARGS= -DDOC_DIR="${DOCSDIR}" \
|
|
-DMAN_DIR="${PREFIX}/share/man/man6/" \
|
|
-DSDL_BACKEND=SDL2 \
|
|
-DUSE_OPENAL=ON \
|
|
-DUSE_LIBVLC=OFF \
|
|
-DHAVE_LDEXPF=1
|
|
|
|
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
.include <bsd.port.mk>
|