diff options
author | feld <feld@FreeBSD.org> | 2015-10-28 00:06:26 +0800 |
---|---|---|
committer | feld <feld@FreeBSD.org> | 2015-10-28 00:06:26 +0800 |
commit | 91ce872a165f8df838ebad1d5b9aebe9e7f3c230 (patch) | |
tree | a683dc9108a363becb0bb92a3f9964892ecca8d5 /multimedia | |
parent | 0a7db3e03f1c7e80b686d3f2863517715dc7e592 (diff) | |
download | freebsd-ports-gnome-91ce872a165f8df838ebad1d5b9aebe9e7f3c230.tar.gz freebsd-ports-gnome-91ce872a165f8df838ebad1d5b9aebe9e7f3c230.tar.zst freebsd-ports-gnome-91ce872a165f8df838ebad1d5b9aebe9e7f3c230.zip |
multimedia/plexmediaserver{-plexpass}: Update LD_LIBRARY_PATH in rc script
Occasionally a user would be unable to run plex due to a crash on startup.
The problem was identified as the libstdc++.so.6 from GCC being picked
up first instead of the one from compat9x.
PR: 204034
Diffstat (limited to 'multimedia')
4 files changed, 4 insertions, 4 deletions
diff --git a/multimedia/plexmediaserver-plexpass/Makefile b/multimedia/plexmediaserver-plexpass/Makefile index 1326b6aa33e0..76b255d7d47f 100644 --- a/multimedia/plexmediaserver-plexpass/Makefile +++ b/multimedia/plexmediaserver-plexpass/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTVERSION= 0.9.12.15.1502 -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -plexpass MAINTAINER= feld@FreeBSD.org diff --git a/multimedia/plexmediaserver-plexpass/files/plexmediaserver_plexpass.in b/multimedia/plexmediaserver-plexpass/files/plexmediaserver_plexpass.in index 68310d2b8642..a04e3ea65987 100644 --- a/multimedia/plexmediaserver-plexpass/files/plexmediaserver_plexpass.in +++ b/multimedia/plexmediaserver-plexpass/files/plexmediaserver_plexpass.in @@ -44,7 +44,7 @@ plex_precmd() export HOME="${%%PORTNAME%%_support_path}/Plex Media Server" export PYTHONHOME="%%DATADIR%%/Resources/Python" export SCRIPTPATH="%%DATADIR%%" - export LD_LIBRARY_PATH="${SCRIPTPATH}" + export LD_LIBRARY_PATH="%%PREFIX%%/lib/compat:${SCRIPTPATH}" export PLEX_MEDIA_SERVER_HOME="${SCRIPTPATH}" export PLEX_MEDIA_SERVER_MAX_PLUGIN_PROCS=${%%PORTNAME%%_maxplugins} export PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR=${%%PORTNAME%%_support_path} diff --git a/multimedia/plexmediaserver/Makefile b/multimedia/plexmediaserver/Makefile index fe87e733da46..15578a080830 100644 --- a/multimedia/plexmediaserver/Makefile +++ b/multimedia/plexmediaserver/Makefile @@ -3,7 +3,7 @@ PORTNAME= plexmediaserver PORTVERSION?= 0.9.12.13.1464 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= multimedia MASTER_SITES= http://downloads.plexapp.com/plex-media-server/${PORTVERSION}-${PLEX_BUILD}/ \ http://nightlies.plexapp.com/directdl/plex-media-server/dist-ninja/${PORTVERSION}-${PLEX_BUILD}/ diff --git a/multimedia/plexmediaserver/files/plexmediaserver.in b/multimedia/plexmediaserver/files/plexmediaserver.in index e11175874482..f6c51c6c4d68 100644 --- a/multimedia/plexmediaserver/files/plexmediaserver.in +++ b/multimedia/plexmediaserver/files/plexmediaserver.in @@ -44,7 +44,7 @@ plex_precmd() export HOME="${%%PORTNAME%%_support_path}/Plex Media Server" export PYTHONHOME="%%DATADIR%%/Resources/Python" export SCRIPTPATH="%%DATADIR%%" - export LD_LIBRARY_PATH="${SCRIPTPATH}" + export LD_LIBRARY_PATH="%%PREFIX%%/lib/compat:${SCRIPTPATH}" export PLEX_MEDIA_SERVER_HOME="${SCRIPTPATH}" export PLEX_MEDIA_SERVER_MAX_PLUGIN_PROCS=${%%PORTNAME%%_maxplugins} export PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR=${%%PORTNAME%%_support_path} |