pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/audio audio: Add dssi from wip



details:   https://anonhg.NetBSD.org/pkgsrc/rev/77cf76ae9722
branches:  trunk
changeset: 441258:77cf76ae9722
user:      nia <nia%pkgsrc.org@localhost>
date:      Fri Oct 30 15:29:27 2020 +0000

description:
audio: Add dssi from wip

Based on work by Johann Franz a very long time ago.

DSSI (pronounced "dizzy") is an API for audio processing plugins,
particularly useful for software synthesis plugins with user
interfaces.

DSSI is an open and well-documented specification developed for use
in Linux audio applications, although portable to other platforms.
It may be thought of as LADSPA-for-instruments, or something
comparable to VSTi.

DSSI consists of a C language API for use by plugins and hosts,
based on the LADSPA API, and an OSC (Open Sound Control) API for
use in user interface to host communications.  The DSSI specification
consists of an RFC which describes the background for the proposal
and defines the OSC part of the specification, and a documented
header file which defines the C API.

diffstat:

 audio/Makefile           |   3 ++-
 audio/dssi/DESCR         |  15 +++++++++++++++
 audio/dssi/Makefile      |  33 +++++++++++++++++++++++++++++++++
 audio/dssi/PLIST         |  23 +++++++++++++++++++++++
 audio/dssi/buildlink3.mk |  27 +++++++++++++++++++++++++++
 audio/dssi/distinfo      |   6 ++++++
 6 files changed, 106 insertions(+), 1 deletions(-)

diffs (141 lines):

diff -r 52f99babf918 -r 77cf76ae9722 audio/Makefile
--- a/audio/Makefile    Fri Oct 30 15:24:08 2020 +0000
+++ b/audio/Makefile    Fri Oct 30 15:29:27 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.612 2020/10/30 15:22:23 nia Exp $
+# $NetBSD: Makefile,v 1.613 2020/10/30 15:29:27 nia Exp $
 #
 
 COMMENT=       Audio tools
@@ -69,6 +69,7 @@
 SUBDIR+=       din
 SUBDIR+=       disc-cover
 SUBDIR+=       distmp3
+SUBDIR+=       dssi
 SUBDIR+=       dumb
 SUBDIR+=       easyh10
 SUBDIR+=       easytag
