diff options
author | jylefort <jylefort@FreeBSD.org> | 2005-07-12 18:47:36 +0800 |
---|---|---|
committer | jylefort <jylefort@FreeBSD.org> | 2005-07-12 18:47:36 +0800 |
commit | 59da570e8a7e4436568d9c9db98a7d370983a388 (patch) | |
tree | 216fa8217de8addc4d267d0e16d624c06bf05381 | |
parent | e902e346f6929ba1cc75dffa3cc9f98509a9427e (diff) | |
download | freebsd-ports-graphics-59da570e8a7e4436568d9c9db98a7d370983a388.tar.gz freebsd-ports-graphics-59da570e8a7e4436568d9c9db98a7d370983a388.tar.zst freebsd-ports-graphics-59da570e8a7e4436568d9c9db98a7d370983a388.zip |
Add splat.
SPLAT! is an RF Signal Propagation, Loss, And Terrain analysis tool for
the spectrum between 20 MHz and 20 GHz. Useful to Amateur Radio operators.
Written by John A. Magliacane, KD2BD
WWW: http://www.qsl.net/kd2bd/splat.html
PR: ports/83164
Submitted by: Diane Bruce <db@db.net>
-rw-r--r-- | comms/Makefile | 1 | ||||
-rw-r--r-- | comms/splat/Makefile | 41 | ||||
-rw-r--r-- | comms/splat/distinfo | 2 | ||||
-rw-r--r-- | comms/splat/pkg-descr | 9 |
4 files changed, 53 insertions, 0 deletions
diff --git a/comms/Makefile b/comms/Makefile index 7cf3e7f232c..3f8a1280b37 100644 --- a/comms/Makefile +++ b/comms/Makefile @@ -89,6 +89,7 @@ SUBDIR += smstools SUBDIR += snooper SUBDIR += spandsp + SUBDIR += splat SUBDIR += sredird SUBDIR += thebridge SUBDIR += tilp diff --git a/comms/splat/Makefile b/comms/splat/Makefile new file mode 100644 index 00000000000..667863a4496 --- /dev/null +++ b/comms/splat/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: splat +# Date created: 8 July 2005 +# Whom: db +# +# $FreeBSD$ +# + +PORTNAME= splat +PORTVERSION= 1.1.0 +CATEGORIES= comms +MASTER_SITES= ${MASTER_SITE_SUNSITE} +MASTER_SITE_SUBDIR= apps/ham + +MAINTAINER= db@db.net +COMMENT= Used in calculating path losses, useful to ham radio and others + +PORTDOCS= README README2 CHANGES +PLIST_FILES= bin/splat bin/citydecoder bin/usgs2sdf bin/fontdata +MAN1= splat.1 + +do-build: + cd ${WRKSRC} && \ + ${CXX} ${CXXFLAGS} -lm -lbz2 -o splat itm.cpp splat.cpp + cd ${WRKSRC}/utils && \ + ${CC} ${CFLAGS} -o citydecoder citydecoder.c && \ + ${CC} ${CFLAGS} -o usgs2sdf usgs2sdf.c && \ + ${CC} ${CFLAGS} -lz -o fontdata fontdata.c + +do-install: +.for f in splat utils/citydecoder utils/usgs2sdf utils/fontdata + ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin +.endfor + ${INSTALL_MAN} ${WRKSRC}/docs/man/splat.1 ${MAN1PREFIX}/man/man1 +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +. for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +. endfor +.endif + +.include <bsd.port.mk> diff --git a/comms/splat/distinfo b/comms/splat/distinfo new file mode 100644 index 00000000000..0dc7cf87c0a --- /dev/null +++ b/comms/splat/distinfo @@ -0,0 +1,2 @@ +MD5 (splat-1.1.0.tar.gz) = 216761c2fc77e74578370492f20b27d2 +SIZE (splat-1.1.0.tar.gz) = 142804 diff --git a/comms/splat/pkg-descr b/comms/splat/pkg-descr new file mode 100644 index 00000000000..30a76ef35ab --- /dev/null +++ b/comms/splat/pkg-descr @@ -0,0 +1,9 @@ +SPLAT! is an RF Signal Propagation, Loss, And Terrain analysis tool for +the spectrum between 20 MHz and 20 GHz. Useful to Amateur Radio operators. + +Written by John A. Magliacane, KD2BD + +WWW: http://www.qsl.net/kd2bd/splat.html + +- Diane Bruce, VA3DB +db@db.net |