mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
be4509716d
Changelog: * Greatly improve AI logic for kingdom management and battles * Fix many drawings and logic issues for battles * Add touchpad support * Speed up drawings for World Map by 10% * Add highlighted area for mass spells in battles * Add extra army split logic * Over 100 bugs fixed since 0.8.4 release
31 lines
585 B
Makefile
31 lines
585 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= fheroes2
|
|
PORTVERSION= 0.9
|
|
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 \
|
|
WITH_SDL2=1
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME} \
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|