From owner-svn-ports-branches@freebsd.org Tue Oct 13 09:18:45 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 37CE243B63A; Tue, 13 Oct 2020 09:18:45 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C9VN50lq3z4T2c; Tue, 13 Oct 2020 09:18:45 +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 F2DD81B411; Tue, 13 Oct 2020 09:18:44 +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 09D9Ii1p013821; Tue, 13 Oct 2020 09:18:44 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09D9IiTK013820; Tue, 13 Oct 2020 09:18:44 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202010130918.09D9IiTK013820@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 13 Oct 2020 09:18:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r552223 - branches/2020Q4/audio/eq10q-lv2 X-SVN-Group: ports-branches X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: branches/2020Q4/audio/eq10q-lv2 X-SVN-Commit-Revision: 552223 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Oct 2020 09:18:45 -0000 Author: yuri Date: Tue Oct 13 09:18:44 2020 New Revision: 552223 URL: https://svnweb.freebsd.org/changeset/ports/552223 Log: MFH: r552214 audio/eq10q-lv2: Fix build It was broken when audio/lv2 was upgraded to 1.18.0. Approved by: ports-secteam (joneum) Modified: branches/2020Q4/audio/eq10q-lv2/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/audio/eq10q-lv2/Makefile ============================================================================== --- branches/2020Q4/audio/eq10q-lv2/Makefile Tue Oct 13 08:40:35 2020 (r552222) +++ branches/2020Q4/audio/eq10q-lv2/Makefile Tue Oct 13 09:18:44 2020 (r552223) @@ -13,8 +13,6 @@ COMMENT= Parametric equalizer LV2 audio plugin LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN= midside_ui.cpp:40:50: error: unknown type name '_LV2UI_Descriptor'; did you mean 'LV2UI_Descriptor'? - BUILD_DEPENDS= lv2>0:audio/lv2 LIB_DEPENDS= libfftw3.so:math/fftw3 \ libfontconfig.so:x11-fonts/fontconfig \ @@ -35,5 +33,9 @@ SSE_CMAKE_ON= -DPORT_SIMD_FLAGS:STRING="-msse -mfpmath post-patch: @${REINPLACE_CMD} -e 's/pow10(/pow(10,/g' \ ${WRKSRC}/gui/widgets/*.cpp + # fix for audio/lv2 1.18.0 based on: https://sourceforge.net/p/eq10q/bugs/23/ +.for f in gui/eq10q_ui.cpp gui/dyn_ui.cpp gui/bassup_ui.cpp gui/midside_ui.cpp + cd ${WRKSRC} && ${REINPLACE_CMD} -e 's/const _LV2UI_Descriptor/const LV2UI_Descriptor/' ${f} +.endfor .include