- Remove const qualifier from iconv(3) to match POSIX:
http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html
- Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is
defined because the base system iconv supports these extensions too.
Add/remove patches to/from ports to call iconv with non-const arguments.
This breaks some ports on FreeBSD 10 because base system iconv.h still has
the const qualifier. Fix this by letting USES=iconv add a build dependency
on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG
defined) instead of the base system iconv.h.
This exposed some ports that link with libiconv when it is available instead
of using libc iconv. In these cases one of the following changes has been
made:
- patch configure scripts to test for libc iconv first
- add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable
some configure tests
- converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4
- lang/gcc5-aux: respect CFLAGS and friends during configure such that
LIBICONV_PLUG is defined in the iconv test, also switch to external
gettext
- mail/gnarwl: replace patches with CPPFLAGS/LIBS
- multimedia/ffmpeg2theora: remove iconv test from SConstruct and use
ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c
- net-im/licq: finish conversion to cmake
- net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4:
don't need iconv
- textproc/p5-XML-TinyXML: finish conversion to USES=perl5
Other changes:
- databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2
and lzo support
- games/ldmud: respect CFLAGS and friends
- graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect
CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg
dependencies
PR: 199099
Exp-run by: antoine
Approved by: portmgr (antoine)
- Correct homepage address
FIXED: extraneous window border at top left of screen at startup.
FIXED: cannot find font with x11-servers/xorg-server 1.14.7_3,1
FIXED: port can be staged as non-privileged user
PR: 198793
Submitted by: jimmy@mammothcheese.ca (maintainer)
sysutils/cinnamon-settings-daemon to 2.4.3.
x11/cinnamon to 2.4.6.
x11/cinnamon-screensaver to 2.4.1.
x11/cinnamon-session to 2.4.3.
x11-fm/nemo to 2.4.5.
x11-wm/muffin to 2.4.4.
Switch cinnamon to py-pillow instead of py-imaging which seems to be
discontinued upstream.
Thanks to Gustau Pérez <gustau.perez@gmail.com> for helping to kee
these ports updated.
Obtained from: GNOME dev repo
Categories: archivers, dns, french, japanese, news, port-mgmt, x11-wm
The sysutils port was setting configure argument, so the text wasn't
removed but the value of PTHREAD_LIBS was changed.
approved by: PTHREAD blanket
Xorg is now looking in ${LOCALBASE}/share/fonts by default
Xorg now accepts symlinks in etc/X11/fontpath.d (as decribed in Xserver(1))
Large cleanup on lots of font ports
All fonts are now properly dynamically generating fonts.dir and fonts.scale
instead of sometime overwriting existing ones)
All fonts are generating fontconfig's cache
Improve consistency in fonts ports
Bugfixes release:
- i3bar: fix incorrect y-offset for text
- fix key bindings on big-endian platforms
- fix key bindings using Mode_switch
- fix keyboard layout change detection
- revert "Handle WM_CHANGE_STATE requests for iconic state" (fixes problems
with application windows disappearing, like SDL-based games when switching
workspaces)
- insert id-based match at HEAD, not TAIL (fixes window swallowing not
working when the criteria match the placeholder window)
- improve error messages on failing commands
- replace ~ in filepath when calling append_layout
- properly error out when the layout file cannot be read
Notable changes:
- mouse button bindings
- improved EWMH compatibility
- plenty of bugfixes and little enhancements
- new dependency on libxkbcommon which drops the last direct dependency on Xlib
For the details, please see the related bug report or issue #576 in the
xmonad bug tracker [1].
[1] https://code.google.com/p/xmonad/issues/detail?id=576
PR: 181049
Submitted by: Dominik Ernst <de@dernst.org>
Obtained from: FreeBSD Haskell
MFH: 2015Q1
The port tries to build the swm executable before the swm.o object file
is finished building.
While marking this jobs-unsafe, pet portlint so it doesn't complain. It
doesn't like "file" being used as a variable name.