to unbreak x11-fm/sushi on FreeBSD 8 and 9.
lang/gjs and lang/spidermonkey24 are currently built with
USES=compiler:c11. On FreeBSD 8, this causes them to be compiled
with clang from ports, and on FreeBSD 9, they are built with clang
from base. In both cases, they are linked to libstdc++ from base.
These two ports are dependencies of x11-fm/sushi, which also depends
on webkit-gtk3, which is compiled with USES=compiler:c++11-lib. On
FreeBSD 8 and 9 webkit-gtk3 is compiled with gcc from ports and
linked to its newer bundled libstdc++. Sushi is compiled with gcc
from base and consists of pure C code, so it does not link directly
to libstdc++. The build fails because ld links in the base version
of libstdc++ before it links in webkit-gtk3, and then discovers
that the newer libstdc++ ABI needed by webkit-gtk3 is missing.
Converting sushi to USES=compiler:c++11-lib does not fix the build
failure, and just changes the error message, probably because sushi
does not directly link to any version of libstdc++. If sushi is
further hacked to force it to link directly to the newer version
of libstdc++ bundled with the gcc port, the build succeeds, but the
resulting executable segfaults inside libstdc++ with a stack trace
that traverses a bunch of functions contained in the gjs and
spidermonkey24 libraries.
Converting gjs and spidermonkey24 to USES=compiler:c++11-lib forces
them to be compiled with the ports version of gcc on FreeBSD 8 and
9 and link to its bundled libstdc++ (and is a no-op on FreeBSD 10
and higher). Because these libraries are linked into sushi before
webkit-gtk3, they load the version of libstdc++ which meets the
requirements of webkit-gtk3, and the resulting executable is
functional. No modifications to sushi are necessary.
PR: 196078, 199434, 199435
Differential Revision: https://reviews.freebsd.org/D2396
Approved by: mat (mentor)
MFH: 2015Q2
PR: 195736
Submitted by: Michael Gruenewald (maintainer)
Add'l fixes: marino
Besides typical port cleanup, the dragonfly patches which had been
removed for the update were added back to the configure patch.
- While I'm here:
- Allow to strip shared library as regular user
- Use SITE_ARCH
Changes: http://search.cpan.org/dist/B-Flags/Changes
PR: 199785
Submitted by: Sergei Vyshenski <svysh.fbsd@gmail.com> (maintainer)
Changes:
* improved automation to help combat spammers that are abusing new top level
domains;
* tweaks to the SPF support to block more spoofed emails;
* increased character set normalization to make rules easier to develop and
stop spammers from using alternate character sets to bypass tests;
* continued refinement to the native IPv6 support; and
* improved Bayesian classification with better debugging and attachment
hashing.
Full ChangeLog at https://metacpan.org/changes/distribution/Mail-SpamAssassin
The japanese/spamassassin port is broken until it's updated for 3.4.1.
libkrb5 on it. [1]
- Suppress empty share/doc/cyrus-imapd/man directory.
- Since vzic is not built now, we don't need to depend upon glib20.
Spotted by: pkg-fallout [1]
the build failure on FreeBSD 8 (and probably 9), the application
fails to start because the base version of libstdc++ is loaded at
runtime, which does not satify the requirements of webkit-gtk3. The
reason is that evolution does not directly link to libstdc++, so
the rpath added to it by USES=compiler:c++11-lib has no effect. The
first shared library that links to libstdc++ belongs to
evolution-data-server, which does not have USES=compiler:c++11-lib,
which causes the base version of libstdc++ to be loaded.
Unconditionally add USES=compiler:c++11-lib to
databases/evolution-data-server. Adding the rpath to its shared
libraries will cause the newer version of libstdc++ to be loaded
when evolution starts and fix the runtime error on FreeBSD 8 and
9. For standard versions of FreeBSD 10 and higher on amd64 and
i386, it is a no-op, so there is no harm in doing this. If FreeBSD
10 or higher is configured to build with base gcc and clang is not
present, which is an option on amd64 and i386 and is mandatory on
some tier 2 platforms that don't have clang support, then
USES=compiler:c++11-lib is needed.
PR: 199746
Differential Revision: https://reviews.freebsd.org/D2388
Reviewed by: kwm
Approved by: mat (mentor)
MFH: 2015Q2
Summary:
2nd/3rd attempt - sorry for the mailing list spam
Sponsored by: ignore me
Reviewed by: ignore me
Differential Revision: https://reviews.freebsd.org/D2293
===============================
Quisk can now transmit a message from a WAV file. Record your message at
a high level (near clipping) at 48 ksps, 16-bit, one channel (monophonic).
Then enter the file name on the Config/Config screen. Press the "File play"
button to transmit. Quisk will press the PTT button for you, and release it
during pauses. To interrupt playback, press PTT or release FilePlay so you can answer.
The "Split" button has been replaced with a "Splt" button and a "Rev" button. The "Splt"
button splits Rx and Tx; and if you click it with the right mouse button instead of the
left, it also locks the Tx frequency so tuning changes the Rx frequency. The "Rev"
button reverses the Tx and Rx frequencies. These features were suggested by Mario, DH5YM.
I added a new parameter mic_agc_level to the config file to control the mic AGC. Input levels
below mic_agc_level are ignored. The default is 0.1. Increase this (up to 1.0) to reduce the
AGC range, and reduce it to increase the AGC mic gain boost.
Philip Lee contributed a patch to the PulseAudio code to set the play buffer size.
Prompted by: portscout
present in base, then port was detecting it and not registering dependency
correctly. After installation, libsss_ldap.so was linked against libk5crypto.so
but it was not present in the system. Replace explicit dependency by USES
gssapi:mit and bump PORTREVISION
Approved by: portmgr (blanket)
- Move changes that have been adopted upstream after 7.9 into extra patches
named after the commit to GDB's master branch. This includes previous
patches such as the signal trampoline detection fixes and XSAVE support
as well as well as new fixes such as fixing 'gcore' to not require procfs.
- The tui-io.c patch previously needed with new readline has been accepted
upstream.
- The remaining patches have been updated to apply cleanly.
- The threads target has been fixed to actually pass register requests for
LWP-backed threads down to the ptrace backends without detouring via
libthread_db which actually fixes AVX with threads.
PR: 199451
Differential Revision: https://reviews.freebsd.org/D2293
Approved by: bapt, luca.pizzamiglio@gmail.com (maintainer)
LUAHandler.cpp:207:15: error: use of undeclared identifier 'luaL_checkint'; did you
mean 'luaL_checkany'?
int no = luaL_checkint( state, 1 );
^~~~~~~~~~~~~
luaL_checkany
/usr/local/include/lua53/lauxlib.h:52:18: note: 'luaL_checkany' declared here
LUALIB_API void (luaL_checkany) (lua_State *L, int arg);
^
LUAHandler.cpp:207:9: error: cannot initialize a variable of type 'int' with an
rvalue of type 'void'
int no = luaL_checkint( state, 1 );
^ ~~~~~~~~~~~~~~~~~~~~~~~~~
- Add .desktop file
- Add shortcut under PATH
- Define LICENSE
- Mark NO_ARCH because of no C modules
- Drop unused BUILD_DEPENDS
- Convert to USE_WX
- Replace bundled DejaVu font with slightly newer system copy
Changes: http://www.psychopy.org/changelog.html#psychopy-1-82
PR: 199249
Submitted by: tkato432@yahoo.com