Port changes:
* Take maintainership
* Add to LIB_DEPENDS and USExx
* Remove lists of executables and manpages, use file listing instead (*)
* Update WWW
With lld 7.0.0, the following error is emitted:
ld: error: duplicate symbol 'pdb_search_init' in version script
This is because the symbol version scripts generated by wscript_build
contain both "pdb_search_init" in the global section, and "pdb_*_init"
in the local section. Fix it by removing "pdb_*_init" from the local
section.
For net/samba48, this already got fixed, as a side effect of r478825.
Approved by: portmgr (antoine)
PR: 230602
MFH: 2018Q4
CHANGELOG since test7:
Include in the example config file a formulation which stops DHCP clients
from claiming the DNS name "wpad".
This is a fix for the CERT Vulnerability VU#598349.
Since this port uses -std=gnu++11, USES=compiler:c++11-lang is necessary.
While here, add USES=gl.
PR: 232033
Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>
Flavorize the ports:
* telepathy-qt4 -> telepathy-qt@qt4
* telepathy-qt5 -> telepathy-qt@qt5
While here, also clean up the Makefile a bit.
Approved by: portmgr (mat)
Differential Revision: https://reviews.freebsd.org/D17445
This version does not fully work yet, but neither does version 2.5.1.3 anymore.
Furthermore, version 2.5.1.3 was last updated upstream on 2015-06-03
- License switched from GPL2 to GPL3
- Switch from CHEESESHOP to GitHub
- LDAP support has been (temporarily) dropped upstream
- MEMCACHED has been replaced by Redis
- Switch default database to SQLite for easier testing
This version fixes build failures on FreeBSD versions that use Clang 6:
src/graphillion/zdd.cc:461:31: error: invalid operands to binary expression ('std::__1::ostream' (aka 'basic_ostream<char>') and 'std::__1::ostream')
if (out == std::cout || out == std::cerr)
~~~ ^ ~~~~~~~~~
Reported by: pkg-fallout
MFH: 2018Q4
The upstream HTTP server is configured to redirect to
psftools-1.0.10.tar.gz with a 301 when the requested filename is
similar enough to it. This leads to portscout finding bogus tarballs
like psftools-{1.0.11,1.0.12,...,1.1.10}.tar.gz which are really
psftools-1.0.10.tar.gz.
Add a partial fix for what was reported in PR 231804, the part that's
actually relevant upstream and that I made there, cf.
https://gcc.gnu.org/ml/gcc-patches/2018-10/msg00076.html as a new
local patch files/patch-libgfortran until I have backported this to the
upstream release branch and hence we get it via the weekly snapshots.
PR: 231804