From owner-svn-ports-all@freebsd.org Thu May 30 03:03:09 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 40A0415B54B9; Thu, 30 May 2019 03:03:09 +0000 (UTC) (envelope-from swills@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 D82EF6C731; Thu, 30 May 2019 03:03:08 +0000 (UTC) (envelope-from swills@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 B2F41B0DC; Thu, 30 May 2019 03:03:08 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4U338VR040889; Thu, 30 May 2019 03:03:08 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4U337OF040886; Thu, 30 May 2019 03:03:07 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201905300303.x4U337OF040886@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 30 May 2019 03:03:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r503029 - in head/comms: . dsd X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/comms: . dsd X-SVN-Commit-Revision: 503029 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D82EF6C731 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_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] 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: Thu, 30 May 2019 03:03:09 -0000 Author: swills Date: Thu May 30 03:03:07 2019 New Revision: 503029 URL: https://svnweb.freebsd.org/changeset/ports/503029 Log: comms/dsd: create port DSD is able to decode several digital voice formats from discriminator tap audio and synthesize the decoded speech. WWW: https://github.com/szechyjs/dsd PR: 236633 Submitted by: takefu@airport.fm Added: head/comms/dsd/ head/comms/dsd/Makefile (contents, props changed) head/comms/dsd/distinfo (contents, props changed) head/comms/dsd/pkg-descr (contents, props changed) Modified: head/comms/Makefile (contents, props changed) Modified: head/comms/Makefile ============================================================================== --- head/comms/Makefile Thu May 30 02:00:42 2019 (r503028) +++ head/comms/Makefile Thu May 30 03:03:07 2019 (r503029) @@ -35,6 +35,7 @@ SUBDIR += dfu-programmer SUBDIR += dfu-util SUBDIR += direwolf + SUBDIR += dsd SUBDIR += dump1090 SUBDIR += ebook2cw SUBDIR += ebook2cwgui Added: head/comms/dsd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/dsd/Makefile Thu May 30 03:03:07 2019 (r503029) @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= dsd +PORTVERSION= 1.6.0 +CATEGORIES= comms hamradio + +MAINTAINER= takefu@airport.fm +COMMENT= Decode several digital voice formats + +LICENSE= ISCL + +LIB_DEPENDS= libmbe.so:comms/mbelib + +USE_GITHUB= yes +GH_ACCOUNT= szechyjs +GH_TAGNAME= v${PORTVERSION} + +USE_LDCONFIG= yes +PLIST_FILES= "@(,uucp,4555) bin/dsd" +MAKE_ARGS= DEST_BASE=${STAGEDIR}${PREFIX} + +post-patch: + ${REINPLACE_CMD} 's|${PREFIX}|${LOCALBASE}|g;\ + s|install|${INSTALL_PROGRAM}|g;\ + s|gcc|${CC}|g'\ + ${WRKSRC}/Makefile +.for i in dsd.h dsd_file.c dsd_mbe.c + ${REINPLACE_CMD} 's|2250|2450|' ${WRKSRC}/${i} +.endfor + +post-install: + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + +.include Added: head/comms/dsd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/dsd/distinfo Thu May 30 03:03:07 2019 (r503029) @@ -0,0 +1,3 @@ +TIMESTAMP = 1486712916 +SHA256 (szechyjs-dsd-1.6.0-v1.6.0_GH0.tar.gz) = 44fa3ae108d2c11b4b67388d37fc6a63e8b44fc72fdd5db7b57d9eb045a9df58 +SIZE (szechyjs-dsd-1.6.0-v1.6.0_GH0.tar.gz) = 40959 Added: head/comms/dsd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/dsd/pkg-descr Thu May 30 03:03:07 2019 (r503029) @@ -0,0 +1,4 @@ +DSD is able to decode several digital voice formats from discriminator +tap audio and synthesize the decoded speech. + +WWW: https://github.com/szechyjs/dsd