Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 May 2019 09:46:30 +0000 (UTC)
From:      Gleb Popov <arrowd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r501782 - head/games/hedgewars
Message-ID:  <201905160946.x4G9kUom056911@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905160946.x4G9kUom056911>