From owner-svn-ports-head@freebsd.org Thu Feb 7 11:42:20 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9516214D673D; Thu, 7 Feb 2019 11:42:20 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 34F1A85AB3; Thu, 7 Feb 2019 11:42:20 +0000 (UTC) (envelope-from tobik@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0F1E61C878; Thu, 7 Feb 2019 11:42:20 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x17BgJow072097; Thu, 7 Feb 2019 11:42:19 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x17BgJ6d072094; Thu, 7 Feb 2019 11:42:19 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201902071142.x17BgJ6d072094@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 7 Feb 2019 11:42:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r492362 - head/audio/portaudio X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/audio/portaudio X-SVN-Commit-Revision: 492362 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 34F1A85AB3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2019 11:42:20 -0000 Author: tobik Date: Thu Feb 7 11:42:19 2019 New Revision: 492362 URL: https://svnweb.freebsd.org/changeset/ports/492362 Log: audio/portaudio: Build C++ bindings too Requested by: Ulrich Huber Modified: head/audio/portaudio/Makefile head/audio/portaudio/pkg-plist Modified: head/audio/portaudio/Makefile ============================================================================== --- head/audio/portaudio/Makefile Thu Feb 7 11:20:46 2019 (r492361) +++ head/audio/portaudio/Makefile Thu Feb 7 11:42:19 2019 (r492362) @@ -3,6 +3,7 @@ PORTNAME= portaudio PORTVERSION= 19.6.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= audio MASTER_SITES= http://www.portaudio.com/archives/ @@ -19,7 +20,9 @@ USES= autoreconf dos2unix gmake localbase:ldflags libt USE_LDCONFIG= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --without-alsa +CONFIGURE_ARGS= --disable-dependency-tracking \ + --enable-cxx \ + --without-alsa WRKSRC= ${WRKDIR}/${PORTNAME} OPTIONS_DEFINE= DOCS DOXYGEN EXAMPLES JACK PATEST SNDIO @@ -49,7 +52,8 @@ post-patch: ${WRKSRC}/Makefile.in post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libportaudio.so + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libportaudio.so \ + ${STAGEDIR}${PREFIX}/lib/libportaudiocpp.so ${INSTALL_DATA} ${FILESDIR}/pa_unix_oss.h ${STAGEDIR}${PREFIX}/include post-install-DOCS-on: Modified: head/audio/portaudio/pkg-plist ============================================================================== --- head/audio/portaudio/pkg-plist Thu Feb 7 11:20:46 2019 (r492361) +++ head/audio/portaudio/pkg-plist Thu Feb 7 11:42:19 2019 (r492362) @@ -34,8 +34,32 @@ %%JACK%%include/pa_jack.h include/pa_unix_oss.h include/portaudio.h +include/portaudiocpp/AutoSystem.hxx +include/portaudiocpp/BlockingStream.hxx +include/portaudiocpp/CFunCallbackStream.hxx +include/portaudiocpp/CallbackInterface.hxx +include/portaudiocpp/CallbackStream.hxx +include/portaudiocpp/CppFunCallbackStream.hxx +include/portaudiocpp/Device.hxx +include/portaudiocpp/DirectionSpecificStreamParameters.hxx +include/portaudiocpp/Exception.hxx +include/portaudiocpp/HostApi.hxx +include/portaudiocpp/InterfaceCallbackStream.hxx +include/portaudiocpp/MemFunCallbackStream.hxx +include/portaudiocpp/PortAudioCpp.hxx +include/portaudiocpp/SampleDataFormat.hxx +include/portaudiocpp/Stream.hxx +include/portaudiocpp/StreamParameters.hxx +include/portaudiocpp/System.hxx +include/portaudiocpp/SystemDeviceIterator.hxx +include/portaudiocpp/SystemHostApiIterator.hxx lib/libportaudio.a lib/libportaudio.so lib/libportaudio.so.2 lib/libportaudio.so.2.0.0 +lib/libportaudiocpp.a +lib/libportaudiocpp.so +lib/libportaudiocpp.so.0 +lib/libportaudiocpp.so.0.0.12 libdata/pkgconfig/portaudio-2.0.pc +libdata/pkgconfig/portaudiocpp.pc