From owner-svn-ports-all@freebsd.org Sat Nov 4 13:53:25 2017 Return-Path: Delivered-To: svn-ports-all@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 86562E6ED8C; Sat, 4 Nov 2017 13:53:25 +0000 (UTC) (envelope-from yuri@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 619EF6EFF2; Sat, 4 Nov 2017 13:53:25 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vA4DrOIt079798; Sat, 4 Nov 2017 13:53:24 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vA4DrNWr079791; Sat, 4 Nov 2017 13:53:23 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201711041353.vA4DrNWr079791@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 4 Nov 2017 13:53:23 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/audio: . rtaudio rtaudio/files X-SVN-Commit-Revision: 453464 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2017 13:53:25 -0000 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 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