Commit graph

4003 commits

Author SHA1 Message Date
Guido Falsi
eba84f6dd3 Update comms/smstools3 to 3.1.16 2017-02-23 14:25:24 +00:00
Ganael LAPLANCHE
d5f14482db Update to v2.6.1 2017-02-21 12:37:05 +00:00
Tobias C. Berner
f3c180c343 Update Qt5 to 5.7.1, and unify the Qt4 and Qt5 ports some more
* Update Qt5 to 5.7.1
* Move Qt4 binaries to lib/qt4/bin
* Move Qt5 libraries to lib/qt5/lib
  By moving the libraries we should finally be able to get rid of the inplace
  upgrade bug (see ports bugs 194088, 195105 and 198720):  when Qt5's libraries
  were lying in /usr/local/lib, which would often get added by pkgconfig to the
  linker paths via dependencies, the already installed libraries were linked
  against, instead of the ones that were being built. This forced us to make
  sure, that -L${WRKSRC}/lib was always coming before -L/usr/local/lib in the
  linker flags. With this change this should no longer be the case.
* Rename some ports to match the rest (foo-qtX -> qtX-foo)
* Depend on new port misc/qtchooser [see UPDATING & CHANGES]

There are several new Qt5 ports which all have been created by Marie Loise Nolden
<nolden@kde.org>. Thanks again.

PR:		216797
Exp-Run by:	antoine
Reviewed by:	rakuco, mat, groot_kde.org
Approved by:	rakuco (mentor)
Differential Revision:	https://reviews.freebsd.org/D9213
2017-02-18 19:48:05 +00:00
Dirk Meyer
15c75ea858 - make portlint happier 2017-02-18 09:10:56 +00:00
Tijl Coosemans
705ca33af2 Use -fPIC for all architectures because the makefile tries to create a
shared library libfec.so from object files compiled without -fPIC.
2017-02-14 10:57:11 +00:00
Mark Linimon
9c19df593a Add -fPIC to various ports to enable them to build on armv6.
Approved by:	portmgr (tier-2 blanket)
2017-02-09 18:53:12 +00:00
Kirill Ponomarev
19a4f0ddb2 - Added LICENSE
- Fixed patches for portlint
  - Supressed debug message on RXTXPort:removeEventListener:Exit when not in debug mode
  - Added java bootstrap class
  - Updated java source/target directives which will be depreciated in future release, see http://openjdk.java.net/
+jeps/182, and regression tested functionality.

PR:		216248
Submitted by:	james@elstone.net
Approved by:	mat (mentor)
Differential Revision:	https://reviews.freebsd.org/D9508
2017-02-09 17:50:06 +00:00
Jan Beich
663177a551 comms/linpsk: unbreak with clang 4.0
crxdisplay.cpp:101:16: error: ordered comparison between pointer and zero ('Input *' and 'int')
    if ( Sound <= NULL )
         ~~~~~ ^  ~~~~

PR:		216234
Submitted by:	tcberner
Approved by:	maintainer timeout (2 weeks)
2017-02-05 18:57:59 +00:00
Kirill Ponomarev
8dcb053620 Update comms/twpsk to 4.2
PR:		216742
Submitted by:	takefu@airport.fm
Approved by:	mat (mentor)
Differential Revision:	https://reviews.freebsd.org/D9446
2017-02-05 07:40:07 +00:00
Sunpoet Po-Chuan Hsieh
fdf5d2f720 Strip shared library
- Add LICENSE
- Bump PORTREVISION for package change
2017-02-05 05:31:42 +00:00
Jan Beich
18878f8faf Prefer -std=gnu89 over -fgnu89-inline 2017-02-05 03:30:43 +00:00
Tobias C. Berner
4c7d30bb70 Switch ports to use USE_PYQT=<foo> instead of using RUN_- and BUILD_DEPENDS
pyqt.mk provides USE_PYQT=<list> to depend on its components. Convert the ports
not yet using it to it.

Reviewed by:	rakuco, mat
Approved by:	rakuco (mentor)
Differential Revision:	https://reviews.freebsd.org/D9261
2017-02-04 13:37:15 +00:00
Jan Beich
a3b3a03eb8 comms/qico: unbreak on 12.0 after base r308264
In file included from gmtoff.c:7:
In file included from ./headers.h:51:
./replace.h:14:14: error: expected identifier or '('
extern char *basename (const char *filename);
             ^
