This is a quick-fix for a regression discovered in the recent 4.0.14
release when upgrading the DB schema from version 3.8.x. Functionally
4.0.14 and 4.0.15 are the same: if you already have 4.0.14 running,
you do not need to upgrade.
This update unbreaks build due to fetch, as upstream is unable to locate previous
distribution files. A new version is on the way, however this is effectively a re-roll
of a newly packaged version of 0.1 code base.
Submitted by: jwbacon@tds.net (maintainer)
with like recent binutils. [1]
While here:
- trim headers
- convert to new options framework
- remove shlib version
- convert USE_GMAKE -> USES=gmake
Obtained from: DPorts [1]
SDR-J (formerly Jsdr) is a suite of four programs provided under a
LGPL open source license for playing around with sdr (software
defined radio). The software can be used directly with the PM-SDR
kit and RTL2832U based dongles, and in the 32 bits Windows version
with other kits as well.
The suite contains four programs:
- a full blown "short wave" receiver, which provides tuning in the
range of 100K .. 165M using the PM-SDR (although above 55 M with
reduced performance) and from app 55 MHz to app 900 Mhz or above
using an RTL2832U based dongle. The receiver provides quite a number
of decoders for amateur modes.
- am/fm receiver covering the same frequency bands as the sw receiver,
however, with am bandwidths selectable, with fm mono and stereo
decoding as well as with rds decoding.
- spectrum viewer for use with the RTL2832U based dongles, showing
spectra of up to 3 Mhz bandwidth.
- mini receiver, a stripped version of the fm receiver, a gadget
for listening to WFM using DAB sticks.
WWW: http://www.sdr-j.tk/
The id3tag library will fail to be detected on systems using ld from
recent binutils. This is because libid3tag is linked without zlib also
being linked directly, and be default it doesn't search libraries linked
to linked libraries. The configure script is patched with "-lz" to fix.
Also remove redundant MAKE_JOBS_SAFE while we are here.
Approved by: bapt (mentor), maintainer
This is a security release by upstream, and requires configuration changes
in addition to the software update. See UPDATING.
Reviewed by: ports-security (zi, remko)
Approved by: hrs (mentor, ports committer)
Changes:
* Updated fxcpuid() with AVX, AVX2, FMA, XOP, etc. detection.
* Updated tables for fxascii.cpp.
* Added various macros for memory alignment in fxdefs.h.
* Added API's to FXTreeList and FXFoldingList to replace one item with
custom item.
* Added API to return processor index of calling thread in FXThread.
* Bounds check in FXTabBook's setCurrent().
* Added isAccessible API to FXStat.
* Added API to rotate vector by quaternion to FXQuatd, FXQuatf.
* Check valid path in FXPath.
* FXFileList Drag and Drop now enabled.
* Improvements to File Open Dialog right-click menu.
* Add ability to remove as well as add directory bookmarks in File Open
Dialogs.
* AVX capabilities added to matrix and vector classes (if compiled with
avx intrinsics).
* FXThread sleep() function reverts to sleep if interrupted by signal.
* 4x4 Double matrix transpose using AVX permute intrinsic.
* Check UTIME_OMIT before using utimensat().
* Updates to PathFinder file manager.
* Check for NULL name in FXMetaClass hash table additions.
* Added isBinDigit() and isOctDigit() to Ascii character class functions.
Fixes indirect linking errors on modern binutils (fix from dports)
Also:
remove redundant MAKE_JOBS_SAFE while we are here.
Remove library version specification
Approved by: bapt (mentor)
Fixes indirect linking errors on modern binutils (fix from dports)
Also:
remove redundant MAKE_JOBS_SAFE while we are here.
Remove library version specification
Make portlint happy
Approved by: bapt (mentor)
and remove where is no need in this anymore.
- trim Makefile header
- pass maintainership to @perl
Information: wiki@ PortsLongtermTargets
Approved by: bapt@ (portmgr@)
- Remove options in ${OPTIONS_NAME}_(UN)SET from NEW_OPTIONS list.
- Remove an intermediate sort.
- Add support for ${OPTIONS_NAME}_(UN)SET_FORCE.
Approved by: bapt
2013-07-25 sysutils/rsyslog6-devel-pgsql: Use sysutils/rsyslog7
2013-07-25 sysutils/rsyslog6-devel-gnutls: Use sysutils/rsyslog7
2013-07-25 sysutils/rsyslog6-devel-snmp: Use sysutils/rsyslog7
2013-07-25 sysutils/rsyslog6-devel-rfc3195: Use sysutils/rsyslog7
2013-07-25 sysutils/rsyslog6-devel-mysql: Use sysutils/rsyslog7
2013-07-25 sysutils/rsyslog6-devel-relp: Use sysutils/rsyslog7
2013-07-25 sysutils/rsyslog6-devel-dbi: Use sysutils/rsyslog7
2013-07-25 sysutils/rsyslog6-devel-gssapi: Use sysutils/rsyslog7
2013-07-25 sysutils/rsyslog6-devel: Use sysutils/rsyslog7
The wrong C++ flag, --no-exceptions, was being passed to these ports. The
correct flag is "-fno-exceptions". Apparently gcc accepts the former, but
clang does not.
The current code states that clang version 3.2 will accept --no-exceptions,
but this isn't the case either. However, both of these ports will build
without a no-exceptions flag with clang. GCC still requires it.
Rework the clang detection code. If code is not detected, -fno-exceptions
is added to CXXFLAGS, otherwise nothing is done. Besides fixing the flag
handling, this implemention avoids the bmake errors that _CLANG!= was
generating.
Approved by: bapt (mentor), maintainer