From owner-svn-ports-all@freebsd.org Wed Aug 19 13:49:23 2020 Return-Path: Delivered-To: svn-ports-all@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 05E3D3BF2E0; Wed, 19 Aug 2020 13:49:23 +0000 (UTC) (envelope-from pkubaj@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 4BWpzk6P1Zz3b1R; Wed, 19 Aug 2020 13:49:22 +0000 (UTC) (envelope-from pkubaj@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 BEAA523AAB; Wed, 19 Aug 2020 13:49:22 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 07JDnMgh072525; Wed, 19 Aug 2020 13:49:22 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 07JDnMuW072523; Wed, 19 Aug 2020 13:49:22 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <202008191349.07JDnMuW072523@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Wed, 19 Aug 2020 13:49:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r545326 - in head/audio/geonkick-lv2: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: in head/audio/geonkick-lv2: . files X-SVN-Commit-Revision: 545326 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.33 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: Wed, 19 Aug 2020 13:49:23 -0000 Author: pkubaj Date: Wed Aug 19 13:49:21 2020 New Revision: 545326 URL: https://svnweb.freebsd.org/changeset/ports/545326 Log: audio/geonkick-lv2: fix build on GCC architectures -lstdc++fs is necessary for gcc. MFH: 2020Q3 (fix build blanket) Added: head/audio/geonkick-lv2/files/extra-patch-plugin_lv2_CMakeLists.txt - copied unchanged from r545325, head/audio/geonkick-lv2/files/patch-plugin_lv2_CMakeLists.txt head/audio/geonkick-lv2/files/extra-patch-standalone_CMakeLists.txt - copied unchanged from r545325, head/audio/geonkick-lv2/files/patch-standalone_CMakeLists.txt Deleted: head/audio/geonkick-lv2/files/patch-plugin_lv2_CMakeLists.txt head/audio/geonkick-lv2/files/patch-standalone_CMakeLists.txt Modified: head/audio/geonkick-lv2/Makefile Modified: head/audio/geonkick-lv2/Makefile ============================================================================== --- head/audio/geonkick-lv2/Makefile Wed Aug 19 13:44:07 2020 (r545325) +++ head/audio/geonkick-lv2/Makefile Wed Aug 19 13:49:21 2020 (r545326) @@ -12,10 +12,6 @@ COMMENT= Software percussion synthesizer LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -.if exists(/usr/include/c++/v1) && !exists(/usr/include/c++/v1/filesystem) -BROKEN= STL feature 'filesystem' isn't available # ' -.endif - BUILD_DEPENDS= lv2>0:audio/lv2 \ gmake:devel/gmake \ rapidjson>0:devel/rapidjson \ @@ -35,4 +31,11 @@ CMAKE_ARGS= -DFREEBSD_GMAKE=${GMAKE} #INSTALLS_ICONS= yes # disabled because it causes: gtk-update-icon-cache: Failed to open file /usr/local/share/icons/hicolor/.icon-theme.cache : Permission denied -.include +.include + +.if ${CHOSEN_COMPILER_TYPE} == clang +EXTRA_PATCHES= ${FILESDIR}/extra-patch-plugin_lv2_CMakeLists.txt \ + ${FILESDIR}/extra-patch-standalone_CMakeLists.txt +.endif + +.include Copied: head/audio/geonkick-lv2/files/extra-patch-plugin_lv2_CMakeLists.txt (from r545325, head/audio/geonkick-lv2/files/patch-plugin_lv2_CMakeLists.txt) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/geonkick-lv2/files/extra-patch-plugin_lv2_CMakeLists.txt Wed Aug 19 13:49:21 2020 (r545326, copy of r545325, head/audio/geonkick-lv2/files/patch-plugin_lv2_CMakeLists.txt) @@ -0,0 +1,11 @@ +--- plugin/lv2/CMakeLists.txt.orig 2019-08-07 16:22:12 UTC ++++ plugin/lv2/CMakeLists.txt +@@ -6,7 +6,7 @@ add_library(geonkick_lv2 SHARED + ${GKICK_LV2_SOURCES}) + + target_link_libraries(geonkick_lv2 geonkick_common api_lv2) +-target_link_libraries(geonkick_lv2 "-lstdc++fs") ++#target_link_libraries(geonkick_lv2 "-lstdc++fs") + target_link_libraries(geonkick_lv2 "-lredkite -lX11 -lsndfile -lrt -lm -ldl -lpthread -lcairo") + add_dependencies(geonkick_lv2 api_lv2) + Copied: head/audio/geonkick-lv2/files/extra-patch-standalone_CMakeLists.txt (from r545325, head/audio/geonkick-lv2/files/patch-standalone_CMakeLists.txt) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/geonkick-lv2/files/extra-patch-standalone_CMakeLists.txt Wed Aug 19 13:49:21 2020 (r545326, copy of r545325, head/audio/geonkick-lv2/files/patch-standalone_CMakeLists.txt) @@ -0,0 +1,11 @@ +--- standalone/CMakeLists.txt.orig 2019-08-07 16:23:18 UTC ++++ standalone/CMakeLists.txt +@@ -7,7 +7,7 @@ add_executable(geonkick + + add_dependencies(geonkick api_standalone) + target_link_libraries(geonkick geonkick_common api_standalone) +-target_link_libraries(geonkick "-lstdc++fs") ++#target_link_libraries(geonkick "-lstdc++fs") + target_link_libraries(geonkick "-lredkite -lX11 -ljack -lsndfile -lrt -lm -ldl -lpthread -lcairo") + + install(TARGETS geonkick DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)