From owner-svn-ports-head@freebsd.org Sat Aug 10 22:23:43 2019 Return-Path: Delivered-To: svn-ports-head@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 9C806C6AC3; Sat, 10 Aug 2019 22:23:43 +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) server-signature RSA-PSS (4096 bits) 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 465c8H3dhcz4BcJ; Sat, 10 Aug 2019 22:23:43 +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 5E7994B11; Sat, 10 Aug 2019 22:23:43 +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 x7AMNhCb060435; Sat, 10 Aug 2019 22:23:43 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7AMNgrw060428; Sat, 10 Aug 2019 22:23:42 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201908102223.x7AMNgrw060428@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 10 Aug 2019 22:23:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r508509 - in head/audio: . geonkick-lv2 geonkick-lv2/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/audio: . geonkick-lv2 geonkick-lv2/files X-SVN-Commit-Revision: 508509 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Sat, 10 Aug 2019 22:23:43 -0000 Author: yuri Date: Sat Aug 10 22:23:41 2019 New Revision: 508509 URL: https://svnweb.freebsd.org/changeset/ports/508509 Log: New port: audio/geonkick-lv2: Software percussion synthesizer Added: head/audio/geonkick-lv2/ head/audio/geonkick-lv2/Makefile (contents, props changed) head/audio/geonkick-lv2/distinfo (contents, props changed) head/audio/geonkick-lv2/files/ head/audio/geonkick-lv2/files/patch-plugin_lv2_CMakeLists.txt (contents, props changed) head/audio/geonkick-lv2/files/patch-standalone_CMakeLists.txt (contents, props changed) head/audio/geonkick-lv2/pkg-descr (contents, props changed) head/audio/geonkick-lv2/pkg-plist (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Sat Aug 10 22:05:42 2019 (r508508) +++ head/audio/Makefile Sat Aug 10 22:23:41 2019 (r508509) @@ -204,6 +204,7 @@ SUBDIR += funktrackergold SUBDIR += gbemol SUBDIR += gbsplay + SUBDIR += geonkick-lv2 SUBDIR += gervill SUBDIR += ghostess SUBDIR += giada Added: head/audio/geonkick-lv2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/geonkick-lv2/Makefile Sat Aug 10 22:23:41 2019 (r508509) @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= geonkick +DISTVERSIONPREFIX= v +DISTVERSION= 1.8-2 +DISTVERSIONSUFFIX= -g2e148d8 +CATEGORIES= audio +PKGNAMESUFFIX= -lv2 + +MAINTAINER= yuri@FreeBSD.org +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 \ + redkite>0:x11-toolkits/redkite +LIB_DEPENDS= libjack.so:audio/jack \ + libsndfile.so:audio/libsndfile + +USES= compiler:c++14-lang cmake:noninja gnome localbase:ldflags pkgconfig shared-mime-info +USE_GITHUB= yes +GH_ACCOUNT= quamplex +USE_GNOME= cairo +USE_XORG= x11 + +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 Added: head/audio/geonkick-lv2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/geonkick-lv2/distinfo Sat Aug 10 22:23:41 2019 (r508509) @@ -0,0 +1,3 @@ +TIMESTAMP = 1565342115 +SHA256 (quamplex-geonkick-v1.8-2-g2e148d8_GH0.tar.gz) = 1643ee960c8cd16a6bb817d524ca5a6f0abb8f325a2c97629a3a132e2e1a93d8 +SIZE (quamplex-geonkick-v1.8-2-g2e148d8_GH0.tar.gz) = 2839655 Added: 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/patch-plugin_lv2_CMakeLists.txt Sat Aug 10 22:23:41 2019 (r508509) @@ -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) + Added: 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/patch-standalone_CMakeLists.txt Sat Aug 10 22:23:41 2019 (r508509) @@ -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) Added: head/audio/geonkick-lv2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/geonkick-lv2/pkg-descr Sat Aug 10 22:23:41 2019 (r508509) @@ -0,0 +1,6 @@ +Geonkick is a free software percussion synthesizer. + +Geonkick is a synthesizer that can synthesize elements of percussion. The most +basic examples are: kicks, snares, hit-hats, shakers, claps, sticks. + +WWW: https://github.com/iurienistor/geonkick Added: head/audio/geonkick-lv2/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/geonkick-lv2/pkg-plist Sat Aug 10 22:23:41 2019 (r508509) @@ -0,0 +1,13 @@ +bin/geonkick +lib/lv2/geonkick.lv2/geonkick.ttl +lib/lv2/geonkick.lv2/libgeonkick_lv2.so +lib/lv2/geonkick.lv2/manifest.ttl +share/icons/hicolor/128x128/apps/geonkick.png +share/icons/hicolor/16x16/apps/geonkick.png +share/icons/hicolor/22x22/apps/geonkick.png +share/icons/hicolor/24x24/apps/geonkick.png +share/icons/hicolor/32x32/apps/geonkick.png +share/icons/hicolor/48x48/apps/geonkick.png +share/icons/hicolor/64x64/apps/geonkick.png +share/icons/hicolor/scalable/apps/geonkick.svg +share/mime/packages/geonkick.xml