svn commit: r419874 - head/games/gbrainy/files

Romain Tartière romain at FreeBSD.org
Mon Aug 8 17:50:45 UTC 2016


Author: romain
Date: Mon Aug  8 17:50:44 2016
New Revision: 419874
URL: https://svnweb.freebsd.org/changeset/ports/419874

Log:
  Fix build with mono 4.4.
  
  Some assemblies have been relocated, so adjust files path to point to the
  correct location.

Added:
  head/games/gbrainy/files/
  head/games/gbrainy/files/patch-configure   (contents, props changed)

Added: head/games/gbrainy/files/patch-configure
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/gbrainy/files/patch-configure	Mon Aug  8 17:50:44 2016	(r419874)
@@ -0,0 +1,16 @@
+
+$FreeBSD$
+
+--- configure.orig
++++ configure
+@@ -13674,8 +13674,8 @@
+ for i in $needed_assemblies; do
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $i.dll" >&5
+ $as_echo_n "checking for $i.dll... " >&6; }
+-  if test ! \( -e `$PKG_CONFIG --variable=prefix mono`/lib/mono/2.0/$i.dll -o -e `$PKG_CONFIG --variable=prefix mono`/lib64/mono/2.0/$i.dll \); then
+-	if test ! \( -e `$PKG_CONFIG --variable=prefix mono`/lib/mono/4.0/$i.dll -o -e `$PKG_CONFIG --variable=prefix mono`/lib64/mono/4.0/$i.dll \); then
++  if test ! \( -e `$PKG_CONFIG --variable=prefix mono`/lib/mono/2.0-api/$i.dll -o -e `$PKG_CONFIG --variable=prefix mono`/lib64/mono/2.0-api/$i.dll \); then
++	if test ! \( -e `$PKG_CONFIG --variable=prefix mono`/lib/mono/4.0-api/$i.dll -o -e `$PKG_CONFIG --variable=prefix mono`/lib64/mono/4.0-api/$i.dll \); then
+ 		as_fn_error $? "missing required mono 2.0/4.0 DLL: $i.dll" "$LINENO" 5
+ 	else
+ 	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5


More information about the svn-ports-all mailing list