From owner-freebsd-ports@FreeBSD.ORG Mon Nov 7 21:33:38 2011 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C744106566B; Mon, 7 Nov 2011 21:33:38 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 4B2888FC08; Mon, 7 Nov 2011 21:33:38 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 8D8491E000F1; Mon, 7 Nov 2011 22:33:37 +0100 (CET) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.4/8.14.3) with ESMTP id pA7LVjJm081249; Mon, 7 Nov 2011 22:31:45 +0100 (CET) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.4/8.14.3/Submit) id pA7LVjhf081248; Mon, 7 Nov 2011 22:31:45 +0100 (CET) (envelope-from nox) From: Juergen Lock Date: Mon, 7 Nov 2011 22:31:44 +0100 To: Juergen Lock Message-ID: <20111107213144.GA80841@triton8.kn-bremen.de> References: <20111106131759.GA79153@triton8.kn-bremen.de> <87y5vt6nl4.fsf@FreeBSD.org> <20111106203521.GA85401@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20111106203521.GA85401@triton8.kn-bremen.de> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-ports@FreeBSD.org, Raphael Kubo da Costa Subject: Re: ardour3 r10465; raptor vs raptor2; liblrdf 0.5.0; slv2 build fix X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Nov 2011 21:33:38 -0000 On Sun, Nov 06, 2011 at 09:35:22PM +0100, Juergen Lock wrote: > On Sun, Nov 06, 2011 at 05:46:31PM -0200, Raphael Kubo da Costa wrote: > > Juergen Lock writes: > > > > > So I updated my preliminary ardour3 port patch to r10461 and found > > > ardour crashed due to now linking to both textproc/raptor and > > > textproc/raptor2 which conflict, turns out it's a dependency problem: > > > ardour3 depends on (among other things) textproc/liblrdf and > > > audio/slv2, and slv2 now depends on textproc/raptor2 [1] while > > > textproc/liblrdf still depends on textproc/raptor, so I had to make > > > an update for textproc/liblrdf to 0.5.0 so that it uses textproc/raptor2 > > > too: > > > > Just a question: haven't the ardour guys themselves come across this > > problem? Do they recommend any other solution? > > I just learned slv2 has a successor that ardour3 now prefers to use: > > http://drobilla.net/software/lilv/ > http://drobilla.net/software/serd/ > http://drobilla.net/software/sord/ > http://drobilla.net/software/suil/ > > So looks like someone(tm) should port these... :) Ok this is what I have so far: First, a patch to the audio/lv2core port to make it run lv2config to create the PREFIX/include/lv2 dir tree that lilv needs: http://people.freebsd.org/~nox/tmp/lv2core-lv2config.patch Then, serd, sord, and lilv: http://people.freebsd.org/~nox/tmp/serd-0.5.0.shar http://people.freebsd.org/~nox/tmp/sord-0.5.0.shar http://people.freebsd.org/~nox/tmp/lilv-0.5.0r3601.shar The lilv port is an svn snapshot that I put in MASTER_SITE_LOCAL, until the mirrors have synced you can also download the distfile from here: http://people.freebsd.org/~nox/tmp/distfiles/lilv-0.5.0r3601.tar.bz2 And finally, the new ardour3 port update that now depends on lilv instead of slv2: http://people.freebsd.org/~nox/tmp/ardour-3.0alpha10-preliminary5-r10465.patch With this, I was able to load the lv2 plugin of audio/linuxsampler into ardour3. (You need to build the linuxsampler port with the LV2CORE knob enabled for that.) And about suil, I don't have a port for that yet because it depends on lv2 ui which also hasn't been ported yet: http://lv2plug.in/ns/extensions/ui/ Enjoy, :) Juergen