From owner-svn-ports-all@freebsd.org  Thu May 24 17:19:00 2018
Return-Path: <owner-svn-ports-all@freebsd.org>
Delivered-To: svn-ports-all@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2E6CEF903F;
 Thu, 24 May 2018 17:19:00 +0000 (UTC)
 (envelope-from yuri@FreeBSD.org)
Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org
 [IPv6:2610:1c1:1:606c::19:3])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mxrelay.nyi.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 81446793E0;
 Thu, 24 May 2018 17:19:00 +0000 (UTC)
 (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5D37F151EB;
 Thu, 24 May 2018 17:19:00 +0000 (UTC)
 (envelope-from yuri@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4OHJ0Cn091020;
 Thu, 24 May 2018 17:19:00 GMT (envelope-from yuri@FreeBSD.org)
Received: (from yuri@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4OHJ0cU091014;
 Thu, 24 May 2018 17:19:00 GMT (envelope-from yuri@FreeBSD.org)
Message-Id: <201805241719.w4OHJ0cU091014@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: yuri set sender to
 yuri@FreeBSD.org using -f
From: Yuri Victorovich <yuri@FreeBSD.org>
Date: Thu, 24 May 2018 17:19:00 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r470793 - in head/audio/moony-lv2: . files
X-SVN-Group: ports-head
X-SVN-Commit-Author: yuri
X-SVN-Commit-Paths: in head/audio/moony-lv2: . files
X-SVN-Commit-Revision: 470793
X-SVN-Commit-Repository: ports
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.26
Precedence: list
List-Id: SVN commit messages for the ports tree <svn-ports-all.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-ports-all>,
 <mailto:svn-ports-all-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-all/>
List-Post: <mailto:svn-ports-all@freebsd.org>
List-Help: <mailto:svn-ports-all-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-ports-all>,
 <mailto:svn-ports-all-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 24 May 2018 17:19:01 -0000

Author: yuri
Date: Thu May 24 17:18:59 2018
New Revision: 470793
URL: https://svnweb.freebsd.org/changeset/ports/470793

Log:
  audio/moony-lv2: Fix built on 10
  
  Also change USES=cmake -> USES=cmake:outsource
  
  As it turned out, cmake's check_function_exists doesn't find functions
  in libm.so, so check_library_exists should be used.
  
  PR:		228443
  Submitted by:	tcberner (cmake part)

Modified:
  head/audio/moony-lv2/Makefile
  head/audio/moony-lv2/files/patch-CMakeLists.txt

Modified: head/audio/moony-lv2/Makefile
==============================================================================
--- head/audio/moony-lv2/Makefile	Thu May 24 17:02:40 2018	(r470792)
+++ head/audio/moony-lv2/Makefile	Thu May 24 17:18:59 2018	(r470793)
@@ -15,7 +15,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 BUILD_DEPENDS=	lv2>0:audio/lv2
 
-USES=		cmake pkgconfig
+USES=		cmake:outsource pkgconfig
 USE_XORG=	x11 xext
 USE_GL=		gl glu
 

Modified: head/audio/moony-lv2/files/patch-CMakeLists.txt
==============================================================================
--- head/audio/moony-lv2/files/patch-CMakeLists.txt	Thu May 24 17:02:40 2018	(r470792)
+++ head/audio/moony-lv2/files/patch-CMakeLists.txt	Thu May 24 17:18:59 2018	(r470793)
@@ -6,9 +6,9 @@
  	set(CMAKE_MODULE_LINKER_FLAGS "-Wl,-z,nodelete ${CMAKE_MODULE_LINKER_FLAGS}")
 +elseif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
 +	# see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=221341
-+	include(CheckFunctionExists)
-+	check_function_exists(clog FreeBSD_CLOG_EXISTS)
-+	check_function_exists(cpow FreeBSD_CPOW_EXISTS)
++	include(CheckLibraryExists)
++	check_library_exists(m clog 'complex.h' FreeBSD_CLOG_EXISTS)
++	check_library_exists(m cpow 'complex.h' FreeBSD_CPOW_EXISTS)
 +	if (FreeBSD_CLOG_EXISTS)
 +		set(CMAKE_C_FLAGS "-DFreeBSD_CLOG_EXISTS ${CMAKE_C_FLAGS}")
 +	endif()