mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
f1189cb220
with both Smitch charts and SWR/PWR curves. Does drag-and-drop schematic entry with direct entry of component values as well as "drag tuning". Can import load parameters directly from the following: - EZNEC (and EZNEC GAM files) - miniVNA and miniVNApro - AIM4170 - CocoaNEC - Rig Expert ".aaplot" files - Touchstone S1P ".s1p" files (shunt and series) Reviewed by: db, skreuzer Approved by: db, skreuzer (mentors) Differential Revision: https://phabric.freebsd.org/D311
32 lines
718 B
Makefile
32 lines
718 B
Makefile
# Created by: shurd@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= simsmith
|
|
PORTVERSION= 9.9
|
|
CATEGORIES= science hamradio
|
|
MASTER_SITES= http://ae6ty.com/Smith_Charts_files/ \
|
|
${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= shurd
|
|
DISTNAME= SimSmith9p9
|
|
EXTRACT_SUFX= .jar
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= hamradio@FreeBSD.org
|
|
COMMENT= A Java-based Smith Chart program
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6+
|
|
JAVA_RUN= yes
|
|
|
|
PLIST_FILES= %%JAVAJARDIR%%/${DISTNAME}${EXTRACT_SUFX} \
|
|
bin/${PORTNAME}
|
|
SUB_FILES= simsmith
|
|
SUB_LIST+= DISTNAME=${DISTNAME}
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
@${INSTALL_DATA} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${STAGEDIR}${JAVAJARDIR}
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|