From owner-svn-ports-all@freebsd.org Sun Jul 5 16:44:43 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9DCC836F376; Sun, 5 Jul 2020 16:44:43 +0000 (UTC) (envelope-from tcberner@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4B0F0q3gZ1z48M2; Sun, 5 Jul 2020 16:44:43 +0000 (UTC) (envelope-from tcberner@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 615F410468; Sun, 5 Jul 2020 16:44:43 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 065Gih6e000910; Sun, 5 Jul 2020 16:44:43 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 065Gig6k000902; Sun, 5 Jul 2020 16:44:42 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <202007051644.065Gig6k000902@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 5 Jul 2020 16:44:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r541291 - in head/audio: . exhale exhale/files X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/audio: . exhale exhale/files X-SVN-Commit-Revision: 541291 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.33 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: Sun, 05 Jul 2020 16:44:43 -0000 Author: tcberner Date: Sun Jul 5 16:44:42 2020 New Revision: 541291 URL: https://svnweb.freebsd.org/changeset/ports/541291 Log: New port: audio/exhale: xHE-AAC (Extended HE-AAC/USAC) encoder exhale is a lightweight library and application to encode uncompressed WAVE-format audio files into ISO/IEC 23003-3 (MPEG-D) Unified Speech and Audio Coding (xHE-AAC/Extended HE-AAC/USAC) format. WWW: https://gitlab.com/ecodis/exhale PR: 247659 Submitted by: daniel.engberg.lists@pyret.net Added: head/audio/exhale/ head/audio/exhale/Makefile (contents, props changed) head/audio/exhale/distinfo (contents, props changed) head/audio/exhale/files/ head/audio/exhale/files/patch-src_lib_CMakeLists.txt (contents, props changed) head/audio/exhale/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Sun Jul 5 16:38:43 2020 (r541290) +++ head/audio/Makefile Sun Jul 5 16:44:42 2020 (r541291) @@ -142,6 +142,7 @@ SUBDIR += eteroj-lv2 SUBDIR += etktab SUBDIR += exaile + SUBDIR += exhale SUBDIR += ezstream SUBDIR += faac SUBDIR += faad Added: head/audio/exhale/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/exhale/Makefile Sun Jul 5 16:44:42 2020 (r541291) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= exhale +DISTVERSION= 1.0.5 +CATEGORIES= audio + +MAINTAINER= daniel.engberg.lists@pyret.net +COMMENT= xHE-AAC (Extended HE-AAC) encoder + +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/include/License.htm + +USES= cmake compiler:c++11-lang + +USE_GITLAB= yes +GL_ACCOUNT= ecodis +GL_COMMIT= ce3641dcdcf29b123dfc077441c56bd7aba293a3 + +USE_LDCONFIG= yes + +PLIST_FILES= bin/exhale \ + lib/libexhale.so + +.include Added: head/audio/exhale/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/exhale/distinfo Sun Jul 5 16:44:42 2020 (r541291) @@ -0,0 +1,3 @@ +TIMESTAMP = 1593511703 +SHA256 (ecodis-exhale-ce3641dcdcf29b123dfc077441c56bd7aba293a3_GL0.tar.gz) = f7d0274685439ff52e0b6e8903aab13e64c43250f11f4750074f2653a5a4bf8f +SIZE (ecodis-exhale-ce3641dcdcf29b123dfc077441c56bd7aba293a3_GL0.tar.gz) = 117628 Added: head/audio/exhale/files/patch-src_lib_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/exhale/files/patch-src_lib_CMakeLists.txt Sun Jul 5 16:44:42 2020 (r541291) @@ -0,0 +1,17 @@ +--- src/lib/CMakeLists.txt.orig 2020-06-15 23:00:12 UTC ++++ src/lib/CMakeLists.txt +@@ -8,7 +8,7 @@ + # Copyright (c) 2018-2020 Christian R. Helmrich, project ecodis. All rights reserved. + # + +-add_library(exhaleLib ++add_library(exhaleLib SHARED + lappedTransform.cpp + exhaleLibPch.cpp + bitStreamWriter.cpp +@@ -53,5 +53,4 @@ if(CMAKE_VERSION VERSION_GREATER "3.16.0") + endif() + + install(TARGETS exhaleLib +- ARCHIVE DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR} + LIBRARY DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR}) Added: head/audio/exhale/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/exhale/pkg-descr Sun Jul 5 16:44:42 2020 (r541291) @@ -0,0 +1,5 @@ +exhale is a lightweight library and application to encode uncompressed +WAVE-format audio files into ISO/IEC 23003-3 (MPEG-D) Unified Speech and Audio +Coding (xHE-AAC/Extended HE-AAC/USAC) format. + +WWW: https://gitlab.com/ecodis/exhale