/usr/include/libgen.h:60:21: note: expanded from macro 'basename'
 #define basename(x)     __generic(x, const char *, __old_basename, basename)(x)
                         ^
/usr/include/sys/cdefs.h:337:2: note: expanded from macro '__generic'
        _Generic(expr, t: yes, default: no)
        ^

Reported by:	pkg-fallout
2017-02-01 20:21:47 +00:00
Mathieu Arnold
bc19d06784 Bump PORTREVISION for ports affected by the fix the last commit.
Done with:	Tools/scripts/bump-revision.sh
Sponsored by:	Absolight
2017-01-31 16:21:45 +00:00
Mark Linimon
dcd74e6387 Mark various ports broken on aarch64 and armv6.
Approved by:	portmgr (tier-2 blanket)
2017-01-31 03:40:46 +00:00
Raphael Kubo da Costa
0417d98846 Replace spaces with tabs. 2017-01-21 14:15:19 +00:00
Raphael Kubo da Costa
02c0e6b4c0 Replace spaces with tabs. 2017-01-21 14:14:44 +00:00
Diane Bruce
66fbea0284 Update to 1.3.28
=Version 1.3.28=

2017-01-20  David Freese  <iam_w1hkj@w1hkj.com>

	5add320: Multiple xmlrpc servers
	cf1b1bb: Separate PTT
	07bf4b5: K2 comments
	c5edf8e: User defined command buttons
	71e5aac: ic7300 update
	5960bd9: IC9100 update

