From owner-svn-ports-head@freebsd.org Wed Jan 11 06:35:51 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C7469CAACCF; Wed, 11 Jan 2017 06:35:51 +0000 (UTC) (envelope-from pi@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 mx1.freebsd.org (Postfix) with ESMTPS id 854641C42; Wed, 11 Jan 2017 06:35:51 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0B6Zo1J015522; Wed, 11 Jan 2017 06:35:50 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0B6ZoBs015517; Wed, 11 Jan 2017 06:35:50 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201701110635.v0B6ZoBs015517@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 11 Jan 2017 06:35:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431158 - in head/audio: . suil X-SVN-Group: ports-head 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.23 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: Wed, 11 Jan 2017 06:35:51 -0000 Author: pi Date: Wed Jan 11 06:35:50 2017 New Revision: 431158 URL: https://svnweb.freebsd.org/changeset/ports/431158 Log: New port: audio/suil Suil is a lightweight C library for loading and wrapping LV2 plugin UIs. Suil makes it possible to load a UI of any toolkit in a host using any other toolkit (assuming the toolkits are both supported by Suil). Hosts do not need to build against or link to foreign toolkit libraries to use UIs written with that toolkit; all the necessary magic is performed by dynamically loaded modules. The API is designed such that hosts do not need to explicitly support specific toolkits at all - if Suil supports a particular toolkit, then UIs in that toolkit will work in all hosts that use Suil automatically. Suil currently supports every combination of Gtk 2, Qt 4, and X11, e.g. with Suil a Gtk program can embed a Qt plugin UI without depending on Qt, and a Qt program can embed a Gtk plugin UI without depending on Gtk. On Windows, embedding native UIs in Gtk is also supported. I (David Robillard) would be happy to work with plugin authors to add support for new toolkits, please contact me if you're interested in writing a plugin UI using a toolkit that is not yet supported in the LV2 ecosystem. WWW: http://drobilla.net/software/suil/ PR: 213289 Submitted by: Michael Beer Reviewed by: Yuri Victorovich Added: head/audio/suil/ head/audio/suil/Makefile (contents, props changed) head/audio/suil/distinfo (contents, props changed) head/audio/suil/pkg-descr (contents, props changed) head/audio/suil/pkg-plist (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Wed Jan 11 04:57:42 2017 (r431157) +++ head/audio/Makefile Wed Jan 11 06:35:50 2017 (r431158) @@ -744,6 +744,7 @@ SUBDIR += streamripper SUBDIR += streamtranscoder SUBDIR += stymulator + SUBDIR += suil SUBDIR += sweep SUBDIR += swhplugins SUBDIR += taglib Added: head/audio/suil/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/suil/Makefile Wed Jan 11 06:35:50 2017 (r431158) @@ -0,0 +1,35 @@ +# Created by: Michael Beer +# $FreeBSD$ + +PORTNAME= suil +PORTVERSION= 0.8.2 +CATEGORIES= audio +MASTER_SITES= http://download.drobilla.net/ + +MAINTAINER= beerml@sigma6audio.de +COMMENT= Suil is a C library for loading and wrapping LV2 plugin UIs + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= lv2>=1.14.0:audio/lv2 +LIB_DEPENDS= libQtCore.so:devel/qt4-corelib \ + libQtGui.so:x11-toolkits/qt4-gui \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 + +USES= pkgconfig python:build tar:bzip2 waf + +USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 pango + +USE_LDCONFIG= yes + +post-install: + @${MV} ${STAGEDIR}${PREFIX}/lib/pkgconfig/*.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig/ + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsuil-0.so.0.8.2 + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/suil-0/libsuil_gtk2_in_qt4.so + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/suil-0/libsuil_qt4_in_gtk2.so + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/suil-0/libsuil_x11_in_gtk2.so + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/suil-0/libsuil_x11_in_qt4.so + +.include Added: head/audio/suil/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/suil/distinfo Wed Jan 11 06:35:50 2017 (r431158) @@ -0,0 +1,3 @@ +TIMESTAMP = 1483909687 +SHA256 (suil-0.8.2.tar.bz2) = 787608c1e5b1f5051137dbf77c671266088583515af152b77b45e9c3a36f6ae8 +SIZE (suil-0.8.2.tar.bz2) = 141929 Added: head/audio/suil/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/suil/pkg-descr Wed Jan 11 06:35:50 2017 (r431158) @@ -0,0 +1,21 @@ +Suil is a lightweight C library for loading and wrapping LV2 plugin UIs. + +Suil makes it possible to load a UI of any toolkit in a host using any +other toolkit (assuming the toolkits are both supported by Suil). +Hosts do not need to build against or link to foreign toolkit libraries +to use UIs written with that toolkit; all the necessary magic is performed +by dynamically loaded modules. The API is designed such that hosts do not +need to explicitly support specific toolkits at all - if Suil supports +a particular toolkit, then UIs in that toolkit will work in all hosts +that use Suil automatically. + +Suil currently supports every combination of Gtk 2, Qt 4, and X11, e.g. with +Suil a Gtk program can embed a Qt plugin UI without depending on Qt, +and a Qt program can embed a Gtk plugin UI without depending on Gtk. +On Windows, embedding native UIs in Gtk is also supported. +I (David Robillard) would be happy to work with plugin authors +to add support for new toolkits, please contact me if you're interested +in writing a plugin UI using a toolkit that is not yet +supported in the LV2 ecosystem. + +WWW: http://drobilla.net/software/suil/ Added: head/audio/suil/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/suil/pkg-plist Wed Jan 11 06:35:50 2017 (r431158) @@ -0,0 +1,10 @@ +include/suil-0/suil/suil.h +lib/libsuil-0.so +lib/libsuil-0.so.0 +lib/libsuil-0.so.0.8.2 +lib/suil-0/libsuil_gtk2_in_qt4.so +lib/suil-0/libsuil_qt4_in_gtk2.so +lib/suil-0/libsuil_x11_in_gtk2.so +lib/suil-0/libsuil_x11_in_qt4.so +libdata/pkgconfig/suil-0.pc +@dir lib/pkgconfig