Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Nov 2017 13:53:23 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r453464 - in head/audio: . rtaudio rtaudio/files
Message-ID:  <201711041353.vA4DrNWr079791@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sat Nov  4 13:53:23 2017
New Revision: 453464
URL: https://svnweb.freebsd.org/changeset/ports/453464

Log:
  New port: audio/rtaudio: C++ classes that provide a common API for realtime audio input/output
  
  PR:		223414
  Approved by:	tcberner (mentor)
  Differential Revision:	https://reviews.freebsd.org/D12936

Added:
  head/audio/rtaudio/
  head/audio/rtaudio/Makefile   (contents, props changed)
  head/audio/rtaudio/distinfo   (contents, props changed)
  head/audio/rtaudio/files/
  head/audio/rtaudio/files/patch-configure.ac   (contents, props changed)
  head/audio/rtaudio/pkg-descr   (contents, props changed)
  head/audio/rtaudio/pkg-plist   (contents, props changed)
Modified:
  head/audio/Makefile

Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile	Sat Nov  4 13:49:06 2017	(r453463)
+++ head/audio/Makefile	Sat Nov  4 13:53:23 2017	(r453464)
@@ -698,6 +698,7 @@
     SUBDIR += rosegarden
     SUBDIR += rplay
     SUBDIR += rsynth
+    SUBDIR += rtaudio
     SUBDIR += rtmidi
     SUBDIR += rubberband
     SUBDIR += ruby-smf

Added: head/audio/rtaudio/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/rtaudio/Makefile	Sat Nov  4 13:53:23 2017	(r453464)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	rtaudio
+DISTVERSIONPREFIX=	v
+DISTVERSION=	5.0.0
+CATEGORIES=	audio
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	C++ classes that provide a common API for realtime audio input/output
+
+LICENSE=	MIT
+
+USES=		autoreconf libtool pkgconfig
+USE_GITHUB=	yes
+GH_ACCOUNT=	thestk
+GNU_CONFIGURE=	yes
+USE_LDCONFIG=	yes
+INSTALL_TARGET=	install-strip
+
+.include <bsd.port.mk>

Added: head/audio/rtaudio/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/rtaudio/distinfo	Sat Nov  4 13:53:23 2017	(r453464)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1509775215
+SHA256 (thestk-rtaudio-v5.0.0_GH0.tar.gz) = 14d1936c88585cacf081a896438f04f158c115c0fc9eec9364214040c4328376
+SIZE (thestk-rtaudio-v5.0.0_GH0.tar.gz) = 211279

Added: head/audio/rtaudio/files/patch-configure.ac
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/rtaudio/files/patch-configure.ac	Sat Nov  4 13:53:23 2017	(r453464)
@@ -0,0 +1,11 @@
+--- configure.ac.orig	2017-11-04 06:06:02 UTC
++++ configure.ac
+@@ -142,7 +142,7 @@ case $host in
+   AS_IF([test "$api" == ""], [
+     AC_MSG_RESULT(using OSS)
+     api="$api -D__LINUX_OSS__"
+-    LIBS="$LIBS -lossaudio"
++    LIBS="$LIBS"
+     AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(RtAudio requires the pthread library!))])
+   ;;
+ 

Added: head/audio/rtaudio/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/rtaudio/pkg-descr	Sat Nov  4 13:53:23 2017	(r453464)
@@ -0,0 +1,6 @@
+A set of C++ classes that provide a common API for realtime audio input/output
+across Linux (native ALSA, JACK, PulseAudio and OSS), Macintosh OS X
+(CoreAudio and JACK), and Windows (DirectSound, ASIO and WASAPI) operating
+systems.
+
+WWW: https://github.com/thestk/rtaudio

Added: head/audio/rtaudio/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/rtaudio/pkg-plist	Sat Nov  4 13:53:23 2017	(r453464)
@@ -0,0 +1,6 @@
+include/rtaudio/RtAudio.h
+lib/librtaudio.a
+lib/librtaudio.so
+lib/librtaudio.so.6
+lib/librtaudio.so.6.0.0
+libdata/pkgconfig/rtaudio.pc



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