From owner-svn-ports-all@freebsd.org Tue Feb 26 22:24:17 2019 Return-Path: Delivered-To: svn-ports-all@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 249781505D05; Tue, 26 Feb 2019 22:24:17 +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 B663C7642B; Tue, 26 Feb 2019 22:24:16 +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 A6407B97A; Tue, 26 Feb 2019 22:24:16 +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 x1QMOGep007801; Tue, 26 Feb 2019 22:24:16 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1QMOFHN007797; Tue, 26 Feb 2019 22:24:15 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201902262224.x1QMOFHN007797@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 26 Feb 2019 22:24:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493984 - in head/audio: . faudio X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/audio: . faudio X-SVN-Commit-Revision: 493984 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B663C7642B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Tue, 26 Feb 2019 22:24:17 -0000 Author: tobik Date: Tue Feb 26 22:24:15 2019 New Revision: 493984 URL: https://svnweb.freebsd.org/changeset/ports/493984 Log: New port: audio/faudio FAudio is an XAudio reimplementation that focuses solely on developing fully accurate DirectX Audio runtime libraries for the FNA project, including XAudio2, X3DAudio, XAPO, and XACT3. WWW: https://fna-xna.github.io/ Requested by: gerald (for future versions of emulators/wine) Added: head/audio/faudio/ head/audio/faudio/Makefile (contents, props changed) head/audio/faudio/distinfo (contents, props changed) head/audio/faudio/pkg-descr (contents, props changed) head/audio/faudio/pkg-plist (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Tue Feb 26 21:51:44 2019 (r493983) +++ head/audio/Makefile Tue Feb 26 22:24:15 2019 (r493984) @@ -151,6 +151,7 @@ SUBDIR += fabla2-lv2 SUBDIR += fapg SUBDIR += fasttracker2 + SUBDIR += faudio SUBDIR += faust SUBDIR += faust-lv2 SUBDIR += faustlive Added: head/audio/faudio/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/faudio/Makefile Tue Feb 26 22:24:15 2019 (r493984) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= FAudio +DISTVERSION= 19.02-23 +DISTVERSIONSUFFIX= -ge5c9c20 +CATEGORIES= audio + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Accuracy-focused XAudio reimplementation + +LICENSE= ZLIB +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg + +USES= cmake compiler:c11 sdl +USE_GITHUB= yes +GH_ACCOUNT= FNA-XNA +USE_SDL= sdl2 + +CMAKE_ON= FFMPEG + +do-test: + @cd ${BUILD_WRKSRC} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} \ + -DBUILD_TESTS=ON -DBUILD_UTILS=ON ${CMAKE_SOURCE_PATH} && \ + ${DO_MAKE_BUILD} ${ALL_TARGET} + @${SETENV} SDL_AUDIODRIVER=dummy ${BUILD_WRKSRC}/faudio_tests + +.include Added: head/audio/faudio/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/faudio/distinfo Tue Feb 26 22:24:15 2019 (r493984) @@ -0,0 +1,3 @@ +TIMESTAMP = 1551219217 +SHA256 (FNA-XNA-FAudio-19.02-23-ge5c9c20_GH0.tar.gz) = f4d252d126b2016bb81c8fec5c36dd15b5f3f8bf1d6a239e415168abf54dd39e +SIZE (FNA-XNA-FAudio-19.02-23-ge5c9c20_GH0.tar.gz) = 886337 Added: head/audio/faudio/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/faudio/pkg-descr Tue Feb 26 22:24:15 2019 (r493984) @@ -0,0 +1,5 @@ +FAudio is an XAudio reimplementation that focuses solely on developing +fully accurate DirectX Audio runtime libraries for the FNA project, +including XAudio2, X3DAudio, XAPO, and XACT3. + +WWW: https://fna-xna.github.io/ Added: head/audio/faudio/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/faudio/pkg-plist Tue Feb 26 22:24:15 2019 (r493984) @@ -0,0 +1,12 @@ +include/F3DAudio.h +include/FACT.h +include/FACT3D.h +include/FAPO.h +include/FAPOBase.h +include/FAPOFX.h +include/FAudio.h +include/FAudioFX.h +lib/cmake/FAudio/FAudio-config.cmake +lib/cmake/FAudio/FAudio-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/FAudio/FAudio-targets.cmake +lib/libFAudio.so