Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 May 2019 03:03:07 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r503029 - in head/comms: . dsd
Message-ID:  <201905300303.x4U337OF040886@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905300303.x4U337OF040886>