svn commit: r459370 - in head/comms/splat: . files

Diane Bruce db at FreeBSD.org
Thu Jan 18 19:56:17 UTC 2018


Author: db
Date: Thu Jan 18 19:56:15 2018
New Revision: 459370
URL: https://svnweb.freebsd.org/changeset/ports/459370

Log:
  - Update to latest version
  - Change to new upstream distribution
  - This also fixes build with clang6 on head
  
  Release 1.4.2:
  By John A. Magliacane <kd2bd at amsat.org> (08-Dec-14)
  
  * Modified the "build" script to better accommodate the Mac OSX platform,
    and fixed a contradiction in the documentation relating to the
    description of the situational and time variability parameters
    used in the ITM and ITWOM propagation models.
    (Thanks John M. Vanderau, AA0DN)
  
  * Modified the man pages for improved rendering.  (Thanks Randy Berry, N3LRX)
  
  * Added a field limit in the citydecoder utility to prevent crashing if
    the coordinate file being read should contain unexpectantly large fields.
    (Thanks David Binderman)
  
  ----------------------------------------------------------------------------
  
  Release 1.4.1:
  By John A. Magliacane <kd2bd at amsat.org> (08-Jan-14):
  
  * The copyright restriction on the ITWOM 3.0 propagation model has
    been removed.  ITWOM 3.0 code may now be used and modified under
    the GPLv2 license.
  
  * Commented out unused variables and calculations in itwom3.0.cpp
    to eliminate gcc warnings about unused but set variables.
  
  * Fixed a bug that caused path loss graphs to be plotted incorrectly.
  
  * Embellished the "citydecoder" utility to handle U.S. Census County
    Subdivision files, thereby providing an additional source of city
    names and locations not necessarily contained in previously handled
    Incorporated Places/Census Designated data files.
  
  * Corrected the image size written to the header of Xastir-compatible
    .ppm maps.
  
  * Fixed a bug that sometimes prevented the "Mode of propagation" from
    appearing in Path Analysis reports when running in -oldtim mode.
  
  * Added a -log command line switch that allows SPLAT!'s command line
    and all associated switches and arguments to be written to a logfile
    for future reference or re-execution at a later time.
  
  * Modified SPLAT!'s "build" script for better handling of OSX.
    (Thanks Glen Bizeau, VE9GLN)
  
  * Changed some coding to eliminate compilation warnings produced by
    recent versions of GCC.
  
  * Brought the documentation up to date.

Added:
  head/comms/splat/files/patch-splat.cpp   (contents, props changed)
Deleted:
  head/comms/splat/files/patch-utils_fontdata.c
Modified:
  head/comms/splat/Makefile
  head/comms/splat/distinfo   (contents, props changed)
  head/comms/splat/files/patch-utils_postdownload   (contents, props changed)

Modified: head/comms/splat/Makefile
==============================================================================
--- head/comms/splat/Makefile	Thu Jan 18 19:36:01 2018	(r459369)
+++ head/comms/splat/Makefile	Thu Jan 18 19:56:15 2018	(r459370)
@@ -1,10 +1,10 @@
 # $FreeBSD$
 
 PORTNAME=	splat
-PORTVERSION=	1.4.0
+PORTVERSION=	1.4.2
 CATEGORIES=	comms hamradio
-MASTER_SITES=	SUNSITE/apps/ham
-
+MASTER_SITES=	http://www.qsl.net/kd2bd/
+#http://www.qsl.net/kd2bd/splat-1.4.2.tar.bz2
 MAINTAINER=	hamradio at FreeBSD.org
 COMMENT=	Used in calculating path losses, useful to ham radio and others
 

Modified: head/comms/splat/distinfo
==============================================================================
--- head/comms/splat/distinfo	Thu Jan 18 19:36:01 2018	(r459369)
+++ head/comms/splat/distinfo	Thu Jan 18 19:56:15 2018	(r459370)
@@ -1,2 +1,3 @@
-SHA256 (splat-1.4.0.tar.bz2) = f081951c68577234668ac2a1e6eff86e60e57e17c470d765900e9d1461058678
-SIZE (splat-1.4.0.tar.bz2) = 357433
+TIMESTAMP = 1516294940
+SHA256 (splat-1.4.2.tar.bz2) = 39b0b314e2e927bdf00d1eda4b9865efd128ba850305f987aec049c4fd58a29c
+SIZE (splat-1.4.2.tar.bz2) = 356823

Added: head/comms/splat/files/patch-splat.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/comms/splat/files/patch-splat.cpp	Thu Jan 18 19:56:15 2018	(r459370)
@@ -0,0 +1,20 @@
+--- splat.cpp.orig	2018-01-18 17:04:01 UTC
++++ splat.cpp
+@@ -567,7 +567,7 @@ double ElevationAngle(struct site source, struct site 
+ 	   (downtilt), as referenced to a normal to the center of
+ 	   the earth. */
+ 	   
+-	register double a, b, dx;
++	double a, b, dx;
+ 
+ 	a=GetElevation(destination)+destination.alt+earthradius;
+ 	b=GetElevation(source)+source.alt+earthradius;
+@@ -2727,7 +2727,7 @@ void PlotPath(struct site source, struct site destinat
+ 
+ 	char block;
+ 	int x, y;
+-	register double cos_xmtr_angle, cos_test_angle, test_alt;
++	double cos_xmtr_angle, cos_test_angle, test_alt;
+ 	double distance, rx_alt, tx_alt;
+ 
+ 	ReadPath(source,destination);

Modified: head/comms/splat/files/patch-utils_postdownload
==============================================================================
--- head/comms/splat/files/patch-utils_postdownload	Thu Jan 18 19:36:01 2018	(r459369)
+++ head/comms/splat/files/patch-utils_postdownload	Thu Jan 18 19:56:15 2018	(r459370)
@@ -1,5 +1,5 @@
---- utils/postdownload.orig	2012-11-03 03:56:52.000000000 -0500
-+++ utils/postdownload	2012-11-03 03:57:09.000000000 -0500
+--- utils/postdownload.orig	2009-03-01 17:37:04 UTC
++++ utils/postdownload
 @@ -1,4 +1,4 @@
 -#!/bin/bash
 +#!/bin/sh


More information about the svn-ports-head mailing list