From owner-svn-ports-head@freebsd.org Thu Oct 18 19:42:49 2018 Return-Path: Delivered-To: svn-ports-head@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 40B07F718A7; Thu, 18 Oct 2018 19:42:49 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mouf.net", Issuer "mouf.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id B37987A98E; Thu, 18 Oct 2018 19:42:48 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from lrrr.mouf.net (cpe-174-109-174-192.nc.res.rr.com [174.109.174.192]) (authenticated bits=0) by mouf.net (8.14.9/8.14.9) with ESMTP id w9IJgckv039139 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT); Thu, 18 Oct 2018 19:42:44 GMT (envelope-from swills@FreeBSD.org) Subject: Re: svn commit: r482343 - in head: . audio audio/bcg729 audio/msbcg729 audio/msilbc deskutils deskutils/belcard devel/libosmo-abis multimedia multimedia/bcmatroska2 multimedia/bcmatroska2/files multime... To: =?UTF-8?Q?T=c4=b3l_Coosemans?= Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201810181331.w9IDV1Nb084061@repo.freebsd.org> <20181018204809.7f61ec98@kalimero.tijl.coosemans.org> From: Steve Wills Message-ID: <2f5f5a13-36eb-c853-dfba-c6c822e10507@FreeBSD.org> Date: Thu, 18 Oct 2018 15:42:34 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 MIME-Version: 1.0 In-Reply-To: <20181018204809.7f61ec98@kalimero.tijl.coosemans.org> Content-Type: multipart/mixed; boundary="------------E27D1A7A38DC0C15D318B85F" Content-Language: en-US X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mouf.net [199.48.129.64]); Thu, 18 Oct 2018 19:42:46 +0000 (UTC) X-Spam-Status: No, score=0.0 required=4.5 tests=none autolearn=unavailable autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on mouf.net X-Virus-Scanned: clamav-milter 0.99.2 at mouf.net X-Virus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2018 19:42:49 -0000 This is a multi-part message in MIME format. --------------E27D1A7A38DC0C15D318B85F Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit The attached fixes it, but maybe we should see if we can patch it to use sh instead of bash. Up to you. Steve On 10/18/18 2:48 PM, Tijl Coosemans wrote: > On Thu, 18 Oct 2018 14:36:57 -0400 Steve Wills wrote: >> Hi, >> >> linphone seems to fail to configure for me now: >> >> CMake Error at /usr/local/lib/cmake/Qt5Core/Qt5CoreConfig.cmake:15 >> (message): >> The imported target "Qt5::Core" references the file >> >> "/usr/local/lib/qt5/bin/qmake" >> >> but this file does not exist. >> >> Could you take a look? > > Can you try adding qmake_build to USE_QT? > --------------E27D1A7A38DC0C15D318B85F Content-Type: text/x-patch; name="linphone_fix.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="linphone_fix.diff" diff --git net/linphone/Makefile net/linphone/Makefile index 2448bcd59b17..7a5273dd22e8 100644 --- net/linphone/Makefile +++ net/linphone/Makefile @@ -10,13 +10,14 @@ DISTNAME= linphoneqt-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= SIP client supporting voice/video calls and text messaging +BUILD_DEPENDS= bash:shells/bash LIB_DEPENDS= libbctoolbox.so:net/bctoolbox \ libbelcard.so:deskutils/belcard \ liblinphone++.so:net/liblinphone USES= cmake:outsource pkgconfig qt:5 -USE_QT= concurrent core gui linguisttools network qml quick \ - quickcontrols2 speech svg testlib widgets +USE_QT= buildtools_build concurrent core gui linguisttools network \ + qmake_build qml quick quickcontrols2 speech svg testlib widgets post-patch: @${REINPLACE_CMD} 's/LINPHONE_QT_GIT_VERSION/"${PORTVERSION}"/' \ --------------E27D1A7A38DC0C15D318B85F--