Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Jan 2017 06:35:50 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r431158 - in head/audio: . suil
Message-ID:  <201701110635.v0B6ZoBs015517@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <beerml@sigma6audio.de>
  Reviewed by:	Yuri Victorovich <yuri@rawbw.com>

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 <beerml@sigma6audio.de>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701110635.v0B6ZoBs015517>