Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Feb 2020 12:44:07 +0000 (UTC)
From:      Diane Bruce <db@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r526965 - in head/comms: . digiham
Message-ID:  <202002241244.01OCi7gK090387@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: db
Date: Mon Feb 24 12:44:07 2020
New Revision: 526965
URL: https://svnweb.freebsd.org/changeset/ports/526965

Log:
  This a simple set of command-line tools that is intended to
  be used to decode digital modulations used by ham radio
  operators. The main focus is on digital voice modes.
  
  Right now this project enables you to decode DMR and YSF.
  
  PR:		ports/244357
  Submitted by:	vvelox@vvelox.net

Added:
  head/comms/digiham/
  head/comms/digiham/Makefile   (contents, props changed)
  head/comms/digiham/distinfo   (contents, props changed)
  head/comms/digiham/pkg-descr   (contents, props changed)
  head/comms/digiham/pkg-plist   (contents, props changed)
Modified:
  head/comms/Makefile

Modified: head/comms/Makefile
==============================================================================
--- head/comms/Makefile	Mon Feb 24 12:32:32 2020	(r526964)
+++ head/comms/Makefile	Mon Feb 24 12:44:07 2020	(r526965)
@@ -34,6 +34,7 @@
     SUBDIR += deforaos-phone
     SUBDIR += dfu-programmer
     SUBDIR += dfu-util
+    SUBDIR += digiham
     SUBDIR += direwolf
     SUBDIR += dsd
     SUBDIR += dump1090

Added: head/comms/digiham/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/comms/digiham/Makefile	Mon Feb 24 12:44:07 2020	(r526965)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	digiham
+DISTVERSION=	0.3.0
+CATEGORIES=	comms hamradio
+
+MAINTAINER=	vvelox@vvelox.net
+COMMENT=	Tools for decoding digital ham communication
+
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+LIB_DEPENDS=	libmbe.so:comms/mbelib
+
+USES=		cmake
+USE_GITHUB=	yes
+GH_ACCOUNT=	jketterl
+GH_PROJECT=	digiham
+
+post-install:
+	cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
+
+.include <bsd.port.mk>

Added: head/comms/digiham/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/comms/digiham/distinfo	Mon Feb 24 12:44:07 2020	(r526965)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1582527683
+SHA256 (jketterl-digiham-0.3.0_GH0.tar.gz) = 81242bca840a78c7aca0ba3a96fd3cb442ad41373085b4ddd0cfaac04fea7375
+SIZE (jketterl-digiham-0.3.0_GH0.tar.gz) = 68345

Added: head/comms/digiham/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/comms/digiham/pkg-descr	Mon Feb 24 12:44:07 2020	(r526965)
@@ -0,0 +1,7 @@
+This a simple set of command-line tools that is intended to
+be used to decode digital modulations used by ham radio
+operators. The main focus is on digital voice modes.
+
+Right now this project enables you to decode DMR and YSF.
+
+WWW: https://github.com/jketterl/digiham

Added: head/comms/digiham/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/comms/digiham/pkg-plist	Mon Feb 24 12:44:07 2020	(r526965)
@@ -0,0 +1,10 @@
+bin/rrc_filter
+bin/dc_block
+bin/gfsk_demodulator
+bin/dmr_decoder
+bin/ysf_decoder
+bin/mbe_synthesizer
+bin/digitalvoice_filter
+bin/fsk_demodulator
+bin/pocsag_decoder
+%%EXAMPLESDIR%%/dmr-decoder.sh



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