* do not remove etc/bacula; let bacula-client do that
* use UID and GID provided by ports/UIDs & ports/GIDs
* minimize use of owner/group
PR: 193532
Submitted by: Kevin Thompson
Approved by: mat (mentor)
The MAKE_JOBS_UNSAFE flag was set 10 June 2014 (PR 181923) and it
was removed without explanation on 30 Aug 2014 (r366616). I have
first-hand confirmation that it is still required with default
options set. I'm resetting this flag as it shouldn't have been removed.
The attached patch upgrades multimedia/plexhometheater to v1.2.2.
In addition, it removes the LIBDEPENDS on audio/lame and java as neither are
actually used by plexhometheater, and adds a pkg-message to explain how to run
plexhometheater from the command line when the package is installed.
---
Plexhometheater is unable to play videos, with some of the following error
messages appearing in the logs depending on the codec of the video being
played.
ERROR: Unable to load
/usr/local/lib/plexhometheater/system/players/dvdplayer/avcodec-53-x86-freebsd.so,
reason: /usr/local/bin/system/players/dvdplayer/avcodec-53-x86_64-freebsd.so:
Undefined symbol "ff_h264dsp_init_x86"
ERROR: Unable to load
/usr/local/lib/plexhometheater/system/players/dvdplayer/avcodec-53-x86-freebsd.so,
reason: /usr/local/bin/system/players/dvdplayer/avcodec-53-x86_64-freebsd.so:
Undefined symbol "ff_mlp_init_x86"
This is similar to PR181964 filed previously for multimedia/gstreamer-ffmpeg
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=181964
This issue is caused as during port build some variables not defined in
MAKE_ENV/MAKE_ARGS are leaked to do-build target via .MAKEFLAGS rule in
bsd.port.mk. According to make(1) man page variable assignments in MAKEFLAGS
are treated as those on command line which means they override assignments in
Makefiles.
Unfortunately, this breaks building arch-specific code for libavcodec as
$(ARCH) in config.mak is no longer honored.
Fix: Rename the variable from ARCH to FFMPEG_ARCH, as is done in
multimedia/ffmpeg.
---
Add binutils as builddep on FreeBSD8 and use cmake compiler in ffmpeg configure
---
Plexhometheater will fail to build from ports if ffmpeg is already installed on
the system (via ports or package).
---
Plexhometheater crashes at launch with:
ERROR: Unable to create application. Exiting
Segmentation fault (core dumped)
FROM LOGS:
ERROR: Unable to load /usr/local/bin/system/libcpluff-x86_64-freebsd.so,
reason: Cannot open "/usr/local/bin/system/libcpluff-x86_64-freebsd.so
PR: 193547, 193282, 193190, 193189, 193188
Submitted by: Ben Woods (maintainer)
- Convert to USES=libtool and bump dependent ports
- Add INSTALL_TARGET=install-strip
- Remove patches that renamed include directories and libraries so they
didn't conflict with early development versions of glib/gtk 2.0
- Make jenkins listen on *:8180 and turn off ajp by default
- Add message and reference about how to secure jenkins setup
Requested by: rodrigc
Approved by: swills (devel/jenkins-lts maintainer)