14c69a0df0
Availability release of WSJT-X Version 1.8.0. Changes since "Release Candidate 3" (wsjtx-1.8.0-rc3) are very minor; they are described in the Release Notes posted here: http://physics.princeton.edu/pulsar/k1jt/Release_Notes_1.8.0.txt Installation packages for Windows, Linux, Macintosh, and Raspian Jessie have been posted on the WSJT web site here: http://physics.princeton.edu/pulsar/k1jt/wsjtx.html You can also download the packages from our SourceForge site: https://sourceforge.net/projects/wsjt/files/wsjtx-1.8.0-rc3/ (It may take a short time for the SourceForge site to be updated.) If you are upgrading from -rc1, you will need to do a one-time reset of the default list of suggested operating frequencies. Go to *File->Settings->Frequencies*, right click on the table and select *Reset*. We hope you will enjoy using WSJT-X Version 1.8.0. -- 73, Joe, K1JT, for the WSJT Development Group
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= wsjtx
|
|
PORTVERSION= 1.8.0
|
|
CATEGORIES= comms hamradio
|
|
MASTER_SITES= SF/wsjt/${PORTNAME}-${PORTVERSION}${DISTVERSIONSUFFIX}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
MAINTAINER= hamradio@FreeBSD.org
|
|
COMMENT= Weak signal ham radio communication package
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BUILD_DEPENDS= asciidoctor:textproc/rubygem-asciidoctor \
|
|
a2x:textproc/asciidoc \
|
|
${LOCALBASE}/share/xsl/docbook:textproc/docbook-xsl
|
|
LIB_DEPENDS= libfftw3.so:math/fftw3 \
|
|
libfftw3f.so:math/fftw3-float \
|
|
libhamlib.so:comms/hamlib \
|
|
libxslt.so:textproc/libxslt \
|
|
libomp.so.0:devel/openmp
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
USE_GL= yes
|
|
USE_QT5= gui buildtools qmake_build widgets multimedia concurrent printsupport serialport
|
|
USES= cmake compiler:c++11-lib dos2unix fortran pkgconfig tar:tgz
|
|
CMAKE_ARGS+= -DPORT_BUILDING::STRING="ON" \
|
|
-DCMAKE_PREFIX_PATH+=${LOCALBASE}/wsjtx/lib \
|
|
-DLOCALBASE::STRING="${LOCALBASE}"
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
#
|
|
# This nonsense is because wsjtx is shipped with a copy of hamlib
|
|
# as well as wsjtx
|
|
#
|
|
do-extract:
|
|
${TAR} xf ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} -C${WRKDIR}
|
|
${TAR} xf ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src/wsjtx.tgz -C${WRKDIR}
|
|
|
|
BROKEN_i386= does not build on i386 due to openmp
|
|
|
|
.include <bsd.port.mk>
|