Reported by:	portscout
2017-01-21 12:51:37 +00:00
Sunpoet Po-Chuan Hsieh
0e04efec5a Update WWW: SF redirects to https://sourceforge.net/projects/<PROJECT_NAME>/ 2017-01-20 20:33:30 +00:00
Jan Beich
1b36bdb11d comms/telldus-core: unbreak with clang 4.0
service/SettingsConfuse.cpp:47:13: error: ordered comparison between pointer and zero ('cfg_t *' and 'int')
        if (d->cfg > 0) {
            ~~~~~~ ^ ~
service/SettingsConfuse.cpp:50:17: error: ordered comparison between pointer and zero ('cfg_t *' and 'int')
        if (d->var_cfg > 0) {
            ~~~~~~~~~~ ^ ~
service/SettingsConfuse.cpp:61:13: error: ordered comparison between pointer and zero ('cfg_t *' and 'int')
        if (d->cfg > 0) {
            ~~~~~~ ^ ~
service/SettingsConfuse.cpp:73:13: error: ordered comparison between pointer and zero ('cfg_t *' and 'int')
        if (d->cfg > 0) {
            ~~~~~~ ^ ~

PR:		216052
Submitted by:	Johan Ström (maintainer)
2017-01-18 21:34:42 +00:00
Ganael LAPLANCHE
6b27edfc05 Fix build with clang 4.0
PR:		216048
Submitted by:	jbeich
2017-01-16 21:18:27 +00:00
Olivier Cochard
cd56c05b82 Update to 0.5.1 (and fix build) 2017-01-13 15:03:11 +00:00
Vanilla I. Shu
0875f7894b Update to 1.38.1. 2017-01-12 12:12:35 +00:00
Carlos J. Puga Medina
c1d9af3ef4 - Update to 1.6
- Update LICENSE
- Add shells/bash to RUN_DEPENDS
- Update PORTDOCS files
- Add missing files from distribution
- Use INSTALL_SCRIPTS instead of INSTALL_PROGRAM to properly install scripts
- Convert config files to @sample in pkg-plist
- Drop maintainership

Changelog:
  https://sourceforge.net/p/ncid/news/2016/11/ncid-16-released/

Reviewed by:	amdmi3, junovitch
Approved by:	amdmi3, junovitch (mentors)
Differential Revision:	D8914
2017-01-12 11:54:07 +00:00
Diane Bruce
1dff7b0485 Remove bogus patch-src_xmrpcpp_XmlRpcBase64.h 2017-01-09 15:50:15 +00:00
Dmitry Marakasov
9d79e7b146 - Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOL
Approved by:	portmgr blanket
2017-01-09 13:16:49 +00:00
Diane Bruce
2fa945c7b7 Move upstream distribution to Sourceforge 2017-01-08 01:53:11 +00:00
Diane Bruce
64b8619419 Update to latest and move to SourceForge
=Version 1.3.27=

2016-10-17  David Freese  <iam_w1hkj@w1hkj.com>

	4d24585: New controls
	f86e7d1: TS480SAT extras
	c404c8a: Xmlrpcpp source director
	efbbc70: FT100D
	2fb8bbc: IC9100 mode/bw
	c22d48a: TS990 TS590SG
	5abb5bd: restore keep rig data
	5166fea: TT 550 Pegasus mods
	28f3c34: IC7300 serial defaults
	5ba38d2: TS990 ALC/SWR

2016-07-10  Kamal Mostafa  <kamal@whence.com>

	d9cc0f6: fix XmlRpc tm_mday comparison typo

2016-07-04  Robert Cunnings  <nw8l@whitemesa.com>

	a10a7f2: mxe update

2016-06-27  David Freese  <iam_w1hkj@w1hkj.com>

	c3c68d9: IC756 volume range
	765519d: C11 errors

=Version 1.3.26=

	8547731: IC7200 update

=Version 1.3.25=

	52a21b6: FT900 update
	acf388b: IC7300
	50b07b3: FT950
	9aaab6b: IC-7600 mods
	c5f6adf: UI small sliders
	8b73bbb: IC7200 update
	23604a6: IC7000 exchange vfos
	db07bd2: key_fldigi

=Version 1.3.24=

	29f82e6: K3 KX3 mods
	c1645f0: xmlserver update
	69ae54a: FTdx9000
	295ed35: FT5000 update
	754ba24: FTdx3000 update
	e5429b9: RIG ENUMERATION
	976d2df: FT991
	1d29d8a: TS2000
	7cb8293: FT900
	f511fd9: IC7100 data mode detect

=Version 1.3.23=

	424c33b: FT817 FT857D FT897D
	86cc66f: xmlrpc server
	b4bd89b: FT900
	b6303c1: TS590SG
	76d12b0: MXE update
	47d053c: FT990a
	cd39b31: Set Mode/BW controls
	f5da410: restore xml client
	9d994e6: KENWOOD mods
	7d4054f: IC7800
	7c41ac6: fldigi BW interface

2015-06-08  Kamal Mostafa  <kamal@whence.com>

	74450a4: BUILD_{DATE,USER,HOST}
2017-01-08 00:57:51 +00:00
Diane Bruce
8c81c2f32e Upstream repo is now on SourceForge follow
Update to 1.24

=Version 1.2.4=

2016-05-16  David Freese  <iam_w1hkj@w1hkj.com>

	e6fc6a5: Cabrillo Report
	f4bccc0: Contest fields

=Version 1.2.3=

	c16c3a4: Vertical Scrollbar

=Version 1.2.2=

	a3be952: Resizable dialog

=Version 1.2.1=

	1b3f80a: MXE update

2015-06-08  Kamal Mostafa  <kamal@whence.com>

	f453b69: BUILD_{DATE,USER,HOST}
2017-01-08 00:28:56 +00:00
Diane Bruce
98dc058c9b =Version 3.23.20=
2017-01-05  David Freese  <iam_w1hkj@w1hkj.com>

        5c45632: N3FJP Winter FD
        3119c92: FELD raster display
        ca8daf3: ARQ PTT

2016-12-25  John Phelps  <kl4yfd@gmail.com>

        de339d7: NEW micro modes

2016-12-24  David Freese  <iam_w1hkj@w1hkj.com>

        1a8f982: Socket connect
        6219ac9: pskreporter query
2017-01-07 23:23:22 +00:00
Diane Bruce
c32a854093 Restore change made by @jbeich made in rev 430669 accidentally removed.
N.B. the INCLUDE(CheckFunctionExists) is now needed here.
2017-01-07 22:57:43 +00:00
Diane Bruce
6ef184451e Update to 3.7.10.1
Note temporary hack in CMakeLists.txt to fix build with -gsl
link_directories("/usr/lib" "${LOCALBASE}/lib")
This is from a missing -L somewhere in the swig generation code that
needs to be fixed.

ChangeLog v3.7.10.1
=================

This is the first bug-fix release for v3.7.10

Contributors
------------

The following list of people directly contributed code to this
release:

 * Artem Pisarenko <ArtemPisarenko@users.noreply.github.com>
 * Ben Hilburn <ben.hilburn@ettus.com>
 * Christopher Chavez <chrischavez@gmx.us>
 * Johnathan Corgan <johnathan@corganlabs.com>
 * Jonathan Brucker <jonathan.brucke@gmail.com>
 * Nicholas Corgan <n.corgan@gmail.com>
 * Nicolas Cuervo <nicolas.cuervo@ettus.com>
 * Ron Economos <w6rz@comcast.net>
 * Sebastian Koslowski <koslowski@kit.edu>
 * Stephen Larew <stephen@slarew.net>

## Major Development Areas

This contains bug fixes primarily for GRC and DTV.

### GRC

Catch more exceptions thrown by ConfigParser when reading corrupted grc.conf files.

Fix the docstring update error for empty categories.

Fix grcc to call refactored GRC code.

Convert initially opened files to absolute paths to prevent attempting to read from tmp.

Move startup checks back in to gnuradio-companion script from grc/checks.py.

### DTV

Fix a segfault that occurs from out-of-bounds access in
dvbt_bit_inner_interleaver forecast by forecasting an enumerated list of all
input streams.

Fix VL-SNR framing.

### Digital

Enable update rate in block_recovery_mm blocks to keep tags close to the the proper clock-recovered sample time. Tag offsets will still be off between calls to work, but each work call updates the tag rate.

### Analog

Fix the derivative calculation in fmdet block.

### Builds

Fix linking GSL to gr-fec.

Use gnu99 C standard rather than gnu11 standard to maintain support for GCC 4.6.3.

### Other

Minor spelling and documentation fixes.

Fix uhd_siggen_gui when using lo_locked.
2017-01-07 19:06:33 +00:00
Adam Weinberger
c3142025cd LIB_DEPENDS=libglib-2.0.so should be USE_GNOME=glib20.
Also, while here, sort the LIB_DEPENDS in desktutils/gnome-contacts,
because wow.
2017-01-07 01:07:55 +00:00
Jan Beich
59e02117ae devel/boost-*: update to 1.63.0
Changes:	http://www.boost.org/users/history/version_1_63_0.html
PR:		215598
Exp-run by:	antoine
Approved by:	office (bapt)
MFH:		2017Q1
2017-01-06 08:45:03 +00:00
Jan Beich
bdc43de33e comms/dfu-programmer: chase r316903
Ideally, the port should switch to USES += autoreconf pkgconfig
instead of LIBS += -lusb.
2017-01-05 22:58:30 +00:00
Jan Beich
5c82686458 comms/dfu-util: drop nop flags 2017-01-05 22:58:18 +00:00
Jan Beich
7277ec6a16 Assume "pkg-config libusb*" works after 9.x EOL
FreeBSD appears to use different pkg-config name for 0.1.x API but it
doesn't matter much as 0.1, 1.0 and 2.0 share CFLAGS/LIBS.
2017-01-05 22:58:02 +00:00
Diane Bruce
73a46e20fa Fix svn properties. Bug in psvn!
Mark as broken on i386
Note typo with include_directories had no effect on build but fixed anyway
2017-01-05 16:20:21 +00:00
Diane Bruce
a9b5204fec Release: WSJT-X Version 1.7.0
-----------------------------

Short list of new features
--------------------------
1.  New modes: ISCAT, MSK144, QRA64.
2.  Newly implemented submodes: JT65B-C, JT9B-H (wide and fast).
3.  FT decoder replaces KV decoder for JT65; KVASD is no longer used.
4.  Improvements to JT4, JT9, and JT65 decoders.
5.  Multi-pass decoding now implemented for JT65 as well as WSPR.
6.  Many improvements to Rig Control.
7.  Improved convenience features for EME Doppler tracking.
8.  Multiple configurations can be saved and restored.
9.  Sample-file download facility.
10. Optional auto-sequencing for Fast modes.
11. Power settings optionally remembered for Transmit and Tune on a
    band-by-band basis.

New Modes
---------

1. MSK144 is intended for meteor scatter at 50 MHz and higher.  It
uses a low-density parity check code (LDPC) designed by Steve Franke,
K9AN.  The mode is a direct descendant of the now-defunct mode JTMSK,
with a number of improvements for better performance on weak and short
meteor pings.  The effective character transmission rate is about 250
cps, compared with 147 cps for FSK441.  Like JT4, JT9, JT65, and
QRA64, MSK144 uses strong forward error correction.  Message decoding
is all or nothing: partial decodes do not occur, and you will see
little or no garbage on your screen.

Standard MSK144 message frames are 72 ms long, compared with about 120
ms for an equivalent FSK441 message.  The MSK144 waveform allows
coherent demodulation, allowing up to 3 dB better sensitivity.  After
QSO partners have exchanged callsigns, MSK144 can use even shorter
messages, only 20 ms long.  As in all the fast modes in WSJT-X, the 72
ms (or 20 ms) messages are repeated without gaps for the duration of a
transmission cycle.  For most purposes we recommend a T/R cycle
duration of 15 s, but 5 s and 10 s sequences are also supported.

Short ("Sh") messages in MSK144 are intended primarily for 144 MHz and
higher frequencies, where most pings are very short.  These messages
do not contain full callsigns; instead, they contain a hash of the two
callsigns along with a report, acknowledgement, or 73.  Short messages
are fully decodable only by the station to whom they are addressed, as
part of an ongoing QSO, because only then will the received hash match
that calculated using the known strings for "My Call" and "DX Call".
If you are monitoring someone else's QSO, you will not be able to
decode its Sh messages.

An MSK144 signal occupies the full bandwidth of a typical SSB
transmitter, so transmissions are always centered at an offset of
1500Hz.  For best results, selectable or adjustable Rx and Tx filters
should be set to provide the flattest possible response over at least
300 - 2700 Hz.  The maximum permissible frequency offset between you
and your QSO partner is 200 Hz, and less is better.

2. QRA64 is a intended for EME and other weak-signal use.  Its
internal code was designed by Nico Palermo, IV3NWV, and implemented in
WSJT-X by K1JT.  The protocol uses a "Q-ary Repeat Accumulate" code --
along with LDPC, another one of the latest research areas in
communication theory.  The QRA64 code is inherently better than the
Reed Solomon (63,12) code used in JT65, yielding already a 1.3 dB
advantage.  QRA64 uses a new synchronizing scheme based on a 7 x 7
Costas array, so you will not see a bright sync tone at the lowest
tone frequency.  This change yields another 1.9 dB advantage.

In most respects our implementation of QRA64 is operationally similar
to JT65.  QRA64 does not use two-tone shorthand messages, and it makes
no use of a callsign database.  Rather, additional sensitivity is
gained by making use of "already known" information as a QSO
progresses -- for example, when reports are being exchanged and you
have already decoded both callsigns in a previous transmission.  QRA64
presently offers no message averaging capability, though that may be
added.  In our early tests, many EME QSOs have already been made using
submodes QRA64A-E on bands from 144 MHz to 10 GHz.

3. ISCAT is essentially the same as in recent versions of program WSJT.
For details consult the WSJT User Guide:
http://physics.princeton.edu/pulsar/K1JT/doc/wsjt/

Program Setup
-------------

Many of the new program capabilities are enabled when you check
"Enable VHF/UHF/Microwave features" on the Settings | General tab.
For MSK144 mode, we suggest setting "T/R 15 s" and "F Tol 100 Hz".
Check "Sh" to enable the use of short messages and "Auto Seq" for
auto-sequencing.  For QRA64 mode, set Tx and Rx frequencies to 1000
Hz.  We encourage you to check "Save all" when making tests, and to
save any of the resulting .wav files that might help us to improve
program performance or behavior, or to illustrate a problem that you
identify.

Final Comments
--------------

We will be grateful for any and all reports from users; these will
surely help us to make further improvements to WSJT-X.  The most
helpful bug reports describe the problem clearly and include a
complete recipe to reproduce it.  Feature requests are also welcome.
Send your reports to wsjtgroup@yahoogroups.com, or to the developers
list wsjt-devel@lists.sourceforge.net.
2017-01-05 14:40:09 +00:00
Diane Bruce
83e003bfd4 Add cwstudio 0.9.5, fast, portable and lightweight Morse code signals
generator.

PR:		178464
Submitted by:	luqqe@users.sourceforge.net
2017-01-03 16:37:20 +00:00
Ganael LAPLANCHE
475f525c60 Update gr-osmosdr to version 20160622 and bump dependent ports' revisions 2017-01-02 13:38:55 +00:00
Steve Wills
554cdfdf4b comms/rubygem-ruby-termios: update to 1.0.2 2017-01-02 09:55:42 +00:00
Diane Bruce
82e25d4166 Version 3.1
2016-12-31
	* Fix kenwood_set_mode for ts590s and mode CW, RTTY or AM.
	  Tks Tom, DL1JBE
	* Proper IPV6 and dual stack networking. Bill, G4WJS
	* Add a new command line option '--no-restore-ai' ('-n') to rigctl.
	  Bill, G4WJS
	* Fix missing PKTUSB mode setting code for FT-817 & FT-897.  Bill, G4WJS
	* New Prosistel rotor backend from IZ7CRX
	* Install daemon man files to man1.  Nate, N0NB
	* Migrate from libusb-0.1 to libusb-1.0.  Stephane, F8CFE
	* Added support for Icom IC-2730.  robinolejnik
	* Added support for the Icom IC-7300. Mike, W9MDB
	* Add send_morse to icom rigs.  Mike, W9MDB
	* added instructions how to compile on OSX. DH1TW
	* New Perseus model.  Stephane, F8CFE
	* Added Lua binding and demo script.  Ervin, HA2OS
	* Added test to support Flex 6300.  Bill, KB4AAA
	* Many bug fixes and feature enhancements to the code base.  See the
	  Git commit log for complete details.
2017-01-01 03:27:32 +00:00
Adam Weinberger
455d78c7b9 Remove warnings about installing documentation and examples. The only users
who will see those messages are users who have already accepted those options
in make config.
2016-12-31 20:00:37 +00:00
Alberto Villa
bee2052610 - Make portscout ignore slave ports 2016-12-28 05:30:38 +00:00
Rene Ladan
a6698662a2 Remove expired port:
comms/libcodec2: Duplicate port use `audio/codec2` instead
2016-12-26 20:08:41 +00:00
Diane Bruce
65fa9707a7 Bump PORT_REVISION as pkg-plist has changed.
Fixed build on 10.1 but in the process found a bogus pkg-plist fixed.
If DOCS was defined, the plist was wrong.
Also cleaned up a dependency

Fixed using https://cmake.org/cmake/help/v3.0/command/link_directories.html
This shouldn't be necessary:

"Note that this command is rarely necessary. Library locations returned by find_package() and find_library() are absolute paths. Pass these absolute library file paths directly to the target_link_libraries() command. CMake will ensure the linker finds them."

The directory path appears to be in /usr/local/libdata/pkgconfig/gsl.pc
so it would appear the swig handling code neglects to respect this.
I'll dig into this sometime later.

PR:		ports/210444
Submitted by:	rozhuk.im@gmail.com
2016-12-26 18:28:45 +00:00
Mathieu Arnold
e84670cc55 Spell EXPIRATION_DATE correctly.
Sponsored by:	Absolight
2016-12-26 14:32:49 +00:00
Diane Bruce
38af0755ea Update to 3.23.19
=Version 3.23.19=

2016-12-17  David Freese  <iam_w1hkj@w1hkj.com>

        8dc6202: DX cluster improvements
        1412352: Text highlight
        996bb3f: N3FJP generic contest
2016-12-26 02:22:29 +00:00
Dmitry Marakasov
d860387dbd - Remove unneeded depend on linux emulation
PR:		212037
Submitted by:	james@elstone.net (maintainer)
Reported by:	howard0su@gmail.com
2016-12-25 13:37:17 +00:00