From owner-svn-ports-all@freebsd.org Sat Mar 10 23:22:46 2018 Return-Path: Delivered-To: svn-ports-all@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 79FB9F3F27D; Sat, 10 Mar 2018 23:22:46 +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 2648A6B317; Sat, 10 Mar 2018 23:22:46 +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 1F780147C3; Sat, 10 Mar 2018 23:22:46 +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 w2ANMkvV038300; Sat, 10 Mar 2018 23:22:46 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2ANMjI3038295; Sat, 10 Mar 2018 23:22:45 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201803102322.w2ANMjI3038295@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 10 Mar 2018 23:22:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464131 - in head/audio: . gmsynth-lv2 gmsynth-lv2/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/audio: . gmsynth-lv2 gmsynth-lv2/files X-SVN-Commit-Revision: 464131 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.25 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: Sat, 10 Mar 2018 23:22:46 -0000 Author: yuri Date: Sat Mar 10 23:22:45 2018 New Revision: 464131 URL: https://svnweb.freebsd.org/changeset/ports/464131 Log: New port: audio/gmsynth-lv2: General MIDI LV2 Synth Approved by: tcberner (mentor, implicit) Added: head/audio/gmsynth-lv2/ head/audio/gmsynth-lv2/Makefile (contents, props changed) head/audio/gmsynth-lv2/distinfo (contents, props changed) head/audio/gmsynth-lv2/files/ head/audio/gmsynth-lv2/files/patch-Makefile (contents, props changed) head/audio/gmsynth-lv2/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Sat Mar 10 23:04:45 2018 (r464130) +++ head/audio/Makefile Sat Mar 10 23:22:45 2018 (r464131) @@ -222,6 +222,7 @@ SUBDIR += gmpc-mserver SUBDIR += gmpc-shout SUBDIR += gmpc-wikipedia + SUBDIR += gmsynth-lv2 SUBDIR += gmtp SUBDIR += gmusicbrowser SUBDIR += gnaural Added: head/audio/gmsynth-lv2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/gmsynth-lv2/Makefile Sat Mar 10 23:22:45 2018 (r464131) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= gmsynth +DISTVERSIONPREFIX= v +DISTVERSION= 0.3.0 +CATEGORIES= audio +PKGNAMESUFFIX= -lv2 + +MAINTAINER= yuri@FreeBSD.org +COMMENT= General MIDI LV2 Synth + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= lv2>0:audio/lv2 +LIB_DEPENDS= libfluidsynth.so:audio/fluidsynth + +USES= gmake pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= x42 +GH_PROJECT= ${PORTNAME}.lv2 +USE_GNOME= glib20 + +PLIST_FILES= lib/lv2/${PORTNAME}.lv2/GeneralUser_LV2.sf2 \ + lib/lv2/${PORTNAME}.lv2/${PORTNAME}.so \ + lib/lv2/${PORTNAME}.lv2/${PORTNAME}.ttl \ + lib/lv2/${PORTNAME}.lv2/manifest.ttl + +.include Added: head/audio/gmsynth-lv2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/gmsynth-lv2/distinfo Sat Mar 10 23:22:45 2018 (r464131) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520723141 +SHA256 (x42-gmsynth.lv2-v0.3.0_GH0.tar.gz) = 0f18c56ef55307bbf5894d013a5b0c232c920b13e27d6998cc19e80948efb2ba +SIZE (x42-gmsynth.lv2-v0.3.0_GH0.tar.gz) = 28563480 Added: head/audio/gmsynth-lv2/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/gmsynth-lv2/files/patch-Makefile Sat Mar 10 23:22:45 2018 (r464131) @@ -0,0 +1,19 @@ +--- Makefile.orig 2018-03-10 23:08:50 UTC ++++ Makefile +@@ -136,13 +136,13 @@ FLUID_SRC = \ + fluidsynth/src/fluid_settings.c \ + fluidsynth/src/fluid_sys.c + +-CPPFLAGS += -Ifluidsynth -I fluidsynth/fluidsynth -DHAVE_CONFIG_H -D DEFAULT_SOUNDFONT=\"\" +-DSP_SRC = src/$(LV2NAME).c $(FLUID_SRC) ++FS_CFLAGS = `pkg-config --cflags --libs fluidsynth` -DHAVE_CONFIG_H -D DEFAULT_SOUNDFONT=\"\" ++DSP_SRC = src/$(LV2NAME).c # $(FLUID_SRC) + DSP_DEPS = $(DSP_SRC) + + $(BUILDDIR)$(LV2NAME)$(LIB_EXT): $(DSP_DEPS) Makefile + @mkdir -p $(BUILDDIR) +- $(CC) $(CPPFLAGS) $(CFLAGS) -std=c99 \ ++ $(CC) $(FS_CFLAGS) $(CFLAGS) -std=c99 \ + -o $(BUILDDIR)$(LV2NAME)$(LIB_EXT) $(DSP_SRC) \ + -shared $(LV2LDFLAGS) $(LDFLAGS) $(LOADLIBES) + $(STRIP) $(STRIPFLAGS) $(BUILDDIR)$(LV2NAME)$(LIB_EXT) Added: head/audio/gmsynth-lv2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/gmsynth-lv2/pkg-descr Sat Mar 10 23:22:45 2018 (r464131) @@ -0,0 +1,3 @@ +Midi to sound LV2 converter. + +WWW: https://x42-plugins.com/x42/x42-gmsynth