diff -r 52f99babf918 -r 77cf76ae9722 audio/dssi/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/dssi/DESCR  Fri Oct 30 15:29:27 2020 +0000
@@ -0,0 +1,15 @@
+DSSI (pronounced "dizzy") is an API for audio processing plugins,
+particularly useful for software synthesis plugins with user
+interfaces.
+
+DSSI is an open and well-documented specification developed for use
+in Linux audio applications, although portable to other platforms.
+It may be thought of as LADSPA-for-instruments, or something
+comparable to VSTi.
+
+DSSI consists of a C language API for use by plugins and hosts,
+based on the LADSPA API, and an OSC (Open Sound Control) API for
+use in user interface to host communications.  The DSSI specification
+consists of an RFC which describes the background for the proposal
+and defines the OSC part of the specification, and a documented
+header file which defines the C API.
diff -r 52f99babf918 -r 77cf76ae9722 audio/dssi/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/dssi/Makefile       Fri Oct 30 15:29:27 2020 +0000
@@ -0,0 +1,33 @@
+# $NetBSD: Makefile,v 1.1 2020/10/30 15:29:27 nia Exp $
+
+DISTNAME=      dssi-1.1.1
+CATEGORIES=    audio
+MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=dssi/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      http://dssi.sourceforge.net/
+COMMENT=       API for audio processing plugins
+LICENSE=       gnu-lgpl-v2.1
+
+GNU_CONFIGURE= yes
+USE_LIBTOOL=   yes
+USE_TOOLS+=    gmake gsed pkg-config
+USE_LANGUAGES= c c++
+
+.include "../../mk/bsd.prefs.mk"
+
+PKGCONFIG_OVERRIDE+=   dssi.pc.in
+
+.if ${OPSYS} == "Linux"
+.  include "../../audio/alsa-lib/buildlink3.mk"
+.else
+.  include "../../audio/libdssialsacompat/buildlink3.mk"
+.endif
+.include "../../audio/libsamplerate/buildlink3.mk"
+.include "../../audio/libsndfile/buildlink3.mk"
+.include "../../audio/jack/buildlink3.mk"
+.include "../../audio/ladspa/buildlink3.mk"
+.include "../../audio/liblo/buildlink3.mk"
+.include "../../mk/dlopen.buildlink3.mk"
+BUILDLINK_TRANSFORM+=  opt:-ldl:${BUILDLINK_LDADD.dl:Q}
+.include "../../mk/bsd.pkg.mk"
diff -r 52f99babf918 -r 77cf76ae9722 audio/dssi/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/dssi/PLIST  Fri Oct 30 15:29:27 2020 +0000
@@ -0,0 +1,23 @@
+@comment $NetBSD: PLIST,v 1.1 2020/10/30 15:29:27 nia Exp $
+bin/dssi_analyse_plugin
+bin/dssi_list_plugins
+bin/dssi_osc_send
+bin/dssi_osc_update
+bin/jack-dssi-host
+bin/karplong
+bin/less_trivial_synth
+bin/trivial_sampler
+bin/trivial_synth
+include/dssi.h
+lib/dssi/karplong.la
+lib/dssi/less_trivial_synth.la
+lib/dssi/trivial_sampler.la
+lib/dssi/trivial_synth.la
+lib/pkgconfig/dssi.pc
+man/man1/dssi_analyse_plugin.1
+man/man1/dssi_list_plugins.1
+man/man1/dssi_osc_send.1
+man/man1/dssi_osc_update.1
+man/man1/jack-dssi-host.1
+@exec ${MKDIR} %D/lib/dssi/trivial_sampler
+@exec ${MKDIR} %D/lib/dssi/less_trivial_synth
diff -r 52f99babf918 -r 77cf76ae9722 audio/dssi/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/dssi/buildlink3.mk  Fri Oct 30 15:29:27 2020 +0000
@@ -0,0 +1,27 @@
+# $NetBSD: buildlink3.mk,v 1.1 2020/10/30 15:29:27 nia Exp $
+
+BUILDLINK_TREE+=       dssi
+
+.if !defined(DSSI_BUILDLINK3_MK)
+DSSI_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.dssi+=   dssi>=1.1.1
+BUILDLINK_PKGSRCDIR.dssi?=     ../../audio/dssi
+BUILDLINK_DEPMETHOD.dssi?=     build
+
+.include "../../mk/bsd.fast.prefs.mk"
+
+.if ${OPSYS} == "Linux"
+.  include "../../audio/alsa-lib/buildlink3.mk"
+.else
+.  include "../../audio/libdssialsacompat/buildlink3.mk"
+.endif
+.include "../../mk/dlopen.buildlink3.mk"
+.include "../../audio/libsamplerate/buildlink3.mk"
+.include "../../audio/libsndfile/buildlink3.mk"
+.include "../../audio/jack/buildlink3.mk"
+.include "../../audio/ladspa/buildlink3.mk"
+.include "../../audio/liblo/buildlink3.mk"
+.endif # DSSI_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -dssi
diff -r 52f99babf918 -r 77cf76ae9722 audio/dssi/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/dssi/distinfo       Fri Oct 30 15:29:27 2020 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2020/10/30 15:29:27 nia Exp $
+
+SHA1 (dssi-1.1.1.tar.gz) = fd08bc8579871d94a6fd43fb241fb2dd1b0f5dc6
+RMD160 (dssi-1.1.1.tar.gz) = 758bace54128d856d724d388494b5926488100b9
+SHA512 (dssi-1.1.1.tar.gz) = faf35ae851b889ad17a8ba624c713af8a5f33bb93db8e34842e8b778a0e36c3eab9ab712a40e4ca7ecd96954f3e70504d89a75b3826dd138332085e176c0d34d
+Size (dssi-1.1.1.tar.gz) = 712038 bytes



Home | Main Index | Thread Index | Old Index