From owner-svn-ports-head@freebsd.org Sun Oct 28 21:22:04 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 57C8A10E1EB5; Sun, 28 Oct 2018 21:22:04 +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 0E04271323; Sun, 28 Oct 2018 21:22:04 +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 E44F224E54; Sun, 28 Oct 2018 21:22:03 +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 w9SLM3Gt014118; Sun, 28 Oct 2018 21:22:03 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9SLM2gc014112; Sun, 28 Oct 2018 21:22:02 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810282122.w9SLM2gc014112@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 28 Oct 2018 21:22:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483356 - in head/audio: . synthv1-lv2 synthv1-lv2/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/audio: . synthv1-lv2 synthv1-lv2/files X-SVN-Commit-Revision: 483356 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: Sun, 28 Oct 2018 21:22:04 -0000 Author: yuri Date: Sun Oct 28 21:22:02 2018 New Revision: 483356 URL: https://svnweb.freebsd.org/changeset/ports/483356 Log: New port: audio/synthv1-lv2: Old-school polyphonic synthesizer Added: head/audio/synthv1-lv2/ head/audio/synthv1-lv2/Makefile (contents, props changed) head/audio/synthv1-lv2/distinfo (contents, props changed) head/audio/synthv1-lv2/files/ head/audio/synthv1-lv2/files/patch-src_synthv1__jack.cpp (contents, props changed) head/audio/synthv1-lv2/pkg-descr (contents, props changed) head/audio/synthv1-lv2/pkg-plist (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Sun Oct 28 21:15:27 2018 (r483355) +++ head/audio/Makefile Sun Oct 28 21:22:02 2018 (r483356) @@ -815,6 +815,7 @@ SUBDIR += swh-lv2 SUBDIR += swhplugins SUBDIR += synthpod-lv2 + SUBDIR += synthv1-lv2 SUBDIR += taglib SUBDIR += taglib-extras SUBDIR += taglib-sharp Added: head/audio/synthv1-lv2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/synthv1-lv2/Makefile Sun Oct 28 21:22:02 2018 (r483356) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= synthv1 +DISTVERSIONPREFIX= ${PORTNAME}_ +DISTVERSION= 0_9_3 +CATEGORIES= audio +PKGNAMESUFFIX= -lv2 + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Old-school polyphonic synthesizer + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= lv2>0:audio/lv2 +LIB_DEPENDS= libjack.so:audio/jack \ + liblo.so:audio/liblo + +USES= autoreconf gl gmake pkgconfig qt:5 shared-mime-info +GNU_CONFIGURE= yes +USE_GITHUB= yes +GH_ACCOUNT= rncbc +USE_GL= gl +USE_QT= core gui widgets xml buildtools_build qmake_build + +PLIST_SUB= SHL3=${PORTVERSION} SHL2=${PORTVERSION:R} + +CONFIGURE_ARGS= --disable-alsa-midi + +.include Added: head/audio/synthv1-lv2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/synthv1-lv2/distinfo Sun Oct 28 21:22:02 2018 (r483356) @@ -0,0 +1,3 @@ +TIMESTAMP = 1540761275 +SHA256 (rncbc-synthv1-synthv1_0_9_3_GH0.tar.gz) = 70f3e3bb5a6a828f7fb4f4225a16360f9738a3c40ffcaad6c51c4c0321c086ca +SIZE (rncbc-synthv1-synthv1_0_9_3_GH0.tar.gz) = 209305 Added: head/audio/synthv1-lv2/files/patch-src_synthv1__jack.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/synthv1-lv2/files/patch-src_synthv1__jack.cpp Sun Oct 28 21:22:02 2018 (r483356) @@ -0,0 +1,10 @@ +--- src/synthv1_jack.cpp.orig 2018-10-28 21:16:24 UTC ++++ src/synthv1_jack.cpp +@@ -32,6 +32,7 @@ + #include + + #include ++#include + + #include + #include Added: head/audio/synthv1-lv2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/synthv1-lv2/pkg-descr Sun Oct 28 21:22:02 2018 (r483356) @@ -0,0 +1,9 @@ +synthv1 is an old-school all-digital 4-oscillator subtractive polyphonic +synthesizer with stereo fx. + +Features: +* a pure stand-alone JACK client with JACK-session, NSM (Non Session management) + and both JACK MIDI and ALSA MIDI input support; +* a LV2 instrument plug-in. + +WWW: https://synthv1.sourceforge.io/ Added: head/audio/synthv1-lv2/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/synthv1-lv2/pkg-plist Sun Oct 28 21:22:02 2018 (r483356) @@ -0,0 +1,23 @@ +bin/synthv1_jack +lib/libsynthv1.so +lib/libsynthv1.so.0 +lib/libsynthv1.so.%%SHL2%% +lib/libsynthv1.so.%%SHL3%% +lib/libsynthv1_ui.so +lib/libsynthv1_ui.so.0 +lib/libsynthv1_ui.so.%%SHL2%% +lib/libsynthv1_ui.so.%%SHL3%% +lib/lv2/synthv1.lv2/manifest.ttl +lib/lv2/synthv1.lv2/synthv1.so +lib/lv2/synthv1.lv2/synthv1.ttl +lib/lv2/synthv1.lv2/synthv1_ui.so +lib/lv2/synthv1.lv2/synthv1_ui.ttl +man/man1/synthv1.1.gz +man/man1/synthv1.fr.1.gz +share/applications/synthv1.desktop +share/icons/hicolor/32x32/apps/synthv1.png +share/icons/hicolor/32x32/mimetypes/application-x-synthv1-preset.png +share/icons/hicolor/scalable/apps/synthv1.svg +share/icons/hicolor/scalable/mimetypes/application-x-synthv1-preset.svg +share/metainfo/synthv1.appdata.xml +share/mime/packages/synthv1.xml