From owner-svn-ports-all@freebsd.org Mon Aug 8 17:50:45 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A5EBBB3200; Mon, 8 Aug 2016 17:50:45 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 16B671D86; Mon, 8 Aug 2016 17:50:45 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u78Hoiu1087215; Mon, 8 Aug 2016 17:50:44 GMT (envelope-from romain@FreeBSD.org) Received: (from romain@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u78Hoix7087214; Mon, 8 Aug 2016 17:50:44 GMT (envelope-from romain@FreeBSD.org) Message-Id: <201608081750.u78Hoix7087214@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: romain set sender to romain@FreeBSD.org using -f From: =?UTF-8?Q?Romain_Tarti=c3=a8re?= Date: Mon, 8 Aug 2016 17:50:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419874 - head/games/gbrainy/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2016 17:50:45 -0000 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