svn commit: r501782 - head/games/hedgewars

Gleb Popov arrowd at FreeBSD.org
Thu May 16 09:46:31 UTC 2019


Author: arrowd
Date: Thu May 16 09:46:29 2019
New Revision: 501782
URL: https://svnweb.freebsd.org/changeset/ports/501782

Log:
  games/hedgewars: Fix build on i386 arch.
  
  It turned out that GHC is still required in the build process to create a small utility program written in Haskell and used in the build.
  
  Reported by:	antoine
  Reviewed by:	tcberner (mentor, implicit)

Modified:
  head/games/hedgewars/Makefile

Modified: head/games/hedgewars/Makefile
==============================================================================
--- head/games/hedgewars/Makefile	Thu May 16 09:31:35 2019	(r501781)
+++ head/games/hedgewars/Makefile	Thu May 16 09:46:29 2019	(r501782)
@@ -15,8 +15,10 @@ COMMENT=	Free Worms-like turn based strategy game
 LICENSE=	GPLv2 GFDL
 LICENSE_COMB=	multi
 
-LIB_DEPENDS=	libphysfs.so:devel/physfs \
-		libpng.so:graphics/png
+BUILD_DEPENDS=		${${ARCH}_BUILD_DEPENDS}
+i386_BUILD_DEPENDS=	ghc:lang/ghc
+LIB_DEPENDS=		libphysfs.so:devel/physfs \
+			libpng.so:graphics/png
 
 USES=		cmake:noninja desktop-file-utils fpc gl lua:51 qt:5 tar:bzip2 pkgconfig
 USE_SDL=	sdl2 mixer2 image2 ttf2 net2


More information about the svn-ports-all mailing list