pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/audio
Module Name: pkgsrc
Committed By: nia
Date: Fri Oct 30 15:29:27 UTC 2020
Modified Files:
pkgsrc/audio: Makefile
Added Files:
pkgsrc/audio/dssi: DESCR Makefile PLIST buildlink3.mk distinfo
Log Message:
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.
To generate a diff of this commit:
cvs rdiff -u -r1.612 -r1.613 pkgsrc/audio/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/audio/dssi/DESCR pkgsrc/audio/dssi/Makefile \
pkgsrc/audio/dssi/PLIST pkgsrc/audio/dssi/buildlink3.mk \
pkgsrc/audio/dssi/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/audio/Makefile
diff -u pkgsrc/audio/Makefile:1.612 pkgsrc/audio/Makefile:1.613
--- pkgsrc/audio/Makefile:1.612 Fri Oct 30 15:22:23 2020
+++ pkgsrc/audio/Makefile Fri Oct 30 15:29:27 2020
@@ -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+= deforaos-mixer
SUBDIR+= din
SUBDIR+= disc-cover
SUBDIR+= distmp3
+SUBDIR+= dssi
SUBDIR+= dumb
SUBDIR+= easyh10
SUBDIR+= easytag
Added files:
Index: pkgsrc/audio/dssi/DESCR
diff -u /dev/null pkgsrc/audio/dssi/DESCR:1.1
--- /dev/null Fri Oct 30 15:29:27 2020
+++ pkgsrc/audio/dssi/DESCR Fri Oct 30 15:29:27 2020
@@ -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.
Index: pkgsrc/audio/dssi/Makefile
diff -u /dev/null pkgsrc/audio/dssi/Makefile:1.1
--- /dev/null Fri Oct 30 15:29:27 2020
+++ pkgsrc/audio/dssi/Makefile Fri Oct 30 15:29:27 2020
@@ -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"
Index: pkgsrc/audio/dssi/PLIST
diff -u /dev/null pkgsrc/audio/dssi/PLIST:1.1
--- /dev/null Fri Oct 30 15:29:27 2020
+++ pkgsrc/audio/dssi/PLIST Fri Oct 30 15:29:27 2020
@@ -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
Index: pkgsrc/audio/dssi/buildlink3.mk
diff -u /dev/null pkgsrc/audio/dssi/buildlink3.mk:1.1
--- /dev/null Fri Oct 30 15:29:27 2020
+++ pkgsrc/audio/dssi/buildlink3.mk Fri Oct 30 15:29:27 2020
@@ -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
Index: pkgsrc/audio/dssi/distinfo
diff -u /dev/null pkgsrc/audio/dssi/distinfo:1.1
--- /dev/null Fri Oct 30 15:29:27 2020
+++ pkgsrc/audio/dssi/distinfo Fri Oct 30 15:29:27 2020
@@ -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