- Drop dependencies, that are not from ${WRKSRC}/BUILDING.txt.
- Add optional OpenSSL support.
- Turn (added) XVideo dependency into an option.
- Drop obsolete comment (jpeg-turbo can be compiled for non-amd64/i386
architectures since r388256).
- Bump PORTREVISION.
PR: 203237
Submitted by: Andriy Voskoboinyk <s3erios@gmail.com>
Approved by: maintainer timeout (175 days)
cc -I ../../include -W `pkg-config --cflags libSystem gtk+-2.0` -fPIC -Wall -g -O2 -pedantic `pkg-config --cflags libDesktop` -c embed.c
embed.c:104:33: error: too few arguments to function call, single argument 'code' was not specified
helper->error(NULL, error_get(), 1);
Reported by: pkg-fallout
Fix distinfo for the offending ports.
lang/yorick's tag was moved, and the added patch was no longer needed.
PR: 207644
Submitted by: mat
Exp-run by by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D4268
use it instead of storing manually-fetched distfile in `local-distfiles',
- Remove bogus USE_LDCONFIG knob and avoid symlinking to an absolute path
- As support for some older FreeBSD versions was removed in r398738, merge
in-place alteration of the `qmltermwidget/lib/kpty.cpp' file (previously
conditional) into existing patch
x11/gnome-shell lacks dependency on x11/libgnomekbd. Here is how it can be
checked out:
1. Click on language indicator on panel
2. Click on 'Show keyboard layout' button
You'll get this error message:
Execution of "gkbd-keyboard-display" failed: Command not found
Installing of x11/libgnomekbd resolves the issue.
PR: 207300
With hat: gnome
MFH: 2016Q1
New features:
- Initial `-dump` command for dmenu mode. (#216)
- Threading support.
o Parallel checking for ASCII.
o Parallel string matching.
o Autodetect number of HW-threads.
o Disabled by default.
- Highlight multiple selected rows (#287,#293)
- Dmenu can read from file instead of stdin.
- Regex matching (#113)
- Take Screenshot of rofi using keybinding.
- Hotkey for sorting: (#298) Option to set scrollbar width.
Improvements:
- Fix return code of multi-select.
- Update manpage (#289, #291)
- Improve speed of reading stdin in dmenu mode.
- Correctly handle modifier keys now. Should now support most
weird keyboard layouts and switching between them.
(#268, #265, #286)
- Correctly set locale, fixing issues with entering special
characters. (#282)
- DRun mode support `NoDisplay` setting (#283)
- Pango markup is matched when filtering. (#273)
Bug fixes:
- Improve error message (#290)
- Correctly switch to next entry on multi-select when list is filtered (#292)
- Switch __FUNCTION__ for __func__. (#288)
- Fix segfault on empty list and moving through it. (#256,#275)
- Fix one off of colors (#269)
- Drun fix uninitialized memory (#285)
PR: 206846
Submitted by: Tobias Kortkamp <t@tobik.me>
Approved by: nomoo@nomoo.ru
The offical GNOME 3.18 release notes can be found at
https://help.gnome.org/misc/release-notes/3.18/
This update doesn't contain the glib/gtk c++ bindings which will
be done in a another update due to the requirement on c++11 and the
amount of fallout this probably will give.
GDM is still at version 3.16 due to some issues.
Bump mate-themes to use the gtk 3.18 version of the themes.
Thanks to Antoine Brodin for running the exp-runs.
This release was made possible by the following people:
Gustau Perez
Ting-Wei_Lan
PR: 207006
tests and make myself the maintainer to deal with fallout, if any.
Bump PORTREVISION of the two other ports, which depend on x265 by default.
PR: 206864
nVidia's libGL causes a segfault in ld-elf if the application that is linking
to libGL also links to another library (ordered before linking to libGL) and
the second library links to libthr. For example:
kwin_opengl_test
-> libXft
-> libthr
-> libGL
Two workarounds are known:
1) Change the linking order to have libGL linked first, or
2) Also link to libthr in the (base) application.
This patch implements the latter fix.
PR: 205149, 206899
MFH: 2016Q1
- Upgrade all linux-c6- to CentOS 6.7
- Cleanups
PR: 205846
Submitted by: xmj
In Collaboration with: allanjude, netchild, xmj
Exp-run: antoine
Sponsored by: Perceivon Hosting Inc.
Differential Revision: D3428
We'd like to thanks for all the feedback and comments.
multiple elements to correspond to C++ WG paper N3922. E.g, instead of:
auto foo { 1, 2, 3, 4 };
one should write:
auto foo = { 1, 2, 3, 4 };
This makes the port compile with clang 3.8.0 and higher, or gcc 5.0 and
higher.
Approved by: vg (maintainer)
PR: 206650
MFH: 2016Q1