* gstreamer1-libav now uses ffmpeg from ports.
* New ports:
* gstreamer1-validate: Tools to detect if elements are not behaving
as expected, mainly aimed at developers, or advanced debugging.
* gstreamer1-rtsp-server: Base foundation for building a rtsp
server ontop of GStreamer
* Bunch of new plugins like: mpg123, rsvg, libde265, openh264, x265 and dtls.
Release announcement:
http://lists.freedesktop.org/archives/gstreamer-announce/2015-September/000357.html
Obtained from: gnome devel repo
the package anyway, and doesn't seem to be needed - the only mention
of it in the source references sbin/soundon log, however on FreeBSD
sbin/soundon stores log in /var/log.
on PowerPC (verified for all of them) and some also on SPARC (whenever I
was able to test those on flame.freebsd.org) and even IA64 (which should
be OK to remove anyways, because it was never really supported system in
ports land and was officially killed in -CURRENT a while ago.
Some ports were already installing in the System domain, for these just remove the Makefile lines explicitly specifying the install domain.
The rest are installed in the Local domain, remove any overrides, update their pkg-plists and any explicit paths in the Makefiles and then bump port revision.
Approved by: bapt (mentor)
Differential Revision: https://reviews.freebsd.org/D2977
- Make INTEGER_SAMPLES default on platforms with emulated floating point
to be in sync with r395349 [1]
- Fix SSE detection on 9.x by requesting a modern compiler with cpuid.h [2]
PR: 202642 [1], 202646 [2]
Approved by: maintainer timeout (3 weeks)
- Allow to build against Qt 5 instead of Qt 4 (off by default)
- Add missing `desktop-file-utils' to USES as suggested by `stage-qa'
- Remove INSTALLS_ICONS knob (not to be used for Qt-based programs)
- Fix a typo and rephrase pkg-message text while I am at it
All applications in the ports tree works correctly with unicode version of wxGTK
Newer version of wxGTK are unicode only (3.0+)
Note that now WX_UNICODE macro is noop
- Move Perl's man1 files along with its man3 files.
- Move where Perl installs its modules man1 pages.
- Convert the ports installing man1 pages.
- Make different Perl versions installable at the same time.
Though you should note that only the default version can be used to
install Perl modules, and the non default Perl versions cannot use the
modules installed via ports if they contain .so as they are installed
in a version specific directory.
Reviewed by: bapt (the Mk bits)
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3542
Remove LDFLAGS which was a wrong attempt to add -lm to the build (needed to build
modern binutils) a better approach as been committed in previous commit
- General port cleanup
- Apply FreeBSD-specific modifications to make it
work out of the box more conveniently
PR: 201837
Submitted by: tkato432@yahoo.com
1. Import a pull request I've just sent upstream that makes FindHelper.cmake
behave better and stop using pkg-config's output directly as include and
library paths. The consequence is that libraries like libarchive,
libsndfile, jack etc are now found with their full path and we can stop
setting LDFLAGS in Makefile.
2. Set USES=libarchive. Even though the port does not require any
functionality that is only present in libarchive from ports, explicitly
depending on a certain version makes things more consistent.
Additionally, before this patch there would be no dependency on
libarchive from ports but since the linker was previously called like
this:
c++ ... -o hydrogen -L/usr/local/lib -larchive -lsndfile ...
so the port would end up linking against libarchive from ports when it
was present (which is always, since devel/cmake depends on it). And with
this patch we have
c++ ... -o hydrogen -larchive /usr/local/lib/libsndfile.so ...
which does link against libarchive from base, but then fails `make
stage-qa', which expects all ports to link against ports libarchive.
PR: 202905
Approved by: FreeBSD@ShaneWare.Biz (maintainer)
AC_ARG_ENABLE usage in configure.in is broken. Only 'gnome' and 'nls'
are defined properly for both --enable- and --disable- prefix.
--CONFIGURE_ARGS--
--disable-gnome --disable-asm --disable-jack --enable-nls --prefix=/usr/local ${_LATE_CONFIGURE_ARGS}
--End CONFIGURE_ARGS--
[...]
integer32-asm.S:64:1: error: unexpected token at start of statement
.0:
^
integer32-asm.S:120:1: error: unexpected token at start of statement
.1:
^
integer32-asm.S:166:1: error: unexpected token at start of statement
.2:
^
integer32-asm.S:214:1: error: unexpected token at start of statement
.3:
^
Reported by: pkg-fallout
Pointy hat to: mat (option helpers)
From Changelog:
- Feature: A track can be set as 'loved' on Last.fm, e.g. with 'mpc
sendmessage mpdas love'
- Migrate to libmpdclient instead of deprecated libmpd along with some code
refactoring
- Fix typo that would result in an incorrent setgid()-call
- Fix in the handshake to communicate properly with the new Last.fm site
- Several other crash fixes and optimizations
pkg-descr:
- Update WWW
PR: 202899
Submitted by: henrik@affekt.org (maintainer)