Commit graph

4179 commits

Author SHA1 Message Date
Alexey Dokuchaev
514b949913 - Unbreak the build on sparc64: gcc was generating assembler code that
invoked FdTOx (convert floating point to 64-bit integer) instruction
  with odd register number as the second argument, while apparently[*]
  an even number is required:

	fdtox	%f10, %f15

  It caused ``Illegal operands'' error when compiling `draw_symbols.c':

	{standard input}: Assembler messages:
	{standard input}:2686: Error: Illegal operands
	{standard input}:2695: Error: Illegal operands
	{standard input}:2835: Error: Illegal operands
	{standard input}:2844: Error: Illegal operands
	{standard input}:2854: Error: Illegal operands
	{standard input}:2864: Error: Illegal operands

  Fix the build by forcing -O0 when compiling this file on sparc64.

- Remove OPTCFLAGS option which enabled "optimized" CFLAGS ``-O2 -pipe'':
  these are our default CFLAGS for a long time

[*] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56890
2017-12-30 10:40:38 +00:00
Danilo Egea Gondolfo
fd8d4198f3 - Update to 2.0.15 2017-12-26 22:45:33 +00:00
Jochen Neumeister
b1debcdbb2 comms/cwstudio: Update from 0.9.5 to 0.9.6
*While here, pet portlint and switch to DISTVERSION

PR:		224547
Submitted by:	 Lukasz Komsta <sp8qed@onet.eu> (maintainer)
Approved by:	mentors (implicit)
2017-12-25 10:23:27 +00:00
Sean Bruno
d3d215e6c3 comms/amtterm Update to 1.6 release
Reviewed by:	crees
Differential Revision:	https://reviews.freebsd.org/D13590
2017-12-22 20:55:47 +00:00
Baptiste Daroussin
2e9911f602 Switch from swig 2.0 to swig 3.0 2017-12-20 19:34:11 +00:00
Baptiste Daroussin
931952ad7f Switch to swig 3.0 2017-12-20 15:00:47 +00:00
Diane Bruce
2ae3dd8688 =Version 1.0.4=
2017-12-18  David Freese  <w1hkj@bellsouth.net>

        3fdf12c: Cluster stream
        d32b3d9: AR report

Reported by:	portscout
2017-12-20 00:31:45 +00:00
Baptiste Daroussin
a9883b0303 Switch to swig 3.0 2017-12-19 15:35:41 +00:00
Mark Linimon
f1696c0036 Mark more recently failing ports broken on aarch64.
While here, pet portlint and reformat some other BROKEN statements.

Approved by:	portmgr (tier-2 blanket)
2017-12-19 14:41:29 +00:00
Michael Reifenberger
7e036760f5 Update to rel. 3.10.2.0 2017-12-18 15:18:32 +00:00
Jochen Neumeister
45833f5f76 comms/tio: Update from 1.27 to 1.28
Changelog: https://github.com/tio/tio/releases/tag/v1.28

PR:		224337
Submitted by:	Dmitri Goutnik <dg@syrec.org> (maintainer)
Approved by:	mentors (implicit)
2017-12-14 13:18:41 +00:00
Antoine Brodin
1d00aa2b00 - Those ports fail to build with python3
- Add some explicit FLAVOR to dependencies where needed
2017-12-11 16:54:20 +00:00
Antoine Brodin
f6825be1b5 wsjt builds fine without the python metaport 2017-12-09 14:05:08 +00:00
Jochen Neumeister
0a79bc38eb Update */pear-Horde to the latest version
switch to DISTVERSION

Approved by:	tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D13399
2017-12-08 20:21:01 +00:00
Dmitry Marakasov
47eb8ec602 - Pet portlint
- Add LICENSE
- Unsilence installation commands
- Switch to options helpers

Approved by:	portmgr blanket
2017-12-05 09:00:27 +00:00
Alan Somers
0b54608fa9 comms/mlan3 shells/fish: annotate conflicts
They both install /usr/local/bin/fish

PR:		222777
Reported by:	http://pkgtool.osorio.me/conflicts/
Approved by:	Chris Hutchinson <portmaster@bsdforge.com> (mlan3 maintainer)
Differential Revision:	https://reviews.freebsd.org/D13318
2017-12-04 16:59:19 +00:00
Sunpoet Po-Chuan Hsieh
c40c461d6d Use USES=localbase
- Remove CONFLICTS: comms/spandsp-devel has been removed almost 3 years
- Update pkg-descr
- Update WWW
2017-12-03 20:38:42 +00:00
Antoine Brodin
38308bbce8 - Add explicit FLAVOR to a few dependencies
- Remove FLAVOR from py-docutils dependency in comms/uhd, in this case
  it needs the rst2html command, not the docutils module
- Mark some ports as not compatible with python3
2017-12-03 08:25:31 +00:00
Antoine Brodin
07faea058d Cleanup LIB_DEPENDS on libpng 2017-12-01 07:19:53 +00:00
Mathieu Arnold
551be3c723 Convert Python ports to FLAVORS.
Ports using USE_PYTHON=distutils are now flavored.  They will
  automatically get flavors (py27, py34, py35, py36) depending on what
  versions they support.

  There is also a USE_PYTHON=flavors for ports that do not use distutils
  but need FLAVORS to be set.  A USE_PYTHON=noflavors can be set if
  using distutils but flavors are not wanted.

  A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
  added to cope with Python ports that did not have the Python
  PKGNAMEPREFIX but are flavored.

  USES=python now also exports a PY_FLAVOR variable that contains the
  current python flavor.  It can be used in dependency lines when the
  port itself is not python flavored.  For example, deskutils/calibre.

  By default, all the flavors are generated.  To only generate flavors
  for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
  BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.

  In all the ports with Python dependencies, the *_DEPENDS entries MUST
  end with the flavor so that the framework knows which to build/use.
  This is done by appending '@${PY_FLAVOR}' after the origin (or
  @${FLAVOR} if in a Python module with Python flavors, as the content
  will be the same).  For example:

    RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}

PR:		223071
Reviewed by:	portmgr, python
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D12464
2017-11-30 15:50:30 +00:00
Mark Linimon
bf43557044 For ports that are marked BROKEN on armv6, and also fail to build on
armv7, mark them so.

This is part two of a multipart commit to bring armv7 ports to parity
with armv6.

Approved by:	portmgr (tier-2 blanket)
Obtained from:	lonesome.com -exp run
2017-11-30 06:13:34 +00:00
Rene Ladan
10c237288a comms/dcf77pi: update to 3.6.1
Changelog:	https://github.com/rene0/dcf77pi/releases/tag/3.6.1
MFH:		2017Q4
2017-11-19 14:04:03 +00:00
Steve Wills
a873055e7e comms/tio: Update to 1.27
PR:		223666
Submitted by:	Dmitri Goutnik <dg@syrec.org> (maintainer)
2017-11-14 16:08:50 +00:00
Ganael LAPLANCHE
60f25f82e7 Update to 2.9 2017-11-13 16:49:17 +00:00
Dmitry Marakasov
83768f420a - Add LICENSE
- Unsilence installation

Approved by:	portmgr blanket
2017-11-12 09:04:42 +00:00
Antoine Brodin
1cd3011b81 Fix the context of some patches so that they apply with stricter patch(1)
PR:		223545
With hat:	portmgr
2017-11-10 07:10:35 +00:00
Antoine Brodin
b618e2d0c5 Fix the context of some patches so that they apply with stricter patch(1)
PR:		223545
With hat:	portmgr
2017-11-09 23:12:03 +00:00
Yuri Victorovich
6128783e79 comms/tio: Moved plist back from Makefile to pkg-plist, added the DOCS option.
Approved by:	mat (requested changes in D12987)
Differential Revision:	https://reviews.freebsd.org/D12987
2017-11-08 18:32:58 +00:00
Yuri Victorovich
e9af285dfc comms/tio: Update to 1.26
PR:		223496
Submitted by:	Dmitri Goutnik <dg@syrec.org> (maintainer)
Approved by:	tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D12987
2017-11-08 06:37:52 +00:00
Vanilla I. Shu
035f2c8075 Update to 2.10. 2017-11-08 05:53:30 +00:00
Ryan Steinmetz
e6dbb11ec5 - Reset MAINTAINER due to fatal email bounces, maintainer timeouts
Reported by:	portscout
2017-11-04 13:07:41 +00:00
Jimmy Olgeni
e929aea23c Fix whitespace issues (mixed tab/spaces, alignment) in a few ports.
This round is @FreeBSD.org residents except teams.
2017-11-02 21:41:47 +00:00
Diane Bruce
c2bdb7db2b Unbreak build
Fix errors spotted by portlint

PR:		ports/223358
Submitted by:	takefu@airport.fm
2017-11-02 03:42:00 +00:00
Diane Bruce
ed5799080e Add rtlsdr support
PR:		ports/223356
Submitted by:	takefu@airport.fm
2017-11-02 01:51:10 +00:00
Diane Bruce
e121a351ff Unbreak:
fix
  PR#451999
  portlint(1) compliant

add
  license_file

PR:		ports/223355
Submitted by:	takefu@airport.fm
2017-11-02 00:39:55 +00:00
Jimmy Olgeni
2fb9f25373 Fix whitespace issues (mixed tab/spaces, alignment) in a few ports. 2017-11-01 13:10:35 +00:00
Hans Petter Selasky
178dc54417 Update devd rules and various build cleanup.
Added support for Tellstick Duo.

Approved by:	maintainer (Johan Strom, johan@stromnet.se)
Tested by:	hselasky @
PR:		222790
2017-11-01 07:55:34 +00:00
Diane Bruce
7ce72eb110 =Version 4.0.12=
2017-10-25  David Freese  <w1hkj@bellsouth.net>

	abb522d: Farnsworth timing
	408a01b: PSK sinc filter
	8cfc154: ACL interface
	792b152: Text capture
	dd2c8ef: OSX start process

Reported by:	portscout
2017-10-29 20:55:50 +00:00
Diane Bruce
14c69a0df0 The WSJT Development Group is pleased to announce the full General
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
2017-10-29 14:54:07 +00:00
Diane Bruce
487752f07d - @fjoe correctly pointed out one place where the newline needed to be
removed, I did miss that one. (It's directly used as a filename)
  The other places are do not cares.
- It makes no sense to remove gets() without removing potentially
  just as bad scanf() calls and it's bad practice to use scanf anyway
  I'm paranoid with implementations of fgets() (Non FreeBSD to be clear)
  hence the use of -1 in the length argument of fgets().
- I'll see if upstream is willing to accept these diffs.

Submitted by:	Max Khon <fjoe@freebsd.org>
Reported by: 	Max Khon <fjoe@freebsd.org>
2017-10-28 16:15:16 +00:00
Tobias Kortkamp
75d7a3c520 New port: comms/tio
Simple TTY terminal application which features a straightforward
commandline interface to easily connect to TTY devices for basic
input/output.

WWW: https://tio.github.io

PR:		222719
Submitted by:	Dmitri Goutnik <dg@syrec.org>
2017-10-27 15:31:57 +00:00
Diane Bruce
d6b4be41ff V1.2.2 July 2017
----------------

1/ Improvements to Hamlib support, error message reporting, serial rate box.

2/ Disabled unused UDP comms/egexp processing to clean up Options dialog.
2017-10-24 00:22:06 +00:00
Dmitry Marakasov
22b35c7122 - Add LICENSE_FILE
- Switch to USES=tar
- Unsilence installation commands
- Switch to options helpers

Approved by:	portmgr blanket
2017-10-21 09:04:24 +00:00
Jan Beich
84e727457f multimedia/ffmpeg: update to 3.4
Notable changes:
- i386/amd64 now depend on NASM per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/4f9297ac3b39
- NETCDF is now MYSOFA but the dependency doesn't exist in ports yet
- SCHROEDINGER is gone per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/220b24c7c9
- DRM, LIBRSVG2, LIBXML2 are new options
- ABI isn't completely compatible: some structs have changed

Minor cleanup:
- Don't pass --disable-{in,out}dev when it's already blocked by disabled dependency
- Drop redundant "Enable" from option descriptions
- Switch CDIO_DESC to use Mk/bsd.options.desc.mk

Changes:	https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.4:/Changelog
ABI:		https://abi-laboratory.pro/tracker/timeline/ffmpeg/
PR:		223057
Exp-run by:	antoine
2017-10-21 06:50:49 +00:00
Adrian Chadd
b632376f44 [svxlink] make this compile / run on FreeBSD-HEAD again.
I've also submitted the patches upstream.

Approved by:	db
Differential Revision:	https://reviews.freebsd.org/D12680
2017-10-16 19:28:11 +00:00
Diane Bruce
b38d719950 Update to fldigi 4.0.11
=Version 4.0.11=

2017-10-14  David Freese  <w1hkj@bellsouth.net>

	3302f0d: Text Capture
	35387db: FreeBSD mod
	6e94d54: Documentation update
	e4abdbf: PSK filter
	cd36a46: Audio Stream
	5a9322f: printf cleanup
	e8651ed: CW Multichannel
	89b5207: QSY multi
2017-10-15 18:13:36 +00:00
Diane Bruce
76121f6b66 Move with upstream to sourceforge
=Version 1.0.3=

2017-10-14  David Freese  <w1hkj@bellsouth.net>

	0d1ba30: dxcc server list
2017-10-15 16:38:34 +00:00
Kevin Lo
9335c19273 Update to 20170805. 2017-10-14 07:53:04 +00:00
Antoine Brodin
b172c9db4c Make fetchable again
Verified by:	no difference between uncompressed tar files
2017-10-13 22:12:24 +00:00
Antoine Brodin
bc8ca5d378 Allow building kde4 again 2017-10-13 21:42:44 +00:00