mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
27f1600172
Changelog: * Add View World support * Add progressive Campaign support * Add touchpad support * Speed up drawings for World Map by 5% and reduce memory usage by 10% * Add Fast Battle option * Improve AI and battle logic * Add Window resizing on SDL 2 * Over 50 bugs fixed since 0.9.0 release
30 lines
571 B
Makefile
30 lines
571 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= fheroes2
|
|
PORTVERSION= 0.9.1
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= pkubaj@FreeBSD.org
|
|
COMMENT= Free implementation of Heroes of Might and Magic II engine
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libtinyxml.so:textproc/tinyxml
|
|
|
|
USES= gettext-tools gmake sdl
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ihhub
|
|
USE_SDL= image2 mixer2 sdl2 ttf2
|
|
|
|
LDFLAGS+= -ltinyxml
|
|
MAKE_ENV= WITHOUT_BUNDLED_LIBS=1
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME} \
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|